http://bugzilla.spamassassin.org/show_bug.cgi?id=4621
------- Additional Comments From [EMAIL PROTECTED] 2005-10-11 15:49 -------
Theo, did you also add the SIXCAPS rule Tom was using
uri SARE_URI_SIXCAPS /[A-Z]{6}\.(?:BIZ|INFO|biz|info)/
Does your debug log show the "mailbox://" URI containing "âÂÂ" or '∂'
after
the 'number=29229479' ?
Tom,
Life gets complicated. I had been debugging this under Cygwin, then that machine
had a hardware crash. Now I'm on a Fedora Core 4 box. On this machine, the debug
logs do not show the "âÂÂ" string instead of the single unicode character
'∂'
that it is supposed to be. So I can't track down how the longer string ends up
there and how it is still urlencoded correctly, which means I don't know how it
is being represented on your machine when it causes the crash.
Please try this script and let me know what the output is:
use HTML::Entities;
$a = decode_entities("∂");
print "First string hex is " . unpack("H*", $a) . "\n";
$a = pack('C0A*', $a);
print "Second string prints as '$a' hex is " . unpack("H*", $a) . "\n";
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.