summaryrefslogtreecommitdiff
path: root/src/include/imapserver.h
blob: 76b2a83df637ab7f38062513499f9a33afa6880f (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
/**
 *  @file  imapserver.h
 *  @brief Declaration of the IMAPServer class.
 *  @author Andreas Aardal Hanssen
 *  @date 2002-2005
 */

namespace Binc {

  class IMAPServer {
  public:
    IMAPServer(int argc, char *argv[]);
    ~IMAPServer();

    int initialize();
    int runStub();
    int run();

    enum ServerStatus {
      OK,
      RequestError,
      RequestIgnore,  // required for StartTLS, premature answer
      RequestRejected,
      ClientDisconnected,
      Timeout
    };

  private:
    void prepareForNextRequest();

    int argc;
    char **argv;
    bool stubMode;

    ServerStatus serverStatus;
  };
}