Skip to content

Commit

Permalink
Update 5.5.1-5 (#685)
Browse files Browse the repository at this point in the history
  • Loading branch information
shawniverson committed Mar 21, 2024
1 parent 79c5ef5 commit 552963a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.5.1-4
5.5.1-5
6 changes: 6 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion common/usr/sbin/MSMilter
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 552963a

Please sign in to comment.