On 30 Oct 2006, at 20:42, Jlew wrote: > > I am looking for an easy way to only allow incoming mail from a > specific > range of IP addresses. We have a service that filters all messages and > passes them on to the end mail server (Exim). Any mail coming from > a source > other than the filtering server(s) is unwanted. Is there an easy > way to do > this? And when I say "easy" I mean Exim/Linux newb easy. I have seen a > couple of posts that seem to deal with what I want, but I need it > spelled > out a bit more than the answers I saw. Pardon my inexperience. >
You have to define a connect acl http://www.exim.org/exim-html-4.50/doc/html/spec.html So say in the main config acl_smtp_connect = acl_restrict_senders Then in the acl section acl_restrict_senders: accept hosts = 192.168.1.1:10.1.1.1:192.0.2.1 deny message = Administratively blocked You chose the hosts, you chose the error message. (dont be rude it might get out :-)) > J > -- > View this message in context: http://www.nabble.com/Easy-Whitelist-- > tf2541271.html#a7080392 > Sent from the Exim Users mailing list archive at Nabble.com. > > > -- > ## List details at http://www.exim.org/mailman/listinfo/exim-users > ## Exim details at http://www.exim.org/ > ## Please use the Wiki with this list - http://www.exim.org/eximwiki/ > -- ## List details at http://www.exim.org/mailman/listinfo/exim-users ## Exim details at http://www.exim.org/ ## Please use the Wiki with this list - http://www.exim.org/eximwiki/
