Re: [Exim] Canonicalizing Addresses

Αρχική Σελίδα
Delete this message
Reply to this message
Συντάκτης: John Lawless
Ημερομηνία:  
Προς: Philip Hazel
Υ/ο: Exim List
Αντικείμενο: Re: [Exim] Canonicalizing Addresses
Thanks. I think I've got it then as:

local:
driver = lookuphost
transport = remote_smtp
domains = lsearch;/etc/local_hosts.list
self = local
gethostbyname

internet:
driver = domainlist
domains = !*.internal:^.*\\..*\$
transport = remote_smtp
route_list = * mail.isp.net bydns_a

This tries the local network first, reducing the chance of accidental
internet deliveries. From all the discussion on aliases and new internet
domains, I added the domains statements to the internet router to stop
addresses that look like misspelled aliases (no period) or that look like
misspelled internal addresses (*.internal).

John