1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
/*
** Copyright 2003, Double Precision Inc.
**
** See COPYING for distribution information.
*/
#include "driver.H"
LIBMAIL_START
extern mail::driver inbox_driver, mbox_driver, maildir_driver,
imap_driver, pop3_driver, pop3maildrop_driver,
nntp_driver, smtp_driver, tmp_driver;
LIBMAIL_END
static mail::driver *drivers[]={
&mail::inbox_driver,
&mail::mbox_driver,
&mail::maildir_driver,
&mail::imap_driver,
&mail::pop3_driver,
&mail::pop3maildrop_driver,
&mail::nntp_driver,
&mail::smtp_driver,
&mail::tmp_driver,
NULL };
mail::driver **mail::driver::get_driver_list()
{
return drivers;
}
|