summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas McGuire <mcguire@kde.org>2009-04-17 17:28:34 +0000
committerMichele Calgaro <michele.calgaro@yahoo.it>2019-04-23 23:13:05 +0900
commitbf1eec6a25ee812dfc143312d974e71a284369c4 (patch)
tree698061eea39665ce870ccaccd2a699a7d33e78c2
parentbf6ed997cfaebe2d8fcf9d36138dae5e9ffa05a6 (diff)
downloadtdepim-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.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tdeioslave/imap4/imap4.cc b/tdeioslave/imap4/imap4.cc
index 87a6b9c4..7dea2c5d 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")