isync

mailbox synchronization program
git clone https://git.code.sf.net/p/isync/isync
Log | Files | Refs | README | LICENSE

commit fbfcfea5dc1b8fd219d80d0ca6f105eeededdac3
parent 3363ad0f11bd33401ba6dbbec17cf497de7dab4b
Author: Oswald Buddenhagen <ossi@users.sf.net>
Date:   Sat, 23 Mar 2013 09:59:58 +0100

fix cram-md5 authentication

we need to send a newline after the response for imap to grok it.

Diffstat:
Msrc/drv_imap.c | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/drv_imap.c b/src/drv_imap.c @@ -1209,7 +1209,9 @@ do_cram_auth( imap_store_t *ctx, struct imap_cmd *cmdp, const char *prompt ) printf( ">+> %s\n", resp ); fflush( stdout ); } - return socket_write( &ctx->conn, resp, l, GiveOwn ); + if (socket_write( &ctx->conn, resp, l, GiveOwn ) < 0) + return -1; + return socket_write( &ctx->conn, "\r\n", 2, KeepOwn ); } #endif