Mercurial > 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 wrap: on
line diff
--- a/src/masqmail.c Fri Jul 16 15:38:53 2010 +0200 +++ b/src/masqmail.c Fri Jul 16 16:38:50 2010 +0200 @@ -499,7 +499,6 @@ if (mta_mode == MODE_VERSION) { gchar *with_resolver = ""; gchar *with_auth = ""; - gchar *with_maildir = ""; gchar *with_ident = ""; #ifdef ENABLE_RESOLVER @@ -508,15 +507,11 @@ #ifdef ENABLE_AUTH with_auth = " +auth"; #endif -#ifdef ENABLE_MAILDIR - with_maildir = " +maildir"; -#endif #ifdef ENABLE_IDENT with_ident = " +ident"; #endif - printf("%s %s%s%s%s%s\n", PACKAGE, VERSION, with_resolver, - with_auth, with_maildir, with_ident); + printf("%s %s%s%s%s\n", PACKAGE, VERSION, with_resolver, with_auth, with_ident); exit(EXIT_SUCCESS); }