Bincimap 2.0.16
Easy Imapping
Loading...
Searching...
No Matches
operator-noop-pending.cc
Go to the documentation of this file.
1
7#include <string>
8#include <iostream>
9
10#include "mailbox.h"
11#include "pendingupdates.h"
12
13#include "recursivedescent.h"
14#include "session.h"
15#include "depot.h"
16#include "operators.h"
17
18using namespace ::std;
19using namespace Binc;
20
21//----------------------------------------------------------------------
23{
24}
25
26//----------------------------------------------------------------------
28{
29}
30
31//----------------------------------------------------------------------
33 Request &command)
34{
35 Mailbox *mailbox = depot.getSelected();
36 if (mailbox) {
40 | PendingUpdates::FLAGS, true);
41 }
42
43 return OK;
44}
virtual Mailbox * getSelected(void) const
Definition: depot.cc:183
ProcessResult process(Depot &, Request &)
Declaration of the Mailbox class (Mailbox is logical container)
Definition: bincimapd.cc:9
bool pendingUpdates(Mailbox *, int type, bool rescan, bool showAll=false, bool forceScan=false, bool uidfetchflags=false)
Declaration of all operators.
Declaration of a recursive descent IMAP command parser.