dovecot-1.2: If we reached max_mail_processes limit, mention the...
    dovecot at dovecot.org 
    dovecot at dovecot.org
       
    Wed Oct  1 16:08:01 EEST 2008
    
    
  
details:   http://hg.dovecot.org/dovecot-1.2/rev/1155c1f7fed8
changeset: 8222:1155c1f7fed8
user:      Timo Sirainen <tss at iki.fi>
date:      Wed Oct 01 16:07:57 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 f6ef01a25db9 -r 1155c1f7fed8 src/master/mail-process.c
--- a/src/master/mail-process.c	Mon Sep 29 12:58:14 2008 +0300
+++ b/src/master/mail-process.c	Wed Oct 01 16:07:57 2008 +0300
@@ -545,7 +545,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