fix cram-md5 authentication
we need to send a newline after the response for imap to grok it.
This commit is contained in:
parent
3363ad0f11
commit
fbfcfea5dc
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user