http://bugzilla.spamassassin.org/show_bug.cgi?id=4111
------- Additional Comments From [EMAIL PROTECTED] 2005-04-22 10:55 -------
(In reply to comment #15)
> Perhaps I should send this in private email, but here goes.
> The patch associated with Comment #1 is as follows:
> ==============================================================================
> --- spamassassin/trunk/lib/Mail/SpamAssassin/PerMsgStatus.pm (original)
> +++ spamassassin/trunk/lib/Mail/SpamAssassin/PerMsgStatus.pm Fri Jan 28
> @@ -1812,7 +1812,7 @@
>
> for (@$textary) {
> # NOTE: do not modify $_ in this loop
> - while (/($uriRe)/go) {
> + while (/($uriRe)/igo) {
> my $uri = $1;
>
> $uri =~ s/^<(.*)>$/$1/;
>
> You could hand edit PerMsgStatus.pm to apply it. The line number for the
> changed code is 1790 for 3.0.2.
Thanks, changing that line doesnt change the behaviour here tho, whereas
changing line 1710 from
my $schemeRE = qr/(?:https?|ftp|mailto|javascript|file)/;
to
my $schemeRE = qr/(?:https?|ftp|mailto|javascript|file)/i;
lets Http:// also be detected
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.