From: Timo Sirainen Date: Thu, 6 Mar 2003 23:31:43 +0000 (+0200) Subject: Log vpop_user + vpop_domain too. They may be different from original X-Git-Tag: 1.1.alpha1~4821 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1b1595b23dea4343e8f9b65e390b7ecd03792b1d;p=thirdparty%2Fdovecot%2Fcore.git Log vpop_user + vpop_domain too. They may be different from original username after parse_email().. --HG-- branch : HEAD --- diff --git a/src/auth/userdb-vpopmail.c b/src/auth/userdb-vpopmail.c index 0359e10432..f06bd6bdc6 100644 --- a/src/auth/userdb-vpopmail.c +++ b/src/auth/userdb-vpopmail.c @@ -34,8 +34,10 @@ struct vqpasswd *vpopmail_lookup_vqp(const char *user, vpw = vauth_getpw(vpop_user, vpop_domain); if (vpw == NULL) { - if (verbose) - i_info("vpopmail(%s): unknown user", user); + if (verbose) { + i_info("vpopmail(%s): unknown user (%s@%s)", + user, vpop_user, vpop_domain); + } return NULL; }