cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
2539
Views
0
Helpful
2
Replies

Best practices using IronPort

This section is to share real-world stories about how folks have configured their IronPorts. What really works (or doesn't) out there in the IronPort Nation?

2 Replies 2

ian_ironport
Level 1
Level 1

To block some virus generated mails we reject mail from the Internet side which claims to be from an internal mail address. We use a message filter for this e.g.

if ((mail-from == "@my-domain\\.com$") AND (recv-int != "IntraNet")) AND (sendergroup != "TRUSTEDSOURCE") { drop(); }

internal Interface is called "IntraNet". We've set up a new HAT sender group "TrustedSource" which is a list of IP's that ARE allowed to submit mail that claims to be from our systems (e.g. partner companies sending mail on our behalf). This group is linked to a mail flow policy that lets them use us as a relay. OK - relaying is not ideal and anything they send us (regardless of from address) is treated in reports as "Outgoing" mail.

This seems to be blocking ~1% of incoming mail.

We tried this but we found there are enough very simple distribution lists (eg a unix /etc/aliases list) which meant that we had to accept our own email domains from the internet.