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 .![]()
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 .![]()
Delete the offending domain?
Hii
what i need is to block outgoing mails to aol.com from a paricular domain/IP![]()
use iptables![]()
You can also 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.
Thanks a lot
thats worked![]()