Block outgoing mail to aol.com

Status
Not open for further replies.

abhijith

Member
Feb 18, 2006
21
0
151
india kerala
Hi,

I just want to know how we can block mail to aol.com from a particular domain only. Others should be able to send mail to aol. Not from a user bur from a domain whole. Please answer .
 

zella

Member
Aug 5, 2005
13
0
151
You can try to do that within /etc/antivirus.exim file like this

if $header_from: contains "@thedomain_you_want_to_block_to_aol" and
$header_to: contains "@aol.com"
then
fail text "The message you want to send to the originator of this email"
seen finish
end

Hoping that the "if" accept "and" otherwise use 2 if
like this

if $header_from: contains "@thedomain_you_want_to_block_to_aol"
then
if $header_to: contains "@aol.com"
then
fail text "The message you want to send to the originator of this email"
seen finish
end
end

You can place these lines after
if not first_delivery
then
finish
endif


Regards.
 

chirpy

Well-Known Member
Verifed Vendor
Jun 15, 2002
13,437
33
473
Go on, have a guess
abhijith said:
Hi,

I just want to know how we can block mail to aol.com from a particular domain only. Others should be able to send mail to aol. Not from a user bur from a domain whole. Please answer .
Please dont' cross-post on the forums.
 
Status
Not open for further replies.