From: Neil Smith Date: Mon, 9 Jan 2017 22:25:03 +0000 (+0000) Subject: Fixed 'Helo'/'Hello' bug in initial SMTP contact X-Git-Url: https://git.njae.me.uk/?p=opendmarc.git;a=commitdiff_plain;h=1bd7f9e3c4b206cffbd78e2e6ad0e0e175400ff7 Fixed 'Helo'/'Hello' bug in initial SMTP contact --- diff --git a/usr/sbin/opendmarc-reports b/usr/sbin/opendmarc-reports index b929933..43f1ea4 100755 --- a/usr/sbin/opendmarc-reports +++ b/usr/sbin/opendmarc-reports @@ -384,7 +384,7 @@ if ($verbose) $smtp = Net::SMTP->new($smtp_server, 'Port' => $smtp_port, - 'Helo' => hostfqdn()); + 'Hello' => hostfqdn()); if (!defined($smtp)) { print STDERR "$progname: open SMTP server $smtp_server:$smtp_port failed\n";