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!
Page 1 of 1
Bypass spam checking for logged-in user (sending email)?
#2
Posted 20 April 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)
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)
#3
Posted 08 May 2006 - 11:37 PM
Sorry, I didnt understand very well.
This is my rules:
Under and above what line I put the new rules? How would stay my rules?
Thank you!!
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
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!!
#4
Posted 08 May 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}}
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}}
#5
Posted 09 May 2006 - 12:12 AM
Thanks a lot pairote for your fast replay. Yor antivirus/antispam solution is very good, congratulations!
#6
Posted 16 September 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
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
Share this topic:
Page 1 of 1
Help










