SA Bugzilla – Bug 3275
__FROM_JUST_NUMBER broke since 2.63
Last modified: 2004-04-15 13:22:06 UTC
The rule is the same, but From:addr or something else broke since 2.63.
Created attachment 1903 [details] example message hit by 2.63 but not SVN
<grrr> for some reason, From:addr is all messed up: >> From:addr = "Allied Marketing Promotions
it's because of: s/,.*$//; # multiple addrs on one line? remove all but first <grrr>
ok, I moved the "remove multiple addr" replacement to the end of the :addr code. it was originally there, then moved up in the code to simplify the work being done, but it obviously didn't take into account that "," was allowed in the real name quoted area. :( r10039
Subject: Re: __FROM_JUST_NUMBER broke since 2.63 bugzilla-daemon <bugzilla-daemon@bugzilla.spamassassin.org> writes: > ok, I moved the "remove multiple addr" replacement to the end of the > :addr code. it was originally there, then moved up in the code to > simplify the work being done, but it obviously didn't take into > account that "," was allowed in the real name quoted area. :( Should it really remove multiple addresses? It seems like we should be putting each address on a separate line and doing a /m match for all those rules or something like that. - Daniel