blob: d9ea9521f8c1978c8b0d1adb8984c45729972f39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/**
* @file operator-noop-pending.cc
* @brief Operator for the NOOP command, with pending extension
* @author Andreas Aardal Hanssen
* @date 2002-2005
*/
#include "depot.h"
#include "mailbox.h"
#include "operators.h"
#include "pendingupdates.h"
#include "recursivedescent.h"
#include "session.h"
#include <iostream>
#include <string>
using namespace Binc;
NoopPendingOperator::NoopPendingOperator() : NoopOperator() {}
NoopPendingOperator::~NoopPendingOperator() {}
Operator::ProcessResult NoopPendingOperator::process(Depot &depot, Request &command)
{
Mailbox *mailbox = depot.getSelected();
if (mailbox) {
pendingUpdates(mailbox,
PendingUpdates::EXPUNGE | PendingUpdates::EXISTS | PendingUpdates::RECENT
| PendingUpdates::FLAGS,
true);
}
return Operator::ProcessResult::OK;
}
|