Bincimap 2.0.16
Easy Imapping
Loading...
Searching...
No Matches
session-initialize-bincimap-up.cc
Go to the documentation of this file.
1
7#include <syslog.h>
8#include <ctype.h>
9
10#include "broker.h"
11#include "convert.h"
12#include "globals.h"
13#include "iodevice.h"
14#include "iofactory.h"
15#include "multilogdevice.h"
16#include "syslogdevice.h"
17#include "stdiodevice.h"
18#include "session.h"
19#include "tools.h"
20
21#include <fcntl.h>
22#include <string>
23#include <map>
24
25using namespace ::std;
26using namespace Binc;
27
28extern char **environ;
29
30//----------------------------------------------------------------------
31bool Session::initialize(int argc, char *argv[])
32{
33 IOFactory &ioFactory = IOFactory::getInstance();
34
35 IODevice *stdioDevice = new StdIODevice(IODevice::IsEnabled);
37 stdioDevice->setMaxOutputBufferSize(TRANSFER_BUFFER_SIZE);
38 ioFactory.addDevice(stdioDevice);
39
40 Session &session = Session::getInstance();
41
43
44 // Read command line arguments
45 if (!session.parseCommandLine(argc, argv))
46 return false;
47
48 // Show help if asked for it
49 if (session.command.help) {
50 printf("%s\n", session.args.usageString().c_str());
51 return false;
52 }
53
54 // Show version if asked for it
55 if (session.command.version) {
56 printf("Binc IMAP v" BINC_VERSION"\n");
57 return false;
58 }
59
60 // Let the command line args override the global settings.
61 session.assignCommandLineArgs();
62
63 // for log input
64 string ip = getenv("TCP6REMOTEIP") ? getenv("TCP6REMOTEIP") :
65 getenv("TCPREMOTEIP") ? getenv("TCPREMOTEIP") : "?";
66 session.setIP(ip);
67
68 string logtype = session.getEnv("LOG_TYPE");
69 lowercase(logtype);
70 trim(logtype);
71 if (logtype == "multilog" || logtype == "stderr") {
74 ioFactory.addDevice(device);
75 } else if (logtype == "" || logtype == "syslog") {
76 const string f = session.getEnv("SYSLOG_FACILITY");
77 int facility;
78
79 if (isdigit(f[0])) {
80 facility = atoi(f);
81 } else {
82 if (f == "LOG_USER") facility = LOG_USER;
83 else if (f == "LOG_LOCAL0") facility = LOG_LOCAL0;
84 else if (f == "LOG_LOCAL1") facility = LOG_LOCAL1;
85 else if (f == "LOG_LOCAL2") facility = LOG_LOCAL2;
86 else if (f == "LOG_LOCAL3") facility = LOG_LOCAL3;
87 else if (f == "LOG_LOCAL4") facility = LOG_LOCAL4;
88 else if (f == "LOG_LOCAL5") facility = LOG_LOCAL5;
89 else if (f == "LOG_LOCAL6") facility = LOG_LOCAL6;
90 else if (f == "LOG_LOCAL7") facility = LOG_LOCAL7;
91 else facility = LOG_DAEMON;
92 }
93
96 "bincimap-up",
97 LOG_NDELAY | LOG_PID,
98 facility);
99 ioFactory.addDevice(device);
100 }
101
102 // Now that we know the log type, we can flush.
105
106
107 // imaps (port 993) -- requires sslserver with option -e
108
109 int stls = 0;
110 if (getenv("SSL_PROTOCOL")) {
111 session.command.ssl = true;
112 stls = -1;
113 // else we will do starttls - requires new FDs
114 } else if (getenv("UCSPITLS")) {
115 string ucspitls = session.getEnv("UCSPITLS");
116 if (ucspitls == "+") stls = 1;
117 if (ucspitls == "-") stls = 0;
118 if (ucspitls == "!") stls = 2;
119 }
120
121 BrokerFactory &brokerfactory = BrokerFactory::getInstance();
122
123 brokerfactory.assign("AUTHENTICATE", new AuthenticateOperator());
124 brokerfactory.assign("CAPABILITY", new CapabilityOperator());
125 brokerfactory.assign("LOGIN", new LoginOperator());
126 brokerfactory.assign("LOGOUT", new LogoutOperator());
127 brokerfactory.assign("NOOP", new NoopOperator());
128 brokerfactory.assign("ID", new IdOperator());
129 if (stls > 0) brokerfactory.assign("STARTTLS", new StarttlsOperator());
130
131 bincClient.setTimeout(AUTH_TIMEOUT);
132
134
135 // If the depot was not initialized properly, return false.
136 return true;
137}
Declaration of the Broker class.
void assign(const std::string &fname, Operator *o)
Definition: broker.cc:57
static BrokerFactory & getInstance(void)
Definition: broker.cc:36
std::string usageString(void) const
Definition: argparser.cc:260
The IODevice class provides a framework for reading and writing to device.
Definition: iodevice.h:31
void setMaxOutputBufferSize(unsigned int max)
Definition: iodevice.cc:112
void setFlags(unsigned int f)
Definition: iodevice.cc:94
void clearFlags(unsigned int f)
Definition: iodevice.cc:100
void setOutputLevelLimit(LogLevel level)
Definition: iodevice.cc:147
static void addDevice(IODevice *dev)
Definition: iofactory.cc:31
static IODevice & getLogger(void)
Definition: iofactory.cc:57
static IOFactory & getInstance(void)
Definition: iofactory.cc:24
bool initialize(int argc, char *argv[])
void assignCommandLineArgs(void)
Definition: session.cc:160
CommandLineArgs args
Definition: session.h:42
void setState(int n)
Definition: session.cc:46
void setIP(const std::string &ip)
Definition: session.cc:70
bool help
Definition: session.h:28
@ NONAUTHENTICATED
Definition: session.h:36
bool ssl
Definition: session.h:30
struct Binc::Session::@3 command
bool version
Definition: session.h:29
bool parseCommandLine(int argc, char *argv[])
Definition: session.cc:136
static Session & getInstance(void)
Definition: session.cc:33
std::string getEnv(const std::string &key)
Definition: session.cc:230
Declaration of miscellaneous convertion functions.
Global constants.
#define BINC_VERSION
Definition: globals.h:10
Declaration of the IODevice class.
Declaration of the IOFactory class.
#define bincClient
Definition: iofactory.h:31
Declaration of the MultilogDevice class.
Definition: bincimapd.cc:9
int atoi(const std::string &s_in)
Definition: convert.h:55
void lowercase(std::string &input)
Definition: convert.h:122
void trim(std::string &s_in, const std::string &chars=" \t\r\n")
Definition: convert.h:137
char ** environ
Declaration of the StdIODevice class.
Declaration of the SyslogDevice class.
Declaration of miscellaneous tools.