VPS Mail Filter
Jan 22, 2009I am getting a VPS and the only mail filter option available with this company is SpamAssassin.
Is Spam Assassin's version 3.2.x sufficient to block majority of Spam/Junk emails?
I am getting a VPS and the only mail filter option available with this company is SpamAssassin.
Is Spam Assassin's version 3.2.x sufficient to block majority of Spam/Junk emails?
i try to make a email filter using cpanel options but dont work this its the code
Code:
if first_delivery
and ( ("$header_from:" contains "id@dominio.com")
or ("$header_from:" contains "id1@dominio.com")
or ("$header_from:" contains "id2@dominio.com")
)
then
unseen deliver "id3@dominio.com"
endif
and Also
Code:
if
$header_from: contains "id@dominio.com"
then
deliver "id3@dominio.com"
endif
the main idea its all outgoing mail from id@dominio.com must be
send a copy (bcc) to id3@dominio.com
whether it is possible for Procmail to filter based on the IP address of the host from which a message was received. In context, I want to reject any messages that come from hosts other than a specific list.
Is this possible? Search for the absence of particular IP addresses in received headers or something?
is it possible to have one "recipe" acting on behalf of all mail received for a domain name, or must it be per-user?
Does anyone know how I can create a server-side filter in Plesk 8? I need to filter incoming mail to my mail server (using X-Forwarded-For.
View 0 Replies View RelatedI have Exim install on my server, I have a few filters setup.
I have several domains on the same server.
What I want to be able to do is blind copy all emails SENT and RECEIVED from *@domain1.com delivered to backup@backup.com
Here is my filter that copies all incoming mail, (THIS WORKS 100%)
PHP Code:
if error_message then finish endif
if $header_to: contains "@domain1.com"
then unseen deliver "backup@backup.com" endif
Now this filter does NOT work, I want it to blind copy all emails sent from *@domain1.com
PHP Code:
if $sender_address contains "@domain1.com"
then unseen deliver "backup@backup.com" endif
I have 1 outgoing mail filer working, however it is for a specific email address, here it is....
PHP Code:
if $sender_address is "user1@domain1.com"
then unseen deliver "backup@backup.com" endif
I would like to know how to filter more than one NIC with APF firewall... at the moment, it only let you filter Eth0, how do I add Eth1 in it as well?
View 7 Replies View RelatedAs a web host or ISP what do you think is best to do? do spam/virus filtering, or don't touch mail and let the user do what they want with it? (no chance of false positives, or lost mail, this way)
I work for an ISP and we have a barracuda and we get tons of calls from customers regarding lost mail and such as when you're filtering such a large varitey of mail its very hard to have a "perfect" filter. Mail that a car dealership gets and what a hospital get is totally different, for example.
Also in terms of web hosting the filtering will put a reasonable load on the server during peak spamming hours.
So just curious, as a ISP/webhost customer do you think your host should do filter or do you rather manage that yourself?