From: Timo Sirainen Date: Wed, 1 Oct 2008 13:07:57 +0000 (+0300) Subject: If we reached max_mail_processes limit, mention the setting in the error message. X-Git-Tag: 1.2.alpha2~26 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6b5edb095588c3f773ff8cba6a52ab9aa0e72de3;p=thirdparty%2Fdovecot%2Fcore.git If we reached max_mail_processes limit, mention the setting in the error message. --HG-- branch : HEAD --- diff --git a/src/master/mail-process.c b/src/master/mail-process.c index 3503cdab36..73d7ba16ed 100644 --- a/src/master/mail-process.c +++ b/src/master/mail-process.c @@ -545,7 +545,8 @@ create_mail_process(enum process_type process_type, struct settings *set, process_type == PROCESS_TYPE_POP3); if (mail_process_count == set->max_mail_processes) { - i_error("Maximum number of mail processes exceeded"); + i_error("Maximum number of mail processes exceeded " + "(see max_mail_processes setting)"); return MASTER_LOGIN_STATUS_INTERNAL_ERROR; }