Hey Thanks!! I actually solved the problem on my own, thanks to the bad header lookup tool on declude's website. It turns out that JMail doesn't add a Message-ID header to the email and technically you're supposed to have one. It also doesn't help that JMail encodes header strings according to iso-8859-1 character sets. I solved the problem by adding two commands to my asp code:
Message.ISOEncodeHeaders = False Message.AddNativeHeader "Message-ID", "<" & Rnd & "@my-domain-name.com>" Once I did that declude passed the message on through without tagging it as spam. It only took me till 3:30am to figure this out. Thanks, Gary -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Tom Sent: Saturday, January 26, 2002 2:44 AM To: [EMAIL PROTECTED] Subject: RE: [IMail Forum] Declude JunkMail reports Poor Headers for JMail generated messages > What's the WHITELIST option? I can't find any reference to that > on Decludes website or in the config files on my computer. Here's the link to the manual: http://www.declude.com/JunkMail/manual.htm Here's a sample of usage from the Configuration file: WHITELIST IP 206.181.99 WHITELIST FROM execnet.com WHITELIST FROM imagefxonline.net I place this before all the tests. Here's the Description: If you need to whitelist mail (make sure that it passes all the spam tests), you can do so, based on the IP address, the return address, or text that appears within the E-mail. To whitelist an IP address, add a line "WHITELIST IP 127.0.0.1" to the \IMail\Declude\global.cfg file (replacing 127.0.0.1 with the IP you wish to whitelist). If you wish to whitelist a range of IP addresses, such as 127.0.0.*, you can do so by adding a line "WHITELIST IP 127.0.0." (which will whitelist any E-mails from mail servers with an IP address that contains "127.0.0."). To whitelist an E-mail address, add a line "WHITELIST FROM [EMAIL PROTECTED]" to the \IMail\Declude\global.cfg file (replacing [EMAIL PROTECTED] with the address you wish to whitelist). You can also whitelist all mail from a specific domain by using "WHITELIST FROM @example.com". Finally, you can whitelist text that appears anywhere in the headers or body of the E-mail, by using "WHITELIST ANYWHERE text" (replacing "text" with the text you wish to use for whitelisting). For example, you could use "WHITELIST ANYWHERE The secret code is 12345", and any E-mail containing "The secret code is 12345" would be whitelisted. You can have up to 100 of the WHITELIST entries in the global.cfg file. They only work in the global.cfg file; you can not have user-specific or domain-specific whitelists. Please visit http://www.ipswitch.com/support/mailing-lists.html to be removed from this list. An Archive of this list is available at: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/ Please visit http://www.ipswitch.com/support/mailing-lists.html to be removed from this list. An Archive of this list is available at: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
