mirror of
https://github.com/darold/sendmailanalyzer.git
synced 2026-05-15 22:02:32 -06:00
Fix previous patch on bounce address validation tag when the email address start with <.
This commit is contained in:
parent
7cd749fdae
commit
80889ea0a8
1 changed files with 1 additions and 1 deletions
|
|
@ -2326,7 +2326,7 @@ sub edecode
|
|||
my ($addr) = @_;
|
||||
|
||||
# First remove any bounce address tag validation if any
|
||||
$addr =~ s/^prvs=[^=]+=//;
|
||||
$addr =~ s/^[<]?prvs=[^=]+=//;
|
||||
|
||||
if ($addr =~ /=\?[^\?]+\?(.)\?(.*)?=/s) {
|
||||
if (uc($1) eq 'B') {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue