Fritz Borgstedt wrote:
> Please make your configuration clearer.
> 
> 

Um..

64.72.x.y:25 [ASSP] -> 127.0.0.1:25 [Exim]

[Exim] has the exiscan patch in it so it can talk directly to 
spamassasin and clamd

In my exim config I have acl_smtp_data defined as going to acl_check_data:

###
### START ACL DATA ###
###
acl_check_data:

# First unpack MIME containers and reject serious errors.
drop  message   = This message contains a MIME error ($demime_reason)
  demime         = *
  condition      = ${if >{$demime_errorlevel}{2}{1}{0}}

# Reject virus infested messages.
drop message    = sorry, this message contains a virus ($malware_name)
  malware        = *
  log_message    = malware ($malware_name)

# contiune with no filtering and no blocking
accept message  = X-WANTSPAM: Yes
  condition      =  ${lookup {${lc:$recipients}} 
[EMAIL PROTECTED]/cdb/iwantspam.cdb}{yes}{no}}

drop message    = sorry, we do not accept .$found_extension files 
because it could possibly contain dangerous content.
  demime         = 
bas:bat:cmd:com:cpl:exe:hlp:hta:inf:js:jse:lnk:pif:reg:scr:shs:shm:url:wcs:wsf:wsh:vbe:vbs
  log_message    = Blocked file extension: [$found_extension]

#just no sa for these recipients
accept message  = X-NOSA: Yes $tod_full
  condition      = ${lookup {${lc:$recipients}} 
[EMAIL PROTECTED]/cdb/nosa.cdb}{yes}{no}}

accept condition        = ${if >={$message_size}{100k}{1}{0}}

drop message    = ** Attention **\n \
                 This message has been rejected!\n \
                 This message has a SPAM score of: $spam_score points.\n \
                 Please call 845.485.3445 if you feel this message is in 
error.
  spam           = spamd
  condition      = ${if >{$spam_score_int}{100}{1}{0}}
  log_message    = T=<$recipients> [SA Reject] $spam_score

warn message    = X-New-Subject: [SPAM] $h_subject:
  spam           = spamd
  log_message    = T=<$recipients> [SPAM] $spam_score
# system_filter appends the subject

warn message    = X-Spam-Score: $spam_score ($spam_bar)
warn message    = X-Spam-Report: $spam_report

accept

What I am looking for is *someway* to tell ASSP that the message has 
been rejcted by SA, and that ASSP should drop all whitelisting 
information on that network (I have the *Netblocks options turned on) 
and host.

Is that possible?

Along the same vein as that.. how would I get ASSP to recognize that a 
recipient doesn't exist if I don't use LDAP?

I hope this is clearer.

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Assp-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/assp-user

Reply via email to