From: Timo Sirainen Date: Wed, 19 Jan 2022 23:09:58 +0000 (+0100) Subject: submission: Change kick log message to "Server shutting down" X-Git-Tag: 2.4.0~4529 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c4294ed0fc4ca746839f4c6c2fafc249d449f2f7;p=thirdparty%2Fdovecot%2Fcore.git submission: Change kick log message to "Server shutting down" This way it's the same as with imap and pop3. --- diff --git a/src/submission/submission-client.c b/src/submission/submission-client.c index 123087bded..70ac34e8d6 100644 --- a/src/submission/submission-client.c +++ b/src/submission/submission-client.c @@ -496,7 +496,7 @@ void client_add_extra_capability(struct client *client, const char *capability, void client_kick(struct client *client) { mail_storage_service_io_activate_user(client->service_user); - client_destroy(&client, "4.3.2", "Shutting down"); + client_destroy(&client, "4.3.2", "Server shutting down"); } void clients_destroy_all(void)