blob: 1d3a69a1e80de2d87f6b7cadb7e48c63c47bd69e (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
/**
* @file operator-rename.cc
* @brief Implementation of the RENAME command.
*/
#include "convert.h"
#include "depot.h"
#include "mailbox.h"
#include "operators.h"
#include "recursivedescent.h"
#include "session.h"
#include <iostream>
#include <string>
#include <dirent.h>
#include <sys/stat.h>
#include <sys/types.h>
using namespace Binc;
using std::string;
RenameOperator::RenameOperator(void) {}
RenameOperator::~RenameOperator(void) {}
const string RenameOperator::getName(void) const
{
return "RENAME";
}
int RenameOperator::getState(void) const
{
return Session::AUTHENTICATED | Session::SELECTED;
}
Operator::ProcessResult RenameOperator::process(Depot &depot, Request &command)
{
Session &session = Session::getInstance();
const string &srcmailbox = command.getMailbox();
const string &canonmailbox = toCanonMailbox(srcmailbox);
const string &canondestmailbox = toCanonMailbox(command.getNewMailbox());
// renaming INBOX should actually create the destination mailbox,
// move over all the messages and then leave INBOX empty.
if (canonmailbox == "INBOX") {
session.setLastError("Sorry, renaming INBOX is not yet supported"
" by this IMAP server. Try copying the messages"
" instead");
return NO;
}
if (canondestmailbox == "INBOX") {
session.setLastError("It is not allowed to rename a mailbox to INBOX");
return NO;
}
if (depot.renameMailbox(canonmailbox, canondestmailbox))
return OK;
else
return NO;
}
Operator::ParseResult RenameOperator::parse(Request &c_in) const
{
Session &session = Session::getInstance();
if (c_in.getUidMode()) return REJECT;
Operator::ParseResult res;
if ((res = expectSPACE()) != ACCEPT) {
session.setLastError("Expected SPACE after RENAME");
return res;
}
string mailbox;
if ((res = expectMailbox(mailbox)) != ACCEPT) {
session.setLastError("Expected mailbox after RENAME SPACE");
return res;
}
if ((res = expectSPACE()) != ACCEPT) {
session.setLastError("Expected SPACE after RENAME SPACE mailbox");
return res;
}
string newmailbox;
if ((res = expectMailbox(newmailbox)) != ACCEPT) {
session.setLastError("Expected mailbox after RENAME SPACE"
" mailbox SPACE");
return res;
}
if ((res = expectCRLF()) != ACCEPT) {
session.setLastError("Expected CRLF after RENAME SPACE"
" mailbox SPACE mailbox");
return res;
}
session.mailboxchanges = true;
c_in.setName("RENAME");
c_in.setMailbox(mailbox);
c_in.setNewMailbox(newmailbox);
return ACCEPT;
}
|