http://bugzilla.spamassassin.org/show_bug.cgi?id=3864
[EMAIL PROTECTED] changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|New rule submission - |New rule submission -
|SARE_MULT_RATW_02 |SARE_MULT_RATW_02
------- Additional Comments From [EMAIL PROTECTED] 2004-10-03 22:09 -------
Looks very interesting. The \1 is a performance-killer, though. This
really needs to be implemented as an eval rule... something like
sub check_whatever {
my ($self) = @_;
my $mid = $self->get('MESSAGEID');
if ($mid =~ m/<[A-Z]{28}\.(.+?)>/) {
my $from = $self->get('From');
if ($from =~ m/\"[^\"]+\"\s*<$1>/) {
return 1;
}
}
return 0;
}
I tweaked the regular expression a tiny bit. Function is untested and
probably doesn't work. ;-)
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.