diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2016-03-09 14:03:58 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2016-04-06 21:31:57 +0100 |
commit | 3cf01803d0ca676cb71b133dfc1535406f1cbe26 (patch) | |
tree | bbe6a91dfe5d223f473f295e44ef3e6862894be8 /src | |
parent | 11aa88b021174241af47964f39f835f4ec76611b (diff) |
nicer retry message
Diffstat (limited to 'src')
-rw-r--r-- | src/src/transports/smtp.c | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/src/src/transports/smtp.c b/src/src/transports/smtp.c index dec52d047..975fc16aa 100644 --- a/src/src/transports/smtp.c +++ b/src/src/transports/smtp.c @@ -3960,9 +3960,9 @@ for (addr = addrlist; addr != NULL; addr = addr->next) else if (expired) { setflag(addr, af_pass_message); /* This is not a security risk */ - addr->message = (ob->delay_after_cutoff)? - US"retry time not reached for any host after a long failure period" : - US"all hosts have been failing for a long time and were last tried " + addr->message = ob->delay_after_cutoff + ? US"retry time not reached for any host after a long failure period" + : US"all hosts have been failing for a long time and were last tried " "after this message arrived"; /* If we are already using fallback hosts, or there are no fallback hosts @@ -3974,18 +3974,23 @@ for (addr = addrlist; addr != NULL; addr = addr->next) } else { + const uschar * s; if (hosts_retry == hosts_total) - addr->message = US"retry time not reached for any host"; + s = US"retry time not reached for any host%s"; else if (hosts_fail == hosts_total) - addr->message = US"all host address lookups failed permanently"; + s = US"all host address lookups%s failed permanently"; else if (hosts_defer == hosts_total) - addr->message = US"all host address lookups failed temporarily"; + s = US"all host address lookups%s failed temporarily"; else if (hosts_serial == hosts_total) - addr->message = US"connection limit reached for all hosts"; + s = US"connection limit reached for all hosts%s"; else if (hosts_fail+hosts_defer == hosts_total) - addr->message = US"all host address lookups failed"; - else addr->message = US"some host address lookups failed and retry time " - "not reached for other hosts or connection limit reached"; + s = US"all host address lookups%s failed"; + else + s = US"some host address lookups failed and retry time " + "not reached for other hosts or connection limit reached%s"; + + addr->message = string_sprintf(s, + addr->domain ? string_sprintf(" for '%s'", addr->domain) : US""); } } } |