masqmail
diff src/masqmail.c @ 205:4fd237550525
REMOVED MAILDIR SUPPORT
if you want to deliver to maildir, use an MDA like procmail
masqmail can pass mail to an MDA by setting `mda' in masqmail.conf
author | meillo@marmaro.de |
---|---|
date | Fri, 16 Jul 2010 16:38:50 +0200 |
parents | 5745edd5b769 |
children | 3708b655a371 |
line diff
1.1 --- a/src/masqmail.c Fri Jul 16 15:38:53 2010 +0200 1.2 +++ b/src/masqmail.c Fri Jul 16 16:38:50 2010 +0200 1.3 @@ -499,7 +499,6 @@ 1.4 if (mta_mode == MODE_VERSION) { 1.5 gchar *with_resolver = ""; 1.6 gchar *with_auth = ""; 1.7 - gchar *with_maildir = ""; 1.8 gchar *with_ident = ""; 1.9 1.10 #ifdef ENABLE_RESOLVER 1.11 @@ -508,15 +507,11 @@ 1.12 #ifdef ENABLE_AUTH 1.13 with_auth = " +auth"; 1.14 #endif 1.15 -#ifdef ENABLE_MAILDIR 1.16 - with_maildir = " +maildir"; 1.17 -#endif 1.18 #ifdef ENABLE_IDENT 1.19 with_ident = " +ident"; 1.20 #endif 1.21 1.22 - printf("%s %s%s%s%s%s\n", PACKAGE, VERSION, with_resolver, 1.23 - with_auth, with_maildir, with_ident); 1.24 + printf("%s %s%s%s%s\n", PACKAGE, VERSION, with_resolver, with_auth, with_ident); 1.25 1.26 exit(EXIT_SUCCESS); 1.27 }