Re: [PATCH] imap drive: Add support for specifying cipher string used for ssl connection

2019-11-10 Thread Oswald Buddenhagen
On Sat, Nov 09, 2019 at 07:47:55PM +0100, Jaroslav Suchanek wrote: --- a/src/drv_imap.c +++ b/src/drv_imap.c @@ -1625,6 +1625,11 @@ imap_free_store( store_t *gctx ) imap_set_bad_callback( gctx, imap_cancel_unowned, gctx ); gctx->next = unowned; unowned = gctx; + +#ifdef HA

[PATCH] imap drive: Add support for specifying cipher string used for ssl connection

2019-11-09 Thread Jaroslav Suchanek
Some distributions (e.g. Fedora) added support for system wide crypto policies. This is supported in most common crypto libraries including OpenSSL. Applications can override this policy using their own cipher string. This commit add support for specifying the cipher string in mbsync configuration.