https://issues.apache.org/SpamAssassin/show_bug.cgi?id=6262

--- Comment #2 from Mark Martinec <[email protected]> 2009-12-23 06:34:16 
UTC ---
> That _SUMMARY_ line is pretty ugly.
> I think this is something to do with hitting no tests at all.

That leaves a question: should all the potentially-to-be-used
tags be pre-defined, or should PerMsgStatus::_replace_tags
replace unknown tags with blank, instead of leaving them as-is:

sub _replace_tags {
[...]
  $text =~ s{(_(\w+?)(?:\((.*?)\))?_)}{
my $full = $1;
        my $tag = $2;
        my $result = $self->_get_tag($tag,$3);
        defined $result ? $result : $full;
      }ge;

-- 
Configure bugmail: 
https://issues.apache.org/SpamAssassin/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

Reply via email to