1 /* $Cambridge: exim/src/src/routers/rf_self_action.c,v 1.2 2005/01/04 10:00:44 ph10 Exp $ */
3 /*************************************************
4 * Exim - an Internet mail transport agent *
5 *************************************************/
7 /* Copyright (c) University of Cambridge 1995 - 2005 */
8 /* See the file NOTICE for conditions of use and distribution. */
12 #include "rf_functions.h"
16 /*************************************************
17 * Decode actions for self reference *
18 *************************************************/
20 /* This function is called from a number of routers on receiving
21 HOST_FOUND_LOCAL when looking up a supposedly remote host. The action is
22 controlled by a generic configuration option called "self" on each router,
25 . freeze: Log the incident, freeze, and return DEFER
27 . defer: Log the incident and return DEFER
29 . fail: Fail the address
31 . send: Carry on with the delivery regardless -
32 this makes sense only if the SMTP
33 listener on this machine is a differently
36 . pass: The router passes; the address
37 gets passed to the next router, overriding
38 the setting of no_more
40 . reroute:<new-domain> Change the domain to the given domain
41 and return REROUTE so it gets passed back
44 . reroute:rewrite:<new-domain> The same, but headers containing the
45 old domain get rewritten.
47 These string values are interpreted earlier on, and passed into this function
48 as the values of "code" and "rewrite".
51 addr the address being routed
52 host the host that is local, with MX set (or -1 if MX not used)
53 code the action to be taken (one of the self_xxx enums)
54 rewrite TRUE if rewriting headers required for REROUTED
55 new new domain to be used for REROUTED
56 addr_new child chain for REROUTEED
58 Returns: DEFER, REROUTED, PASS, FAIL, or OK, according to the value of code.
62 rf_self_action(address_item *addr, host_item *host, int code, BOOL rewrite,
63 uschar *new, address_item **addr_new)
65 uschar *msg = (host->mx >= 0)?
66 US"lowest numbered MX record points to local host" :
67 US"remote host address is the local host";
73 /* If there is no message id, this is happening during an address
74 verification, so give information about the address that is being verified,
75 and where it has come from. Otherwise, during message delivery, the normal
76 logging for the address will be sufficient. */
78 if (message_id[0] == 0)
80 if (sender_fullhost == NULL)
82 log_write(0, LOG_MAIN, "%s: %s (while routing <%s>)", msg,
83 addr->domain, addr->address);
87 log_write(0, LOG_MAIN, "%s: %s (while verifying <%s> from host %s)",
88 msg, addr->domain, addr->address, sender_fullhost);
92 log_write(0, LOG_MAIN, "%s: %s", msg, addr->domain);
95 addr->special_action = SPECIAL_FREEZE;
105 debug_printf("%s: %s", msg, addr->domain);
106 debug_printf(": domain changed to %s\n", new);
108 rf_change_domain(addr, new, rewrite, addr_new);
114 debug_printf("%s: %s", msg, addr->domain);
115 debug_printf(": configured to try delivery anyway\n");
119 case self_pass: /* This is soft failure; pass to next router */
122 debug_printf("%s: %s", msg, addr->domain);
123 debug_printf(": passed to next router (self = pass)\n");
126 addr->self_hostname = string_copy(host->name);
132 debug_printf("%s: %s", msg, addr->domain);
133 debug_printf(": address failed (self = fail)\n");
139 return DEFER; /* paranoia */
142 /* End of rf_self_action.c */