mail-send.c (dovecot-2.3.16) | : | mail-send.c (dovecot-2.3.17) | ||
---|---|---|---|---|
skipping to change at line 98 | skipping to change at line 98 | |||
orig_msgid == NULL ? "" : str_sanitize(orig_msgid, 80), e rror); | orig_msgid == NULL ? "" : str_sanitize(orig_msgid, 80), e rror); | |||
return -1; | return -1; | |||
} | } | |||
e_debug(mail->event, "Sending a rejection to <%s>: %s", | e_debug(mail->event, "Sending a rejection to <%s>: %s", | |||
smtp_address_encode(return_addr), | smtp_address_encode(return_addr), | |||
str_sanitize(reason, 512)); | str_sanitize(reason, 512)); | |||
vtable = get_var_expand_table(mail, recipient, reason); | vtable = get_var_expand_table(mail, recipient, reason); | |||
i_zero(&ssl_set); | ||||
mail_user_init_ssl_client_settings(user, &ssl_set); | mail_user_init_ssl_client_settings(user, &ssl_set); | |||
i_zero(&smtp_input); | i_zero(&smtp_input); | |||
smtp_input.ssl = &ssl_set; | smtp_input.ssl = &ssl_set; | |||
smtp_submit = smtp_submit_init_simple(&smtp_input, ctx->smtp_set, NULL); | smtp_submit = smtp_submit_init_simple(&smtp_input, ctx->smtp_set, NULL); | |||
smtp_submit_add_rcpt(smtp_submit, return_addr); | smtp_submit_add_rcpt(smtp_submit, return_addr); | |||
output = smtp_submit_send(smtp_submit); | output = smtp_submit_send(smtp_submit); | |||
msgid = mail_deliver_get_new_message_id(ctx); | msgid = mail_deliver_get_new_message_id(ctx); | |||
boundary = t_strdup_printf("%s/%s", my_pid, user->set->hostname); | boundary = t_strdup_printf("%s/%s", my_pid, user->set->hostname); | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 0 lines changed or added |