diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-01-25 12:36:50 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-01-25 12:36:50 +0100 |
commit | 18372a236d459f2a098c8604a0f912f9aa728f98 (patch) | |
tree | e80e160b2f39a8bcb9a2cb085be8b8087cafe2b8 /program/lib | |
parent | 01fc82d0efa913892ea407462c8725645ae08621 (diff) |
Send LOGOUT only when closing connection in logged state (#1487784)
Diffstat (limited to 'program/lib')
-rw-r--r-- | program/lib/Roundcube/rcube_imap_generic.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_imap_generic.php b/program/lib/Roundcube/rcube_imap_generic.php index 8d84bf736..b9a796c33 100644 --- a/program/lib/Roundcube/rcube_imap_generic.php +++ b/program/lib/Roundcube/rcube_imap_generic.php @@ -906,7 +906,7 @@ class rcube_imap_generic */ function closeConnection() { - if ($this->putLine($this->nextTag() . ' LOGOUT')) { + if ($this->logged && $this->putLine($this->nextTag() . ' LOGOUT')) { $this->readReply(); } |