Update 5.5.1-5 (#685)

This commit is contained in:
Shawn Iverson 2024-03-21 09:51:59 -04:00 committed by GitHub
parent 79c5ef553f
commit 552963a0ce
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 8 additions and 2 deletions

View file

@ -1 +1 @@
5.5.1-4
5.5.1-5

View file

@ -1,3 +1,9 @@
03/10/2024 Changes in v5.5.1-5
==================================
- Remove case insenstive duplicate options
- Add values to return statements in msmilter
- Fix regex for bad helo check in msmilter
12/29/2023 Changes in v5.5.1-4
==================================
- Fix Exim code block

View file

@ -159,7 +159,7 @@ sub helo_callback
my $message_ref = $ctx->getpriv();
my $message = "Received: from $helohost";
# Check for unexpected helo
if ( ${$message_ref} =~ /^[0-9A-F]{7,20}|[0-9B-DF-HJ-NP-TV-Zb-df-hj-np-tv-z]{8,20}$/) {
if ( ${$message_ref} =~ /^(?:[0-9A-F]{7,20}|[0-9B-DF-HJ-NP-TV-Zb-df-hj-np-tv-z]{8,20})$/) {
MailScanner::Log::WarnLog("Unexpected helo callback");
return Sendmail::PMilter::SMFIS_TEMPFAIL;
}