diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2016-03-12 00:52:04 +0100 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2016-03-12 00:52:12 +0100 |
commit | d4f52ae67f007ceacfc1a3ea2d0678600b0df73d (patch) | |
tree | 32540484b9b5ba8ccee2fe129ee79e77424004e7 /pullimap | |
parent | 1b69b4b599d7acf03e426cfbb376e26bdba95c26 (diff) |
Net::IMAP::InterIMAP: set binmode on the socket (and our pipe ends)
Diffstat (limited to 'pullimap')
-rwxr-xr-x | pullimap | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -142,6 +142,7 @@ sub sendmail($$) { next if $! == EINTR; # try again if connect(2) was interrupted by a signal die "connect: $!"; } + binmode($SMTP) // die "binmode: $!"; smtp_resp('220'); my @r = smtp_send($ehlo => '250'); |