Mercurial > masqmail-0.2
comparison src/conf.c @ 171:349518b940db
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 | Thu, 22 Jul 2010 23:30:05 +0200 |
parents | d68f0cab0be5 |
children | 087e99c7702a |
comparison
equal
deleted
inserted
replaced
170:0f0e4e7cd762 | 171:349518b940db |
---|---|
648 route->wrapper = g_strdup(rval); | 648 route->wrapper = g_strdup(rval); |
649 else if (strcmp(lval, "connect_error_fail") == 0) | 649 else if (strcmp(lval, "connect_error_fail") == 0) |
650 route->connect_error_fail = parse_boolean(rval); | 650 route->connect_error_fail = parse_boolean(rval); |
651 else if (strcmp(lval, "do_correct_helo") == 0) | 651 else if (strcmp(lval, "do_correct_helo") == 0) |
652 route->do_correct_helo = parse_boolean(rval); | 652 route->do_correct_helo = parse_boolean(rval); |
653 else if (strcmp(lval, "instant_helo") == 0) | |
654 route->instant_helo = parse_boolean(rval); | |
653 else if (strcmp(lval, "do_pipelining") == 0) | 655 else if (strcmp(lval, "do_pipelining") == 0) |
654 route->do_pipelining = parse_boolean(rval); | 656 route->do_pipelining = parse_boolean(rval); |
655 else if (strcmp(lval, "allowed_return_paths") == 0) | 657 else if (strcmp(lval, "allowed_return_paths") == 0) |
656 route->allowed_return_paths = parse_address_list(rval, TRUE); | 658 route->allowed_return_paths = parse_address_list(rval, TRUE); |
657 else if (strcmp(lval, "allowed_mail_locals") == 0) | 659 else if (strcmp(lval, "allowed_mail_locals") == 0) |