Re: [exim] Spam not being spam checked

トップ ページ
このメッセージを削除
このメッセージに返信
著者: a.smith
日付:  
To: exim-users
題目: Re: [exim] Spam not being spam checked
Thanks Bill,

I guessed that logic was deciding whether to check for spam or not,
the config has these comments directly above that section:

## Anti-spam
## - spools, then scans
## - an alternative to the ACL method
## - only mail comming in via SMTP or ESMTP is scanned!
## - ASMTP, and
## - Ignored for callout verification

The only other section in the config that is dealing with spam is this
section:

spamcheck_pipe:
driver = pipe
command = "/usr/local/sbin/exim -oMr spam-scanned -bS"
use_bsmtp = true
timeout_defer = true
transport_filter = "/usr/local/bin/spamc -u mailnull"
user = mailnull
group = mail
home_directory = "/var/spool/exim/scan"
current_directory = "/var/spool/exim/scan"
log_output = true
return_fail_output = true
return_path_add = false
message_prefix =
message_suffix =

So Im failing to understand where the logic is that is deciding that
some mails will be scanned and others not... :S

thanks Andy.