Can I Use Procmail To Filter Mail Based On Connecting IP
Jun 16, 2008
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?
View 0 Replies
Jun 25, 2009
I am trying to follow this guide on how to configure procmail:
[url]
I can login to my dedicated server via SSH, but how do I edit files etc. should this be done via SFTP, or via Shell?
View 0 Replies
View Related
Jan 22, 2009
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?
View 9 Replies
View Related
Apr 11, 2008
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
View 6 Replies
View Related
Apr 18, 2009
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 Related
Apr 2, 2007
I 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
View 2 Replies
View Related
Feb 26, 2015
I have a task of converting a current Win Server based apache server from multiple IP based virtual hosts to a full name based virtual hosting.I'm famiilar with the steps but I was wondering if there are any gotchas in Windows that I should be aware of. It seems that now matter what I change in the new config it doesn't work or work as expected.
View 1 Replies
View Related