dovecot-1.1: If we reached max_mail_processes limit, mention the...

dovecot at dovecot.org dovecot at dovecot.org
Wed Oct 1 16:07:42 EEST 2008


details:   http://hg.dovecot.org/dovecot-1.1/rev/7ff94d525c10
changeset: 7898:7ff94d525c10
user:      Timo Sirainen <tss at iki.fi>
date:      Wed Oct 01 16:07:38 2008 +0300
description:
If we reached max_mail_processes limit, mention the setting in the error message.

diffstat:

1 file changed, 2 insertions(+), 1 deletion(-)
src/master/mail-process.c |    3 ++-

diffs (13 lines):

diff -r 9d5639f6ce9a -r 7ff94d525c10 src/master/mail-process.c
--- a/src/master/mail-process.c	Thu Sep 25 19:01:18 2008 +0300
+++ b/src/master/mail-process.c	Wed Oct 01 16:07:38 2008 +0300
@@ -543,7 +543,8 @@ create_mail_process(enum process_type pr
 		 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;
 	}
 


More information about the dovecot-cvs mailing list