X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fsrc%2Fverify.c;h=82dc5cc722f322a8e933b6470600ba22d9ec1b7b;hb=c1cc0506c3069a9d93d71321f9578150662ede91;hp=dba09164ed3f40ccc16d107d69c7925778bb4e01;hpb=774ef2d7d0f7fffbfd114271b8567e36485898dc;p=exim.git diff --git a/src/src/verify.c b/src/src/verify.c index dba09164e..82dc5cc72 100644 --- a/src/src/verify.c +++ b/src/src/verify.c @@ -468,6 +468,7 @@ else deliver_host_address = host->address; deliver_host_port = host->port; deliver_domain = addr->domain; + transport_name = addr->transport->name; if (!smtp_get_interface(tf->interface, host_af, addr, NULL, &interface, US"callout") || @@ -548,6 +549,7 @@ else { addr->message = string_sprintf("could not connect to %s [%s]: %s", host->name, host->address, strerror(errno)); + transport_name = NULL; deliver_host = deliver_host_address = NULL; deliver_domain = save_deliver_domain; continue; @@ -583,7 +585,7 @@ else #ifdef EXPERIMENTAL_EVENT if (event_raise(addr->transport->event_action, - US"smtp:connect", responsebuffer) == DEFER) + US"smtp:connect", responsebuffer)) { /* Logging? Debug? */ goto RESPONSE_FAILED; @@ -879,9 +881,7 @@ else /* If accepted, we aren't going to do any further tests below. */ if (random_ok) - { new_domain_record.random_result = ccache_accept; - } /* Otherwise, cache a real negative response, and get back to the right state to send RCPT. Unless there's some problem such as a dropped @@ -1852,8 +1852,10 @@ while (addr_new != NULL) #ifdef SUPPORT_TLS deliver_set_expansions(addr); #endif + verify_mode = is_recipient ? US"R" : US"S"; rc = do_callout(addr, host_list, &tf, callout, callout_overall, callout_connect, options, se_mailfrom, pm_mailfrom); + verify_mode = NULL; } } else