]> git.g-eek.se Git - interimap.git/commitdiff
pullimap: typo
authorGuilhem Moulin <guilhem@fripost.org>
Mon, 7 Mar 2016 22:33:45 +0000 (23:33 +0100)
committerGuilhem Moulin <guilhem@fripost.org>
Mon, 7 Mar 2016 22:34:54 +0000 (23:34 +0100)
pullimap
pullimap.1

index 27226d2d5124d15c4f9a9c98b401d6b98be0cc3e..235bc62cc47175c1e3301cbafe4f65a11db6ac2e 100755 (executable)
--- a/pullimap
+++ b/pullimap
@@ -124,7 +124,7 @@ sub sendmail($$) {
         # the connection due to a timeout (RFC 5321 section 4.5.3.2)
         my ($fam, $addr) = (PF_INET, $CONF->{'deliver-method'} // 'smtp:[127.0.0.1]:25');
         $addr =~ s/^([ls]mtp):// or die;
-        my $ehlo = $1 eq 'lmtp' ? 'LHO' : $1 eq 'smtp' ? 'EHLO' : die;
+        my $ehlo = $1 eq 'lmtp' ? 'LHLO' : $1 eq 'smtp' ? 'EHLO' : die;
         $ehlo .= ' '. ($CONF->{'deliver-ehlo'} // 'localhost.localdomain');
 
         my $port = $addr =~ s/:(\d+)$// ? $1 : die;
index 05fdc2c183f298e5b317642476fcf392ad00fae8..52a6152b53e101494122d669547f188be7680e7b 100644 (file)
@@ -98,7 +98,7 @@ messages.  Both SMTP [RFC 5321] and LMTP [RFC 2030] are supported.
 
 .TP
 .I deliver\-ehlo
-Hostname to use in EHLO or LHO commands.
+Hostname to use in EHLO or LHLO commands.
 (Default: \(lq\fIlocalhost.localdomain\fR\)\(rq.)