aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-remote-store.c
diff options
context:
space:
mode:
authorPeter Williams <peterw@ximian.com>2001-08-29 05:54:12 +0800
committerPeter Williams <peterw@src.gnome.org>2001-08-29 05:54:12 +0800
commit2732a931ec6b9acdc4a8cbf6e0a2aca769f34475 (patch)
tree16684013d555c21755711e7a851687d429793461 /camel/camel-remote-store.c
parentfb7ab0fcbe4e9911f2a0936b4b5cfd4cacccaaf0 (diff)
downloadgsoc2013-evolution-2732a931ec6b9acdc4a8cbf6e0a2aca769f34475.tar
gsoc2013-evolution-2732a931ec6b9acdc4a8cbf6e0a2aca769f34475.tar.gz
gsoc2013-evolution-2732a931ec6b9acdc4a8cbf6e0a2aca769f34475.tar.bz2
gsoc2013-evolution-2732a931ec6b9acdc4a8cbf6e0a2aca769f34475.tar.lz
gsoc2013-evolution-2732a931ec6b9acdc4a8cbf6e0a2aca769f34475.tar.xz
gsoc2013-evolution-2732a931ec6b9acdc4a8cbf6e0a2aca769f34475.tar.zst
gsoc2013-evolution-2732a931ec6b9acdc4a8cbf6e0a2aca769f34475.zip
Don't reveal the user's IMAP password if their server supports
2001-08-28 Peter Williams <peterw@ximian.com> * camel-remote-store.c (remote_send_string): Don't reveal the user's IMAP password if their server supports LITERALPLUS. Also add some more dashes to make it line up nicely :-) svn path=/trunk/; revision=12503
Diffstat (limited to 'camel/camel-remote-store.c')
-rw-r--r--camel/camel-remote-store.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/camel/camel-remote-store.c b/camel/camel-remote-store.c
index c3a6644131..dffea34808 100644
--- a/camel/camel-remote-store.c
+++ b/camel/camel-remote-store.c
@@ -340,7 +340,9 @@ remote_send_string (CamelRemoteStore *store, CamelException *ex, char *fmt, va_l
if (strncmp (cmdbuf, "PASS ", 5) == 0)
fprintf (stderr, "sending : PASS xxxx\n");
else if (strstr (cmdbuf, "LOGIN \""))
- fprintf (stderr, "sending : ---- LOGIN \"xxxx\" \"xxxx\"\n");
+ fprintf (stderr, "sending : ------ LOGIN \"xxxx\" \"xxxx\"\n");
+ else if (strstr (cmdbuf, "LOGIN {"))
+ fprintf (stderr, "sending : ------ LOGIN {N+} ....\n");
else
fprintf (stderr, "sending : %s", cmdbuf);
}