Mercurial > masqmail
comparison src/conf.c @ 222:8cddc65765bd
added support for STARTTLS wrappers
added the route config option `instant_helo' which
causes masqmail, as SMTP client, not to wait for the
server's 220 greeting. Instead if says EHLO right at
once. You'll need this for STARTTLS wrappers that
usually eat the greeting line.
author | meillo@marmaro.de |
---|---|
date | Fri, 23 Jul 2010 10:57:53 +0200 |
parents | 0241aaccfcdb |
children | 996b53a50f55 |
comparison
equal
deleted
inserted
replaced
221:8742d2cee364 | 222:8cddc65765bd |
---|---|
649 route->wrapper = g_strdup(rval); | 649 route->wrapper = g_strdup(rval); |
650 else if (strcmp(lval, "connect_error_fail") == 0) | 650 else if (strcmp(lval, "connect_error_fail") == 0) |
651 route->connect_error_fail = parse_boolean(rval); | 651 route->connect_error_fail = parse_boolean(rval); |
652 else if (strcmp(lval, "do_correct_helo") == 0) | 652 else if (strcmp(lval, "do_correct_helo") == 0) |
653 route->do_correct_helo = parse_boolean(rval); | 653 route->do_correct_helo = parse_boolean(rval); |
654 else if (strcmp(lval, "instant_helo") == 0) | |
655 route->instant_helo = parse_boolean(rval); | |
654 else if (strcmp(lval, "do_pipelining") == 0) | 656 else if (strcmp(lval, "do_pipelining") == 0) |
655 route->do_pipelining = parse_boolean(rval); | 657 route->do_pipelining = parse_boolean(rval); |
656 else if (strcmp(lval, "allowed_return_paths") == 0) | 658 else if (strcmp(lval, "allowed_return_paths") == 0) |
657 route->allowed_return_paths = parse_address_list(rval, TRUE); | 659 route->allowed_return_paths = parse_address_list(rval, TRUE); |
658 else if (strcmp(lval, "allowed_mail_locals") == 0) | 660 else if (strcmp(lval, "allowed_mail_locals") == 0) |