dovecot-1.2: Changed error messages.

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


details:   http://hg.dovecot.org/dovecot-1.2/rev/86477dd0b276
changeset: 8520:86477dd0b276
user:      Timo Sirainen <tss at iki.fi>
date:      Sat Dec 06 07:47:21 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 f456043e10d3 -r 86477dd0b276 src/master/mail-process.c
--- a/src/master/mail-process.c	Sat Dec 06 00:21:07 2008 +0200
+++ b/src/master/mail-process.c	Sat Dec 06 07:47:21 2008 +0200
@@ -624,14 +624,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;
 		}
 	}
@@ -656,7 +658,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