At 09:10 PM 3/22/04 -0800, Evan Platt wrote:
Forged MUA: I'm using Eudora as it says.
No, you're not blacklisted.. Your version of SA is just not recognizing your Message-ID as typical of eudora.
However, it's strange to me that it failed to recognize it.. it seems to match the regex.
Look at the message ID and X-Mailer: X-Mailer: QUALCOMM Windows Eudora Version 6.0.3.0 Message-Id: <[EMAIL PROTECTED]>
2.6x and 2.5x seem to use this regex for message ID's:
header __EUDORA_MSGID MESSAGEID =~ /^<(?:\d\d?\.){4,[EMAIL PROTECTED]>$/m
Yours should match that.. it should match this slightly reduced version, if my thinking is right:
<(\d.)[EMAIL PROTECTED]>
This might be fixed in 3.0, but it doesn't look it to me.... They've apparently allowed for 3-5 sets of digits in the version number and added support for port-numbers too... But I don't see why yours isn't matching the original version.
header __EUDORA_MSGID MESSAGEID =~ /^<(?:\d\d?\.){3,[EMAIL PROTECTED](?:\sport\s\d+)?>$/m
