Mercurial > masqmail
diff src/masqmail.c @ 164:5b621742b2e7
removed the mserver feature
i.e. the functionality itself in the code
the `mserver' value of online_detect and `mserver_iface' config options
and the --enable-mserver configure option
All functionality, however, is still available through mservdetect
author | meillo@marmaro.de |
---|---|
date | Thu, 08 Jul 2010 22:01:33 +0200 |
parents | b5ab9cb2f18a |
children | 8630e37ae445 |
line wrap: on
line diff
--- a/src/masqmail.c Thu Jul 08 14:04:39 2010 +0200 +++ b/src/masqmail.c Thu Jul 08 22:01:33 2010 +0200 @@ -577,7 +577,6 @@ gchar *with_auth = ""; gchar *with_maildir = ""; gchar *with_ident = ""; - gchar *with_mserver = ""; #ifdef ENABLE_RESOLVER with_resolver = " +resolver"; @@ -597,12 +596,9 @@ #ifdef ENABLE_IDENT with_ident = " +ident"; #endif -#ifdef ENABLE_MSERVER - with_mserver = " +mserver"; -#endif - printf("%s %s%s%s%s%s%s%s%s\n", PACKAGE, VERSION, with_resolver, with_smtp_server, - with_pop3, with_auth, with_maildir, with_ident, with_mserver); + printf("%s %s%s%s%s%s%s%s\n", PACKAGE, VERSION, with_resolver, with_smtp_server, + with_pop3, with_auth, with_maildir, with_ident); exit(EXIT_SUCCESS); }