From: Timo Sirainen Date: Sun, 5 Oct 2008 12:39:37 +0000 (+0300) Subject: Mention mail_max_userip_connections setting in the log message if the limit is exceeded. X-Git-Tag: 1.2.alpha2~15 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a45e15b7333146588729ff40569dd50b4eb9dfdd;p=thirdparty%2Fdovecot%2Fcore.git Mention mail_max_userip_connections setting in the log message if the limit is exceeded. --HG-- branch : HEAD --- diff --git a/src/login-common/sasl-server.c b/src/login-common/sasl-server.c index 0ab48d985e..914a3bccf2 100644 --- a/src/login-common/sasl-server.c +++ b/src/login-common/sasl-server.c @@ -51,7 +51,8 @@ master_callback(struct client *client, const struct master_login_reply *reply) case MASTER_LOGIN_STATUS_INTERNAL_ERROR: break; case MASTER_LOGIN_STATUS_MAX_CONNECTIONS: - data = "Maximum number of connections from user+IP exceeded"; + data = "Maximum number of connections from user+IP exceeded " + "(mail_max_userip_connections)"; break; } client->mail_pid = reply->mail_pid;