From eecfb5f90cb0d9e67876b92f40e92143fdfec523 Mon Sep 17 00:00:00 2001 From: Javier Date: Wed, 26 Aug 2026 13:56:15 +0200 Subject: [PATCH] build: disable mailio/Boost by default (USE_MAILIO_IMAP=OFF) Avoids broken thirdparty/boost and missing OpenSSL on Windows. Native ImapSynchronizer works without mailio. Enable with -DUSE_MAILIO_IMAP=ON when Boost/OpenSSL are properly installed. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c856178..61a2633 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON) include(FetchContent) # Option to use mailio-based IMAP (OFF by default to avoid Boost dependency issues) -option(USE_MAILIO_IMAP "Use mailio-based IMAP synchronizer (requires Boost)" ON) +option(USE_MAILIO_IMAP "Use mailio-based IMAP synchronizer (requires Boost)" OFF) if (USE_MAILIO_IMAP) # Use pre-built mailio and Boost from thirdparty/