http://bugzilla.spamassassin.org/show_bug.cgi?id=3340
------- Additional Comments From [EMAIL PROTECTED] 2004-05-01 15:24 -------
i see the problem in the code which makes this really hard to implement properly
and why you guys are probably cringing at this...there is no real difference
between an error and a warning...
for example:
warn "warning: rule '$k' is over 22 chars\n";
$self->{errors}++;
is the same as:
warn "error: rule '$name' has invalid characters (not Alphanumeric +
Underscore)\n";
$self->{errors}++;
so, I'm guessing what is you guys would want to see first is a separation of
warnings and errors...maybe a $self->{warnings}++;
my perl is extremely rusty, is that correct? if so, i will go ahead and make
those changes and submit a patch.
then, in lib/SA.pm, one needs to check for that difference and add an argument
called --check-for-errors or something like that...
please let me know what your preferences are so that i don't submit a patch that
is going to get rejected or need heavy modification.
jon
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.