comparison src/conf.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 89f951be358f
children 0241aaccfcdb
comparison
equal deleted inserted replaced
204:5745edd5b769 205:4fd237550525
495 conf.mbox_default = g_strdup(rval); 495 conf.mbox_default = g_strdup(rval);
496 } else if (strcmp(lval, "mbox_users") == 0) { 496 } else if (strcmp(lval, "mbox_users") == 0) {
497 conf.mbox_users = parse_list(rval, TRUE); 497 conf.mbox_users = parse_list(rval, TRUE);
498 } else if (strcmp(lval, "mda_users") == 0) { 498 } else if (strcmp(lval, "mda_users") == 0) {
499 conf.mda_users = parse_list(rval, TRUE); 499 conf.mda_users = parse_list(rval, TRUE);
500 } else if (strcmp(lval, "maildir_users") == 0) {
501 conf.maildir_users = parse_list(rval, TRUE);
502 } else if (strcmp(lval, "mda") == 0) { 500 } else if (strcmp(lval, "mda") == 0) {
503 conf.mda = g_strdup(rval); 501 conf.mda = g_strdup(rval);
504 } else if (strcmp(lval, "mda_fromline") == 0) { 502 } else if (strcmp(lval, "mda_fromline") == 0) {
505 conf.mda_fromline = parse_boolean(rval); 503 conf.mda_fromline = parse_boolean(rval);
506 } else if (strcmp(lval, "mda_fromhack") == 0) { 504 } else if (strcmp(lval, "mda_fromhack") == 0) {