From 1bd7f9e3c4b206cffbd78e2e6ad0e0e175400ff7 Mon Sep 17 00:00:00 2001 From: Neil Smith Date: Mon, 9 Jan 2017 22:25:03 +0000 Subject: [PATCH] Fixed 'Helo'/'Hello' bug in initial SMTP contact --- usr/sbin/opendmarc-reports | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; -- 2.34.1