Re: [Exim] Canonicalizing Addresses

Página superior
Eliminar este mensaje
Responder a este mensaje
Autor: John Lawless
Fecha:  
A: Philip Hazel
Cc: Exim List
Asunto: 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