Re: [Declude.JunkMail] Can you do WHITELISTING in the $default$.JunkMail.txt file?
Brent Brashear wrote: I'm wanting to give AntiSpam customers the ability to 'tweek' their spam settings by giving them FTP access to the $default$.JunkMail.txt file. I'm hoping they'll also be able to manage their WHITELISTING (because not everyone wants the same WHITELIST) How could this be done? -Brent I would think this could be done better, or at least the whitelisting part, using AUTOWHITELIST ON. Then users would just log in via web messaging, add an address to their address book, and it's whitelisted. Or maybe I missed something important...Btw, allowing end users to edit your $default$.junkmail file sounds like a pretty bad idea to me. Ryan --- [This E-mail was scanned for viruses by Declude Virus (http://www.declude.com)] --- This E-mail came from the Declude.JunkMail mailing list. To unsubscribe, just send an E-mail to [EMAIL PROTECTED], and type "unsubscribe Declude.JunkMail". The archives can be found at http://www.mail-archive.com.
[Declude.JunkMail] Is there anything wrong with this ( or: Whitelist alternative )
I was inspired by "Whitelisted- getting thru" because I've seen this problem on my network as well, but have not been brave enough to mess around with settings that would cause our whitelisted users to call up because they were missing mail. My questions is, in a per-domain/per-user JunkMail Pro setup, what is wrong with putting a declude/domain/user.junkmail with all tests set to ignore for [EMAIL PROTECTED] that wants to be whitelisted? I tried it myself to test it out and it seems to work fine. Just another way to do it... (maybe) Ryan Briones --- [This E-mail was scanned for viruses by Declude Virus (http://www.declude.com)] --- This E-mail came from the Declude.JunkMail mailing list. To unsubscribe, just send an E-mail to [EMAIL PROTECTED], and type "unsubscribe Declude.JunkMail". The archives can be found at http://www.mail-archive.com.
Re: [Declude.JunkMail] Weird characters in email
R. Scott Perry wrote: Has anyone seen weird characters in an email like that: Your message did not reach the following recipient(s): +ACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKg- MAY NEW RELEASE SLEEVES +ACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKg- That's a bounce message from the remote end. Those characters look a lot like some type of encoding (base64/uuencode/BinHex), but I think they are just random characters that are repeating (unless it is something very odd that is encoded). -Scott --- Declude JunkMail: The advanced anti-spam solution for IMail mailservers since 2000. Declude Virus: Ultra reliable virus detection and the leader in mailserver vulnerability detection. Find out what you've been missing: Ask for a free 30-day evaluation. --- [This E-mail was scanned for viruses by Declude Virus (http://www.declude.com)] --- This E-mail came from the Declude.JunkMail mailing list. To unsubscribe, just send an E-mail to [EMAIL PROTECTED], and type "unsubscribe Declude.JunkMail". The archives can be found at http://www.mail-archive.com. C:\Documents and Settings\Administrator>perl -MMIME::Base64 -le"print decode_base64('ACoAKgAq');" * * * http://www.google.com/search?hl=en&ie=UTF-8&oe=UTF-8&q=ACoAKgAq&btnG=Google+Search \- http://people.cryst.bbk.ac.uk/~ubcg09j/ccp4arc/bb2000/msg00527.html C:\Documents and Settings\Administrator>perl -MMIME::Base64 -le"print decode_base64('AD4');" > Looks about right...given that it's from an email... Ryan --- [This E-mail was scanned for viruses by Declude Virus (http://www.declude.com)] --- This E-mail came from the Declude.JunkMail mailing list. To unsubscribe, just send an E-mail to [EMAIL PROTECTED], and type "unsubscribe Declude.JunkMail". The archives can be found at http://www.mail-archive.com.
[Declude.JunkMail] When does Declude re-read .junkmail files?
I have this weird problem. I've been trying to get WHITELISTFILE to work for days with no avail. I was pretty sure I had followed all the instructions, and still no results. So I left the settings in there, and gave up. Well, sparked by the Perl Script & Spamheaders email and my finding of the BADHEADERS/SPMAHEADERS explainer ( http://www.declude.com/tools/header.php ), I decided to embark on making my PHP mailer compliant. When I sent the email, I checked the headers for the BADHEADERS code and there I saw it: Whitelisted[0]. *gasp* I had just recieved 2 emails that weren't whitelisted this morning.( spam actually.. ) As these were not the result I wanted at this time, I went ahead and removed myself from the whitelist file and resent the mail. Still whitelisted. So I deleted the whitelist file and removed the WHITELISTFILE thingie from $default$.junkmail and created a USER.junkmail in my per-domain folder. Still whitelisted. The only think that I can fathom the problem being is that Declude doesn't re-read my junkmail files until it reboots or something is restarted. Thanks for your time. Ryan --- [This E-mail was scanned for viruses by Declude Virus (http://www.declude.com)] --- This E-mail came from the Declude.JunkMail mailing list. To unsubscribe, just send an E-mail to [EMAIL PROTECTED], and type "unsubscribe Declude.JunkMail". The archives can be found at http://www.mail-archive.com.
Re: [Declude.JunkMail] Perl Script & Spamheaders
John Olden wrote: Any Perl savy people out there using the Mime::Lite module in any of their scripts figure out how to generate valid Message-IDs in mail sent from online forms? I'm trying to get our forms to pass the "Spamheaders" test and this is a sticking point. I cannot find any information online on implementation. The Cpan manuals just list "message-id" once and it's in a list of items. I've tried the following code but all I get is the automatically generated Imail message-id: === sub smtp_mail { MIME::Lite->send('smtp', "mail.mydomain.com"); $idnum = time(); $randnum = rand(); my $msg = MIME::Lite->new( From=> $def_from, To => $def_to, Cc => $def_cc, Subject => $def_subject, Message-ID => <[EMAIL PROTECTED]>, Type=> 'multipart/related' ); $msg->attach( Type => 'text/html', Data => qq| $TG{'MessageBody'}| ); $msg->attach( Type => 'text', Path => $EmailTempFile, ); $msg->send or die ("Error sending e-mail: $!"); } === John Olden - Systems Administrator Champaign Park District Like Andrew Colbeck said, the right hand side of Message-ID is a bad value. If you don't use double-quotes around that, then perl would be evaluating that as a filehandle, and either spitting out errors ( if you have strict and warnings turned on ) or returning undef, which is why I'm assuming Imail is doing it for you. That's my best guess. HTH. Ryan --- [This E-mail was scanned for viruses by Declude Virus (http://www.declude.com)] --- This E-mail came from the Declude.JunkMail mailing list. To unsubscribe, just send an E-mail to [EMAIL PROTECTED], and type "unsubscribe Declude.JunkMail". The archives can be found at http://www.mail-archive.com.
[Declude.JunkMail] WHITELISTFILE problems
I've been wanting to use WHITELISTFILE for a while now to do per-domain whitelists since we're using per-domain/per-user settings now ( I'm obsessive, what can I say ), and week provided a very obtuse way of allowing me to do so. So, as the instructions say in the manual ( using Declude 1.75 ), I started out by trying to put the WHITELISTFILE in my declude\domain.com\$default$.junkmail and waited for the emails to start coming though ( the whitelist file was properly formatted, btw ). Checked the mailheaders, no Whitelisted[0]. So then I tried GLOBAL.cfg which yielded nothing ( and rightfully so, according to the manual ), and my declude\$default$.junkmail which had the same results. I've tried every combination of things I can think off. Putting the addresses as WHITELIST TO in GLOBAL.cfg works. Am I missing something important about WHITELISTFILE? Thanks for your time. --- [This E-mail was scanned for viruses by Declude Virus (http://www.declude.com)] --- This E-mail came from the Declude.JunkMail mailing list. To unsubscribe, just send an E-mail to [EMAIL PROTECTED], and type "unsubscribe Declude.JunkMail". The archives can be found at http://www.mail-archive.com.