blob: b1cf7b33778b22f812be7245e0b00880de73ff47 (
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
|
/**
* @file bincimap-updatecache.cc
* @brief Implementation of the bincimap-updatecache tool.
* @author Andreas Aardal Hanssen
* @date 2002-2005
*/
#include "depot.h"
#include "mailbox.h"
#include "maildir.h"
#include "session.h"
using namespace Binc;
int main(int argc, char *argv[])
{
if (argc < 2) {
fprintf(stderr, "usage: %s <directory> ", argv[0]);
fprintf(stderr, "Updates the cache file in <directory>.\n");
fprintf(stderr, "Use export $DEPOT=\"IMAPdir\" to enable updates for this type.\n");
return 1;
}
Session &session = Session::getInstance();
DepotFactory &depotfactory = DepotFactory::getInstance();
depotfactory.assign(new IMAPdirDepot());
depotfactory.assign(new MaildirPPDepot());
std::string depottype = session.getEnv("DEPOT");
if (depottype == "") depottype = "Maildir++";
Depot *depot;
if ((depot = depotfactory.get(depottype)) == nullptr) {
fprintf(stderr,
"Found no Depot for \"%s\". Please check "
" your configurations file under the Mailbox section.\n",
depottype.c_str());
return 1;
}
depot->assign(new Maildir());
depot->setDefaultType("Maildir");
Mailbox *mailbox = depot->get(depot->filenameToMailbox(argv[1]));
if (!mailbox) {
fprintf(stderr, "selecting mailbox failed: %s\n", depot->getLastError().c_str());
return 1;
}
if (!mailbox->selectMailbox(argv[1], argv[1])) {
fprintf(stderr, "selecting mailbox failed: %s\n", mailbox->getLastError().c_str());
return 1;
}
mailbox->closeMailbox();
return 0;
}
|