Skip to content

Commit

Permalink
[qmf] Change IMAP4 default for auto download small attachments.
Browse files Browse the repository at this point in the history
This commit turns off auto download of small attachments. Downloading small attachments without user permission is not a
desired behavior, some emails contain logs or small images that will be always download without user permission in this case.
upstream commit: https://qt.gitorious.org/qt-labs/messagingframework/commit/a6edd8df6fbaf6cf1daf0f1eb448b0905a619d5c
  • Loading branch information
Valério Valério committed Apr 8, 2015
1 parent d3ec964 commit 14903b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qmf/src/plugins/messageservices/imap/imapconfiguration.cpp
Expand Up @@ -90,7 +90,7 @@ bool ImapConfiguration::canDeleteMail() const

bool ImapConfiguration::downloadAttachments() const
{
return (value("downloadAttachments", "1").toInt() != 0);
return (value("downloadAttachments", "0").toInt() != 0);
}

bool ImapConfiguration::isAutoDownload() const
Expand Down

0 comments on commit 14903b4

Please sign in to comment.