예제 #1
0
   void
   POP3Connection::_ProtocolQUIT()
   {
      _SaveMailboxChanges();
      _UnlockMailbox();

      _SendData("+OK POP3 server saying goodbye...");
   }
예제 #2
0
   void
   POP3Connection::_ProtocolQUIT()
   {
      // NEED FOR BUG FIX: Unlock should not be allowed unless user was auth'd
      // because next pop check is allowed even if in-use!
      // Problem is people have grown accustomed to this & could cause more
      // issues if fixed.
      _SaveMailboxChanges();
      _UnlockMailbox();

      _SendData("+OK POP3 server saying goodbye...");
   }