From: helge Date: Wed, 29 Sep 2004 14:57:06 +0000 (+0000) Subject: minor log enh X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f021b24af40b15a01a2133d659213681a394862;p=scalable-opengroupware.org minor log enh git-svn-id: http://svn.opengroupware.org/SOGo/trunk@334 d1b88da0-ebda-0310-925b-ed51d893ca5b --- diff --git a/SOGo/SoObjects/Mailer/ChangeLog b/SOGo/SoObjects/Mailer/ChangeLog index a09246c8..158de732 100644 --- a/SOGo/SoObjects/Mailer/ChangeLog +++ b/SOGo/SoObjects/Mailer/ChangeLog @@ -1,3 +1,7 @@ +2004-09-29 Helge Hess + + * SOGoMailManager.m: minor improvement to error logging (v0.9.15) + 2004-09-29 Helge Hess * v0.9.14 diff --git a/SOGo/SoObjects/Mailer/SOGoMailManager.m b/SOGo/SoObjects/Mailer/SOGoMailManager.m index 09b76747..be260354 100644 --- a/SOGo/SoObjects/Mailer/SOGoMailManager.m +++ b/SOGo/SoObjects/Mailer/SOGoMailManager.m @@ -143,7 +143,8 @@ static NSTimeInterval PoolScanInterval = 5 * 60; result = [client login:[_url user] password:_pwd]; if (![[result valueForKey:@"result"] boolValue]) { - [self logWithFormat:@"ERROR: IMAP4 login failed!"]; + [self logWithFormat:@"ERROR: IMAP4 login failed! (%@,pwd=%s,%@)", + [_url absoluteString], [_pwd length] > 0 ? "yes" : "no", client]; return nil; } diff --git a/SOGo/SoObjects/Mailer/Version b/SOGo/SoObjects/Mailer/Version index cc039aca..cf9e5c12 100644 --- a/SOGo/SoObjects/Mailer/Version +++ b/SOGo/SoObjects/Mailer/Version @@ -1,3 +1,3 @@ # $Id$ -SUBMINOR_VERSION:=14 +SUBMINOR_VERSION:=15