summaryrefslogtreecommitdiff
path: root/src/operator-logout.cc
diff options
context:
space:
mode:
authorErwin Hoffmann <feh@fehcom.de>2023-09-21 17:36:16 +0200
committerErwin Hoffmann <feh@fehcom.de>2023-09-21 17:36:16 +0200
commit44388ac49531af9e2565f76ef99ff7afb757b3fb (patch)
tree4eeb294db5bc3dbd075d0df5fea13c664cc331e2 /src/operator-logout.cc
parent889d69a87d51c8df531885cf1ac3d12d64a0cff7 (diff)
all sources
Diffstat (limited to 'src/operator-logout.cc')
-rw-r--r--src/operator-logout.cc86
1 files changed, 86 insertions, 0 deletions
diff --git a/src/operator-logout.cc b/src/operator-logout.cc
new file mode 100644
index 0000000..643d412
--- /dev/null
+++ b/src/operator-logout.cc
@@ -0,0 +1,86 @@
+/** --------------------------------------------------------------------
+ * @file operator-logout.cc
+ * @brief Implementation of the LOGOUT command
+ * @author Andreas Aardal Hanssen
+ * @date 2002-2005
+ * ----------------------------------------------------------------- **/
+#include <string>
+#include <iostream>
+
+#include "iodevice.h"
+#include "iofactory.h"
+
+#include "mailbox.h"
+#include "recursivedescent.h"
+#include "session.h"
+#include "convert.h"
+
+#include "depot.h"
+#include "operators.h"
+
+using namespace ::std;
+using namespace Binc;
+
+//----------------------------------------------------------------------
+LogoutOperator::LogoutOperator(void)
+{
+}
+
+//----------------------------------------------------------------------
+LogoutOperator::~LogoutOperator(void)
+{
+}
+
+//----------------------------------------------------------------------
+const string LogoutOperator::getName(void) const
+{
+ return "LOGOUT";
+}
+
+//----------------------------------------------------------------------
+int LogoutOperator::getState(void) const
+{
+ return Session::NONAUTHENTICATED
+ | Session::AUTHENTICATED
+ | Session::SELECTED;
+}
+
+//------------------------------------------------------------------------
+Operator::ProcessResult LogoutOperator::process(Depot &depot,
+ Request &command)
+{
+ bincClient << "* BYE Binc IMAP shutting down" << endl;
+ bincClient << command.getTag() << " OK LOGOUT completed" << endl;
+ bincClient.flush();
+
+#ifdef BINCIMAPD
+ Mailbox *mailbox = 0;
+ if ((mailbox = depot.getSelected()) != 0) {
+ mailbox->closeMailbox();
+ delete mailbox;
+ }
+#endif
+
+ Session &session = Session::getInstance();
+ session.setState(Session::LOGOUT);
+
+ return NOTHING;
+}
+
+//----------------------------------------------------------------------
+Operator::ParseResult LogoutOperator::parse(Request & c_in) const
+{
+ Session &session = Session::getInstance();
+
+ if (c_in.getUidMode())
+ return REJECT;
+
+ Operator::ParseResult res;
+ if ((res = expectCRLF()) != ACCEPT) {
+ session.setLastError("Expected CRLF");
+ return res;
+ }
+
+ c_in.setName("LOGOUT");
+ return ACCEPT;
+}