summaryrefslogtreecommitdiffstats
path: root/messagingframework.pro
diff options
context:
space:
mode:
authorDon Sanders <don.sanders@nokia.com>2011-10-23 17:34:39 +0300
committerDon Sanders <don.sanders@nokia.com>2011-10-23 17:34:39 +0300
commite15e08c3cbd51354cecfe504a040b5313f660723 (patch)
tree7abec1360842985ede2224ebe23c7e1423de4a23 /messagingframework.pro
parent0bf29856e0294033efbcf4a11f0093af54ad9b51 (diff)
Add support for IMAP COMPRESS (RFC4978) using zlib.
Should speed up sync for servers that do not support the qresync capability, esp. on reconnect when getting flag changes. Gmail recently added support for compress. RFC4978 indicates retrieval of encoded (e.g. base64) attachments, and uploading attachments of mails into draft/sent should be sped up more if IMAP BINARY extension is utilized to UID FETCH BINARY instead of UID FETCH BODY. Currently only supported on unix (requires zlib & pkg_config).
Diffstat (limited to 'messagingframework.pro')
-rw-r--r--messagingframework.pro4
1 files changed, 4 insertions, 0 deletions
diff --git a/messagingframework.pro b/messagingframework.pro
index 6aeb4bd4..55ae11c7 100644
--- a/messagingframework.pro
+++ b/messagingframework.pro
@@ -42,3 +42,7 @@ dox.depends =
QMAKE_EXTRA_TARGETS += dox
include(doc/src/doc.pri)
+
+!unix {
+ warning("IMAP COMPRESS capability is currently not supported on non unix platforms")
+}