http://bugzilla.spamassassin.org/show_bug.cgi?id=3942
Summary: Small Bug in EvalTests
Product: Spamassassin
Version: 3.0.0
Platform: All
OS/Version: other
Status: NEW
Severity: normal
Priority: P5
Component: Rules (Eval Tests)
AssignedTo: [email protected]
ReportedBy: [EMAIL PROTECTED]
In "Mail/SpamAssassin/EvalTests.pm" row 135
@inputs = ($to =~ m/([EMAIL PROTECTED](?:[\w.-]+\.)+\w+)/g);
should be
push( @inputs, ($to =~ m/([EMAIL PROTECTED](?:[\w.-]+\.)+\w+)/g) );
I think? Cause the next foreach run overwrite the old value???
Is this correct, or did I don't understand the function???
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.