From 235b8cb38214fe1ec919fce8701737d7b944c6de Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Tue, 1 Mar 2016 00:08:45 +0100 Subject: Support for mail replies A template message is generated based on the input message, including appropriate recepients and quoted text. Encoding and and options are mostly hardcoded still, and there might be one or the other crash with HTML mails. Also image/attachment support is incomplete. --- framework/mail/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'framework/mail/CMakeLists.txt') diff --git a/framework/mail/CMakeLists.txt b/framework/mail/CMakeLists.txt index 29fda0e4..822b2981 100644 --- a/framework/mail/CMakeLists.txt +++ b/framework/mail/CMakeLists.txt @@ -13,6 +13,7 @@ set(mailplugin_SRCS composer.cpp messageparser.cpp mailtransport.cpp + mailtemplates.cpp retriever.cpp ) add_definitions(-DMAIL_DATA_DIR="${CMAKE_CURRENT_SOURCE_DIR}/data") @@ -23,7 +24,7 @@ include_directories(${CURL_INCLUDE_DIRS}) add_library(mailplugin SHARED ${mailplugin_SRCS}) -qt5_use_modules(mailplugin Core Quick Qml) +qt5_use_modules(mailplugin Core Quick Qml WebKitWidgets) target_link_libraries(mailplugin actionplugin settingsplugin sink KF5::Otp KF5::Codecs ${CURL_LIBRARIES}) -- cgit v1.2.3