masqmail-0.2

diff 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
line diff
     1.1 --- a/src/conf.c	Mon Jul 19 14:01:13 2010 +0200
     1.2 +++ b/src/conf.c	Thu Jul 22 23:30:05 2010 +0200
     1.3 @@ -650,6 +650,8 @@
     1.4  			route->connect_error_fail = parse_boolean(rval);
     1.5  		else if (strcmp(lval, "do_correct_helo") == 0)
     1.6  			route->do_correct_helo = parse_boolean(rval);
     1.7 +		else if (strcmp(lval, "instant_helo") == 0)
     1.8 +			route->instant_helo = parse_boolean(rval);
     1.9  		else if (strcmp(lval, "do_pipelining") == 0)
    1.10  			route->do_pipelining = parse_boolean(rval);
    1.11  		else if (strcmp(lval, "allowed_return_paths") == 0)