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 22:44:54 +0900
commitc467da63998be9accf09949f9bb2d229aba85bb4 (patch)
tree6f15bd2a18d1870608194b1ce1c597c26bbcdae5
parent095bc95d315f6c2585e66fe49870cebc1e8870af (diff)
downloadtdepim-c467da63998be9accf09949f9bb2d229aba85bb4.tar.gz
tdepim-c467da63998be9accf09949f9bb2d229aba85bb4.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>
-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 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")