From: Stephan Bosch Date: Sat, 12 May 2018 10:15:07 +0000 (+0200) Subject: lmtp: Properly apply the login_greeting setting. X-Git-Tag: 2.3.2.rc1~104 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2d207d296cb48b3c2b80e10635724ecf6b41370b;p=thirdparty%2Fdovecot%2Fcore.git lmtp: Properly apply the login_greeting setting. It got ignored during migration of lmtp service to lib-smtp. --- diff --git a/src/lmtp/client.c b/src/lmtp/client.c index c4075f6f47..2561990073 100644 --- a/src/lmtp/client.c +++ b/src/lmtp/client.c @@ -156,6 +156,7 @@ struct client *client_create(int fd_in, int fd_out, if (!conn->ssl && master_service_ssl_is_enabled(master_service)) lmtp_set.capabilities |= SMTP_CAPABILITY_STARTTLS; lmtp_set.hostname = client->unexpanded_lda_set->hostname; + lmtp_set.login_greeting = client->lmtp_set->login_greeting; lmtp_set.rcpt_domain_optional = TRUE; lmtp_set.max_client_idle_time_msecs = CLIENT_IDLE_TIMEOUT_MSECS; lmtp_set.rawlog_dir = client->lmtp_set->lmtp_rawlog_dir;