comparison 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
comparison
equal deleted inserted replaced
204:5745edd5b769 205:4fd237550525
497 } 497 }
498 498
499 if (mta_mode == MODE_VERSION) { 499 if (mta_mode == MODE_VERSION) {
500 gchar *with_resolver = ""; 500 gchar *with_resolver = "";
501 gchar *with_auth = ""; 501 gchar *with_auth = "";
502 gchar *with_maildir = "";
503 gchar *with_ident = ""; 502 gchar *with_ident = "";
504 503
505 #ifdef ENABLE_RESOLVER 504 #ifdef ENABLE_RESOLVER
506 with_resolver = " +resolver"; 505 with_resolver = " +resolver";
507 #endif 506 #endif
508 #ifdef ENABLE_AUTH 507 #ifdef ENABLE_AUTH
509 with_auth = " +auth"; 508 with_auth = " +auth";
510 #endif 509 #endif
511 #ifdef ENABLE_MAILDIR
512 with_maildir = " +maildir";
513 #endif
514 #ifdef ENABLE_IDENT 510 #ifdef ENABLE_IDENT
515 with_ident = " +ident"; 511 with_ident = " +ident";
516 #endif 512 #endif
517 513
518 printf("%s %s%s%s%s%s\n", PACKAGE, VERSION, with_resolver, 514 printf("%s %s%s%s%s\n", PACKAGE, VERSION, with_resolver, with_auth, with_ident);
519 with_auth, with_maildir, with_ident);
520 515
521 exit(EXIT_SUCCESS); 516 exit(EXIT_SUCCESS);
522 } 517 }
523 518
524 /* initialize random generator */ 519 /* initialize random generator */