diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-06-03 11:26:08 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-06-03 11:26:08 +0200 |
commit | 672bbe1f10be056c1170bc227e16060edeff2481 (patch) | |
tree | 81cae3afea0797be17ef9fbd71213e1fcb31609d /examples/imapresource/imapserverproxy.h | |
parent | 709f24f25b6c22b1eafc323855ea166034110e0b (diff) | |
download | sink-672bbe1f10be056c1170bc227e16060edeff2481.tar.gz sink-672bbe1f10be056c1170bc227e16060edeff2481.zip |
Implemented imap flag changes.
Diffstat (limited to 'examples/imapresource/imapserverproxy.h')
-rw-r--r-- | examples/imapresource/imapserverproxy.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/imapresource/imapserverproxy.h b/examples/imapresource/imapserverproxy.h index 3afeee5..05409c5 100644 --- a/examples/imapresource/imapserverproxy.h +++ b/examples/imapresource/imapserverproxy.h | |||
@@ -69,6 +69,9 @@ public: | |||
69 | KAsync::Job<void> select(const QString &mailbox); | 69 | KAsync::Job<void> select(const QString &mailbox); |
70 | KAsync::Job<qint64> append(const QString &mailbox, const QByteArray &content, const QList<QByteArray> &flags = QList<QByteArray>(), const QDateTime &internalDate = QDateTime()); | 70 | KAsync::Job<qint64> append(const QString &mailbox, const QByteArray &content, const QList<QByteArray> &flags = QList<QByteArray>(), const QDateTime &internalDate = QDateTime()); |
71 | KAsync::Job<void> store(const KIMAP::ImapSet &set, const QList<QByteArray> &flags); | 71 | KAsync::Job<void> store(const KIMAP::ImapSet &set, const QList<QByteArray> &flags); |
72 | KAsync::Job<void> storeFlags(const KIMAP::ImapSet &set, const QList<QByteArray> &flags); | ||
73 | KAsync::Job<void> addFlags(const KIMAP::ImapSet &set, const QList<QByteArray> &flags); | ||
74 | KAsync::Job<void> removeFlags(const KIMAP::ImapSet &set, const QList<QByteArray> &flags); | ||
72 | KAsync::Job<void> create(const QString &mailbox); | 75 | KAsync::Job<void> create(const QString &mailbox); |
73 | KAsync::Job<void> rename(const QString &mailbox, const QString &newMailbox); | 76 | KAsync::Job<void> rename(const QString &mailbox, const QString &newMailbox); |
74 | KAsync::Job<void> remove(const QString &mailbox); | 77 | KAsync::Job<void> remove(const QString &mailbox); |