https://bz.apache.org/SpamAssassin/show_bug.cgi?id=7292
Bug ID: 7292
Summary: FSL_HELO_BARE_IP_* meta rule logic is wrong
Product: Spamassassin
Version: unspecified
Hardware: All
OS: All
Status: NEW
Severity: normal
Priority: P2
Component: Rules
Assignee: [email protected]
Reporter: [email protected]
The current FSL_HELO_BARE_IP_* rules are
meta FSL_HELO_BARE_IP_1 __FSL_HELO_BARE_IP_1 && !FSL_HELO_BARE_IP_2
meta FSL_HELO_BARE_IP_2 __FSL_HELO_BARE_IP_2 && !__VIA_ML &&
!__HAS_ERRORS_TO
which means that the lower-scoring, general case suppresses the higher-scoring
special case. It should be:
meta FSL_HELO_BARE_IP_1 __FSL_HELO_BARE_IP_1
meta FSL_HELO_BARE_IP_2 __FSL_HELO_BARE_IP_2 && !__VIA_ML &&
!__HAS_ERRORS_TO && ! FSL_HELO_BARE_IP_1
--
You are receiving this mail because:
You are the assignee for the bug.