From 56b13d0e6ab03b6ea20c23cdf84577194db40af3 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Tue, 19 Jan 2016 02:26:24 +0200 Subject: [PATCH] pop3c: Improve authentication debug log messages a bit. --- src/lib-storage/index/pop3c/pop3c-client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib-storage/index/pop3c/pop3c-client.c b/src/lib-storage/index/pop3c/pop3c-client.c index 6e7ff27bc7..be7e0b014f 100644 --- a/src/lib-storage/index/pop3c/pop3c-client.c +++ b/src/lib-storage/index/pop3c/pop3c-client.c @@ -281,10 +281,10 @@ static void pop3c_client_authenticate1(struct pop3c_client *client) if (client->set.debug) { if (set->master_user == NULL) { - i_debug("pop3c(%s): Authenticating as %s", + i_debug("pop3c(%s): Authenticating as '%s' (with USER+PASS)", client->set.host, set->username); } else { - i_debug("pop3c(%s): Authenticating as %s for user %s", + i_debug("pop3c(%s): Authenticating as master user '%s' for user '%s' (with SASL PLAIN)", client->set.host, set->master_user, set->username); }