Mercurial > masqmail
comparison 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 |
comparison
equal
deleted
inserted
replaced
163:3914d7cabfbc | 164:5b621742b2e7 |
---|---|
575 gchar *with_smtp_server = ""; | 575 gchar *with_smtp_server = ""; |
576 gchar *with_pop3 = ""; | 576 gchar *with_pop3 = ""; |
577 gchar *with_auth = ""; | 577 gchar *with_auth = ""; |
578 gchar *with_maildir = ""; | 578 gchar *with_maildir = ""; |
579 gchar *with_ident = ""; | 579 gchar *with_ident = ""; |
580 gchar *with_mserver = ""; | |
581 | 580 |
582 #ifdef ENABLE_RESOLVER | 581 #ifdef ENABLE_RESOLVER |
583 with_resolver = " +resolver"; | 582 with_resolver = " +resolver"; |
584 #endif | 583 #endif |
585 #ifdef ENABLE_SMTP_SERVER | 584 #ifdef ENABLE_SMTP_SERVER |
595 with_maildir = " +maildir"; | 594 with_maildir = " +maildir"; |
596 #endif | 595 #endif |
597 #ifdef ENABLE_IDENT | 596 #ifdef ENABLE_IDENT |
598 with_ident = " +ident"; | 597 with_ident = " +ident"; |
599 #endif | 598 #endif |
600 #ifdef ENABLE_MSERVER | 599 |
601 with_mserver = " +mserver"; | 600 printf("%s %s%s%s%s%s%s%s\n", PACKAGE, VERSION, with_resolver, with_smtp_server, |
602 #endif | 601 with_pop3, with_auth, with_maildir, with_ident); |
603 | |
604 printf("%s %s%s%s%s%s%s%s%s\n", PACKAGE, VERSION, with_resolver, with_smtp_server, | |
605 with_pop3, with_auth, with_maildir, with_ident, with_mserver); | |
606 | 602 |
607 exit(EXIT_SUCCESS); | 603 exit(EXIT_SUCCESS); |
608 } | 604 } |
609 | 605 |
610 /* initialize random generator */ | 606 /* initialize random generator */ |