diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-02-11 19:18:41 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-02-11 19:18:41 +0000 |
commit | 2d69b9b093b7aaf9b2d2b97317fc54d0bd6813b7 (patch) | |
tree | d69e2f7ca90d0774483bb506901c2ec043c5fdea /cram.c | |
parent | d9285e0f40c27f0808460744cb2ade53ba0a0599 (diff) | |
download | fetchmail-2d69b9b093b7aaf9b2d2b97317fc54d0bd6813b7.tar.gz fetchmail-2d69b9b093b7aaf9b2d2b97317fc54d0bd6813b7.tar.bz2 fetchmail-2d69b9b093b7aaf9b2d2b97317fc54d0bd6813b7.zip |
CRAM-MD5 IMAP works.
svn path=/trunk/; revision=3061
Diffstat (limited to 'cram.c')
-rw-r--r-- | cram.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -124,7 +124,9 @@ int do_cram_md5 (int sock, struct query *ctl) /* ship the authentication back, accept the server's responses */ /* PMDF5.2 IMAP has a bug that requires this to be a single write */ + suppress_tags = TRUE; result = gen_transact(sock, buf1, sizeof(buf1)); + suppress_tags = FALSE; if (result) return(result); else |