torwill
Apr 18 2006, 07:00 PM
Is there a way to bypass spam checking for logged in users?
The reason being is when I am sending spam report to spamcop (with spam mail attached), I always get spam score too high message.
Thanks!
pairote
Apr 20 2006, 11:50 AM
You can completely disable scanning outgoing email. Please follow this instruction.
1. Find these lines:
##
# Reject spam messages with score over 15.
# Keep in mind that $spam_score_int is the messages score multiplied by ten.
##
deny message = Spam score too high ($spam_score)
2. Add the following condition:
# Accept Sender that usually send a lot of emails to minimize spamd load
accept senders = +rv_spam_sender_address_whitelist
accept hosts = @[]
accept hosts = +rv_relay_hosts
accept authenticated = *
# Messages larger than 200k are accepted without spam scanning to reduce spamd load
accept condition = ${if >{$message_size}{200k}{true}}
##
# Reject spam messages with score over 15.
# Keep in mind that $spam_score_int is the messages score multiplied by ten.
##
deny message = Spam score too high ($spam_score)
Andr? Marcelo
May 8 2006, 11:37 PM
Sorry, I didnt understand very well.
This is my rules:
QUOTE
# Messages larger than 150k are accepted without spam scanning to reduce spamd load
accept condition = ${if >{$message_size}{150k}{true}}
##
# Reject spam messages with score over 12.
# Keep in mind that $spam_score_int is the messages score multiplied by ten.
##
deny message = Spam score too high ($spam_score)
# Bypass Sender that usually send a lot of emails to reduce spamd load
!senders = +rv_spam_sender_address_whitelist
spam = mailnull:true/defer_ok
condition = ${if >{$spam_score_int}{120}{1}{0}}
accept
Under and above what line I put the new rules? How would stay my rules?
Thank you!!
pairote
May 8 2006, 11:53 PM
Above
accept condition = ${if >{$message_size}{150k}{true}}
Add the rules, the final result will be
# Accept Sender that usually send a lot of emails to minimize spamd load
accept senders = +rv_spam_sender_address_whitelist
accept hosts = @[]
accept hosts = +rv_relay_hosts
accept authenticated = *
accept condition = ${if >{$message_size}{150k}{true}}
Andr? Marcelo
May 9 2006, 12:12 AM
Thanks a lot pairote for your fast replay. Yor antivirus/antispam solution is very good, congratulations!
Tiagop
Sep 16 2006, 07:34 PM
# Messages larger than 150k are accepted without spam scanning to reduce spamd load
accept condition = ${if >{$message_size}{150k}{true}}
##
# Reject spam messages with score over 15.
# Keep in mind that $spam_score_int is the messages score multiplied by ten.
##
deny message = Spam score too high ($spam_score)
# Accept Sender that usually send a lot of emails to minimize spamd load
accept senders = +rv_spam_sender_address_whitelist
accept hosts = @[]
accept hosts = +rv_relay_hosts
accept authenticated = *
# Bypass Sender that usually send a lot of emails to reduce spamd load
!senders = +rv_spam_sender_address_whitelist
spam = mailnull:true/defer_ok
condition = ${if >{$spam_score_int}{150}{1}{0}}
##
Like this?
Thanks
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please
click here.