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 diff
1.1 --- a/src/masqmail.c Thu Jul 08 14:04:39 2010 +0200 1.2 +++ b/src/masqmail.c Thu Jul 08 22:01:33 2010 +0200 1.3 @@ -577,7 +577,6 @@ 1.4 gchar *with_auth = ""; 1.5 gchar *with_maildir = ""; 1.6 gchar *with_ident = ""; 1.7 - gchar *with_mserver = ""; 1.8 1.9 #ifdef ENABLE_RESOLVER 1.10 with_resolver = " +resolver"; 1.11 @@ -597,12 +596,9 @@ 1.12 #ifdef ENABLE_IDENT 1.13 with_ident = " +ident"; 1.14 #endif 1.15 -#ifdef ENABLE_MSERVER 1.16 - with_mserver = " +mserver"; 1.17 -#endif 1.18 1.19 - printf("%s %s%s%s%s%s%s%s%s\n", PACKAGE, VERSION, with_resolver, with_smtp_server, 1.20 - with_pop3, with_auth, with_maildir, with_ident, with_mserver); 1.21 + printf("%s %s%s%s%s%s%s%s\n", PACKAGE, VERSION, with_resolver, with_smtp_server, 1.22 + with_pop3, with_auth, with_maildir, with_ident); 1.23 1.24 exit(EXIT_SUCCESS); 1.25 }