Fix Subject miss after following To: header (#307)

This commit is contained in:
Shawn Iverson 2018-11-21 08:33:35 -05:00 committed by GitHub
parent 7c50782034
commit e9773ffe44
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -481,7 +481,9 @@ sub new {
}
$InTo=0;
}
} elsif ($recdata =~ m/^To: /i) {
}
if ($recdata =~ m/^To: /i) {
# RFC 822 unfold address field
$UnfoldBuffer = $recdata;
$InTo = 1;