| Unix Content | Register | FAQ | Calendar | Search | Today's Posts | Mark Forums Read |
|
#1
|
| Please respond to the list. I'm not the only one that can provide feedback. On Wed, 27 Aug 2008, Denise Ricerra wrote: > Thanks for the response. But is there some sort of a log file where we can > check the mails that are tagged as spam? Also, is it possible to redirect > mails tagged as spam to another account? If there are separate software to > do this, would you recommend any? I'm sorry for so many questions, I am > really a newbie at this and we need to fix this right away. Your server logs should tell you. Here, running FreeBSD: $ egrep 'spamd' /var/log/maillog .... Aug 27 00:10:22 duane spamd[754]: spamd: identified spam (15.0/5.0) for duane@example.com:58 in 0.7 seconds, 3050 bytes. Aug 27 00:10:22 duane spamd[754]: spamd: result: Y 14 - BAYES_99,HTML_IMAGE_ONLY_12,HTML_IMAGE_RATIO_04,HT ML_MESSAGE,HTML_SHORT_LINK_IMG_1,HTML_TAG_BALANCE_ HEAD,MIME_HTML_ONLY,URIBL_BLACK,URIBL_JP_SURBL,URI BL_RHS_DOB,URIBL_SBL scantime=0.7,size=3050,user=duane@example.com,uid= 58,required_score=5.0,rhost=localhost,raddr=127.0. 0.1,rport=55011,mid= .... The redirection of messages that would be tagged as spam would have to come from your MTA. SA has nothing to do with redirecting messages. > -----Original Message----- > From: Duane Hill [mailto:d.hill@yournetplus.com] > Sent: Wednesday, August 27, 2008 10:15 AM > To: users@spamassassin.apache.org > Subject: Re: Report Safe > > On Wed, 27 Aug 2008, Denise Ricerra wrote: > >> Hi! >> >> Sorry I am a newbie here at spam assassin. I just have a question, when I > set the report safe to ?1? the message gets altered, >> even for the important message being tagged as SPAM. How do I get the > original message. Is there some sort of directory or logs to >> view it? I am using qmail with the latest version of SPAM ASSASIN. > > report_safe by default is turned on. From 'perldoc > Mail::SpamAssassin::Conf': > > report_safe ( 0 | 1 | 2 ) (default: 1) > if this option is set to 1, if an incoming message is tagged as > spam, instead of modifying the original message, SpamAssassin will > create a new report message and attach the original message as a > message/rfc822 MIME part (ensuring the original message is > completely preserved, not easily opened, and easier to recover). > > The original message should be attached unaltered. > > -d > > -d |