diff options
-rw-r--r-- | camel/ChangeLog | 6 | ||||
-rw-r--r-- | camel/camel-remote-store.c | 4 |
2 files changed, 9 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 2c969bf6e5..54feaca1f6 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,9 @@ +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 :-) + 2001-08-28 Jeffrey Stedfast <fejj@ximian.com> * camel-tcp-stream-ssl.c (ssl_bad_cert): If the user accepts the 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); } |