dovecot-1.1: Changed error messages.

dovecot at dovecot.org dovecot at dovecot.org
Sat Dec 6 07:47:08 EET 2008


details:   http://hg.dovecot.org/dovecot-1.1/rev/caaed84ae7df
changeset: 8032:caaed84ae7df
user:      Timo Sirainen <tss at iki.fi>
date:      Sat Dec 06 07:47:02 2008 +0200
description:
Changed error messages.

diffstat:

1 file changed, 5 insertions(+), 3 deletions(-)
src/master/mail-process.c |    8 +++++---

diffs (31 lines):

diff -r 714aee395fac -r caaed84ae7df src/master/mail-process.c
--- a/src/master/mail-process.c	Fri Dec 05 21:12:58 2008 +0200
+++ b/src/master/mail-process.c	Sat Dec 06 07:47:02 2008 +0200
@@ -615,14 +615,16 @@ create_mail_process(enum process_type pr
 	if (uid == (uid_t)-1) {
 		uid = set->mail_uid_t;
 		if (uid == (uid_t)-1) {
-			i_error("User %s is missing UID (set mail_uid)", user);
+			i_error("User %s is missing UID (see mail_uid setting)",
+				user);
 			return MASTER_LOGIN_STATUS_INTERNAL_ERROR;
 		}
 	}
 	if (gid == (gid_t)-1) {
 		gid = set->mail_gid_t;
 		if (gid == (gid_t)-1) {
-			i_error("User %s is missing GID (set mail_gid)", user);
+			i_error("User %s is missing GID (see mail_gid setting)",
+				user);
 			return MASTER_LOGIN_STATUS_INTERNAL_ERROR;
 		}
 	}
@@ -647,7 +649,7 @@ create_mail_process(enum process_type pr
 	if (*chroot_dir != '\0') {
 		if (!validate_chroot(set, chroot_dir)) {
 			i_error("Invalid chroot directory '%s' (user %s) "
-				"(see valid_chroot_dirs in config file)",
+				"(see valid_chroot_dirs setting)",
 				chroot_dir, user);
 			return MASTER_LOGIN_STATUS_INTERNAL_ERROR;
 		}


More information about the dovecot-cvs mailing list