RV Products Forums: Bypass spam checking for logged-in user (sending email)? - RV Products Forums

Jump to content

Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Bypass spam checking for logged-in user (sending email)?

#1 User is offline   torwill 

  • Newbie
  • Pip
  • Group: Members
  • Posts: 7
  • Joined: 22-August 04

Posted 18 April 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!
0

#2 User is offline   pairote 

  • Administrator
  • PipPipPip
  • Group: Admin
  • Posts: 4,345
  • Joined: 13-June 03

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)
0

#3 User is offline   Andr? Marcelo 

  • Newbie
  • Pip
  • Group: Members
  • Posts: 9
  • Joined: 27-April 06

Posted 08 May 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!!
0

#4 User is offline   pairote 

  • Administrator
  • PipPipPip
  • Group: Admin
  • Posts: 4,345
  • Joined: 13-June 03

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}}
0

#5 User is offline   Andr? Marcelo 

  • Newbie
  • Pip
  • Group: Members
  • Posts: 9
  • Joined: 27-April 06

Posted 09 May 2006 - 12:12 AM

Thanks a lot pairote for your fast replay. Yor antivirus/antispam solution is very good, congratulations!
0

#6 User is offline   Tiagop 

  • Newbie
  • Pip
  • Group: Members
  • Posts: 2
  • Joined: 09-May 06

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
0

Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic