diff options
author | Thomas McGuire <mcguire@kde.org> | 2009-04-17 17:28:34 +0000 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2019-04-23 23:13:05 +0900 |
commit | bf1eec6a25ee812dfc143312d974e71a284369c4 (patch) | |
tree | 698061eea39665ce870ccaccd2a699a7d33e78c2 | |
parent | bf6ed997cfaebe2d8fcf9d36138dae5e9ffa05a6 (diff) | |
download | tdepim-bf1eec6a25ee812dfc143312d974e71a284369c4.tar.gz tdepim-bf1eec6a25ee812dfc143312d974e71a284369c4.zip |
Make the folder assurance read-only.
Patch by Szokovacs Robert <szo at szo dot hu>, thanks!
BUG: 144035
Cherry-picked from: 243dfe72a65603f6fdc36b78585cb21125e88c7d
Signed-off-by: Luke Dashjr <luke-jr+git@utopios.org>
(cherry picked from commit c467da63998be9accf09949f9bb2d229aba85bb4)
-rw-r--r-- | tdeioslave/imap4/imap4.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdeioslave/imap4/imap4.cc b/tdeioslave/imap4/imap4.cc index 87a6b9c43..7dea2c5de 100644 --- a/tdeioslave/imap4/imap4.cc +++ b/tdeioslave/imap4/imap4.cc @@ -1553,7 +1553,7 @@ IMAP4Protocol::specialSearchCommand( TQDataStream& stream ) stream >> _url; TQString aBox, aSequence, aLType, aSection, aValidity, aDelimiter, aInfo; parseURL (_url, aBox, aSection, aLType, aSequence, aValidity, aDelimiter, aInfo); - if (!assureBox(aBox, false)) return; + if (!assureBox(aBox, true)) return; imapCommand *cmd = doCommand (imapCommand::clientSearch( aSection )); if (cmd->result () != "OK") |