Help - Search - Members - Calendar
Full Version: Bypass spam checking for logged-in user (sending email)?
RV Products Forums > Server-Wide Spam and Virus Protection > General
torwill
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
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
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
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
Thanks a lot pairote for your fast replay. Yor antivirus/antispam solution is very good, congratulations!
Tiagop
# 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.
Invision Power Board © 2001-2009 Invision Power Services, Inc.