Fix for sendmail daemons that don't support EHLO. We never use the extended
functionality anyway, so replace it with a standard HELO. Thanks to Ken Key for helping me track this down. git-svn-id: svn://10.0.0.236/trunk@93187 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
parent
ee342b7229
commit
6456059520
@ -281,7 +281,7 @@ sub mail_notification {
|
||||
select(S); $| = 1; select(STDOUT);
|
||||
|
||||
get_response_code(220);
|
||||
print S "EHLO $hostname\n";
|
||||
print S "HELO $hostname\n";
|
||||
get_response_code(250);
|
||||
print S "MAIL FROM: bonsai-daemon\@$hostname\n";
|
||||
get_response_code(250);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user