-
Notifications
You must be signed in to change notification settings - Fork 178
Q0205
Ali Vakilzade edited this page Aug 13, 2014
·
3 revisions
How can I get Exim to deliver to me locally and everyone else at the same domain via SMTP to the MX record specified host?
Create an accept router to pick off the one address and pass it to an appropriate transport. Put this router before the one that does MX routing:
me:
driver = accept
domains = dom.com
local_parts = me
transport = local_delivery
In the transport you will have to specify the user
option. An
alternative way of doing this is to add a condition to the router that
does MX lookups to make it skip your address. Subsequent routers can
then deliver your address locally. You'll need a condition like this:
condition = \
${if and {{eq{$domain}{dom.com}}{eq{$local_part}{me{no}{yes}}}}}
- How can I arrange that messages larger than some limit are handled by a
- Can I specify a list of domains to explicitly reject?
- How can I arrange to do my own qualification of non-fully-qualified
- Every system has a
nobody
account under which httpd etc run. I would - How can I get Exim to deliver to me locally and everyone else at the
- How can I get Exim to deliver certain domains to a different SMTP port
- Why does Exim lower-case the local-part of a non-local domain when
- I can't get a lookup to work in a domain list. I'm trying this:
- How do I look up multiple LDAP DNs with query-style lookups?