Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Illegal offset type in roundcube/program/lib/Roundcube/rcube_imap.php #7525

Closed
tw- opened this issue Jul 31, 2020 · 3 comments
Closed

Illegal offset type in roundcube/program/lib/Roundcube/rcube_imap.php #7525

tw- opened this issue Jul 31, 2020 · 3 comments
Milestone

Comments

@tw-
Copy link

tw- commented Jul 31, 2020

Message appears in error.log on every login:

PHP Warning: Illegal offset type in roundcube/program/lib/Roundcube/rcube_imap.php on line 3456

https://github.com/roundcube/roundcubemail/blob/1.4.7/program/lib/Roundcube/rcube_imap.php#L3456

Roundcube 1.4.7
PHP 7.4 (Ubuntu 20.04 LTS)
IMAP-Server:
* OK [CAPABILITY IMAP4rev1 ACL RIGHTS=tekx QUOTA LITERAL+ NAMESPACE UIDPLUS CHILDREN BINARY UNSELECT SORT CATENATE URLAUTH ESEARCH ESORT THREAD=ORDEREDSUBJECT THREAD=REFERENCES ENABLE CONDSTORE QRESYNC CONTEXT=SEARCH CONTEXT=SORT WITHIN SASL-IR SEARCHRES METADATA ID LIST-STATUS SPECIAL-USE CREATE-SPECIAL-USE ANNOTATE-EXPERIMENT-1 MULTISEARCH IDLE AUTH=PLAIN STARTTLS] Messaging Multiplexor (Oracle Communications Messaging Server 8.0.1.2.20170621 64bit (built Jun 21 2017))

Originally posted by @tw- in #4611 (comment)

@alecpl
Copy link
Member

alecpl commented Jul 31, 2020

Could you provide full debug log (to the moment when it happens)? You could also add rcube::console($folders); in line 3453 to log content of the variable into logs/console.log. That would help to understand the origin of the issue and find a proper fix.

@tw-
Copy link
Author

tw- commented Jul 31, 2020

error.log shows 7 times the same message

console.log:

[31-Jul-2020 11:42:07 +0200]: <o6miaq79> array (
  'INBOX' => 
  array (
  ),
  'Drafts' => 
  array (
  ),
  'Junk' => 
  array (
  ),
  'Notes' => 
  array (
  ),
  'Sent' => 
  array (
  ),
  'Sent Messages' => 
  array (
  ),
  'Trash' => 
  array (
  ),
)

imap.log

[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] Connecting to imap.xxx:143...
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] S: * OK [CAPABILITY IMAP4rev1 ACL RIGHTS=tekx QUOTA LITERAL+ NAMESPACE UIDPLUS CHILDREN BINARY UNSELECT SORT CATENATE URLAUTH ESEARCH ESORT THREAD=ORDEREDSUBJECT THREAD=REFERENCES ENABLE CONDSTORE QRESYNC CONTEXT=SEARCH CONTEXT=SORT WITHIN SASL-IR SEARCHRES METADATA ID LIST-STATUS SPECIAL-USE CREATE-SPECIAL-USE ANNOTATE-EXPERIMENT-1 MULTISEARCH IDLE AUTH=PLAIN STARTTLS] Messaging Multiplexor (Oracle Communications Messaging Server 8.0.1.2.20170621 64bit (built Jun 21 2017))
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] C: A0001 ID ("name" "Roundcube" "version" "1.4.7" "php" "7.4.3" "os" "Linux" "command" "/rc/?_task=login")
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] S: * ID NIL
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] S: A0001 OK Completed
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] C: A0002 AUTHENTICATE PLAIN ****** [25]
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] S: A0002 OK User xxx@xxx logged in
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] C: A0003 NAMESPACE
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] S: * NAMESPACE (("" "/")) (("Shared Folders/User/" "/")) (("Shared Folders/Public/" "/"))
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] S: A0003 OK Completed
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] C: A0004 CAPABILITY
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] S: * CAPABILITY IMAP4 IMAP4rev1 ACL RIGHTS=tekx QUOTA LITERAL+ NAMESPACE UIDPLUS CHILDREN BINARY UNSELECT SORT CATENATE URLAUTH LANGUAGE ESEARCH ESORT THREAD=ORDEREDSUBJECT THREAD=REFERENCES CONDSTORE ENABLE QRESYNC CONTEXT=SEARCH CONTEXT=SORT WITHIN SASL-IR SEARCHRES METADATA ID LIST-STATUS SPECIAL-USE CREATE-SPECIAL-USE MULTISEARCH SORT=DISPLAY LOGIN-REFERRALS UTF8=ACCEPT URL-PARTIAL STATUS=SIZE XSNIPPET=FUZZY X-SUN-SORT ANNOTATE-EXPERIMENT-1 X-SUN-IMAP XUM1 X-ORCL-AS STARTTLS IDLE
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] S: A0004 OK Completed
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] C: A0005 LIST "" "*" RETURN (SUBSCRIBED)
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] S: * LIST (\NoInferiors) "/" INBOX
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] S: * LIST (\HasNoChildren) "/" Drafts
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] S: * LIST (\HasNoChildren) "/" Junk
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] S: * LIST (\HasNoChildren) "/" Notes
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] S: * LIST (\HasNoChildren) "/" Sent
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] S: * LIST (\HasNoChildren) "/" "Sent Messages"
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] S: * LIST (\HasNoChildren) "/" Trash
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] S: A0005 OK Completed
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] C: A0006 LSUB "" Drafts
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] S: * LSUB (\HasNoChildren) "/" Drafts
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] S: A0006 OK Completed
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] C: A0007 LSUB "" Sent
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] S: * LSUB (\HasNoChildren) "/" Sent
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] S: A0007 OK Completed
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] C: A0008 LSUB "" Junk
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] S: * LSUB (\HasNoChildren) "/" Junk
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] S: A0008 OK Completed
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] C: A0009 LSUB "" Trash
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] S: * LSUB (\HasNoChildren) "/" Trash
[31-Jul-2020 11:42:07 +0200]: <o6miaq79> [E7E2] S: A0009 OK Completed
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [E7E2] C: A0010 LOGOUT
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [E7E2] S: * BYE LOGOUT received
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [E7E2] S: A0010 OK Completed
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] Connecting to imap.xxx:143...
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] S: * OK [CAPABILITY IMAP4rev1 ACL RIGHTS=tekx QUOTA LITERAL+ NAMESPACE UIDPLUS CHILDREN BINARY UNSELECT SORT CATENATE URLAUTH ESEARCH ESORT THREAD=ORDEREDSUBJECT THREAD=REFERENCES ENABLE CONDSTORE QRESYNC CONTEXT=SEARCH CONTEXT=SORT WITHIN SASL-IR SEARCHRES METADATA ID LIST-STATUS SPECIAL-USE CREATE-SPECIAL-USE ANNOTATE-EXPERIMENT-1 MULTISEARCH IDLE AUTH=PLAIN STARTTLS] Messaging Multiplexor (Oracle Communications Messaging Server 8.0.1.2.20170621 64bit (built Jun 21 2017))
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] C: A0001 ID ("name" "Roundcube" "version" "1.4.7" "php" "7.4.3" "os" "Linux" "command" "/rc/?_task=mail&_token=HM1vgYHb8lVSaEBhOsdbh3prJThuMVuS")
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] S: * ID NIL
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] S: A0001 OK Completed
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] C: A0002 AUTHENTICATE PLAIN ****** [25]
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] S: A0002 OK User xxx@xxx logged in
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] C: A0003 CAPABILITY
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] S: * CAPABILITY IMAP4 IMAP4rev1 ACL RIGHTS=tekx QUOTA LITERAL+ NAMESPACE UIDPLUS CHILDREN BINARY UNSELECT SORT CATENATE URLAUTH LANGUAGE ESEARCH ESORT THREAD=ORDEREDSUBJECT THREAD=REFERENCES CONDSTORE ENABLE QRESYNC CONTEXT=SEARCH CONTEXT=SORT WITHIN SASL-IR SEARCHRES METADATA ID LIST-STATUS SPECIAL-USE CREATE-SPECIAL-USE MULTISEARCH SORT=DISPLAY LOGIN-REFERRALS UTF8=ACCEPT URL-PARTIAL STATUS=SIZE XSNIPPET=FUZZY X-SUN-SORT ANNOTATE-EXPERIMENT-1 X-SUN-IMAP XUM1 X-ORCL-AS STARTTLS IDLE
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] S: A0003 OK Completed
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] C: A0004 LSUB "" "*"
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] S: * LSUB (\HasNoChildren) "/" Drafts
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] S: * LSUB (\HasNoChildren) "/" Junk
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] S: * LSUB (\HasNoChildren) "/" Notes
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] S: * LSUB (\HasNoChildren) "/" Sent
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] S: * LSUB (\HasNoChildren) "/" "Sent Messages"
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] S: * LSUB (\HasNoChildren) "/" Trash
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] S: A0004 OK Completed
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] C: A0005 LIST "" "*"
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] S: * LIST (\NoInferiors) "/" INBOX
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] S: * LIST (\HasNoChildren) "/" Drafts
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] S: * LIST (\HasNoChildren) "/" Junk
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] S: * LIST (\HasNoChildren) "/" Notes
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] S: * LIST (\HasNoChildren) "/" Sent
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] S: * LIST (\HasNoChildren) "/" "Sent Messages"
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] S: * LIST (\HasNoChildren) "/" Trash
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] S: A0005 OK Completed
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] C: A0006 GETQUOTAROOT INBOX
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] S: * QUOTAROOT INBOX user/musterg
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] S: * QUOTA user/musterg (STORAGE 1621 512000)
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] S: A0006 OK Completed
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] C: A0007 LOGOUT
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] S: * BYE LOGOUT received
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [8253] S: A0007 OK Completed
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [6971] Connecting to imap.xxx:143...
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] Connecting to imap.xxx:143...
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [6971] S: * OK [CAPABILITY IMAP4rev1 ACL RIGHTS=tekx QUOTA LITERAL+ NAMESPACE UIDPLUS CHILDREN BINARY UNSELECT SORT CATENATE URLAUTH ESEARCH ESORT THREAD=ORDEREDSUBJECT THREAD=REFERENCES ENABLE CONDSTORE QRESYNC CONTEXT=SEARCH CONTEXT=SORT WITHIN SASL-IR SEARCHRES METADATA ID LIST-STATUS SPECIAL-USE CREATE-SPECIAL-USE ANNOTATE-EXPERIMENT-1 MULTISEARCH IDLE AUTH=PLAIN STARTTLS] Messaging Multiplexor (Oracle Communications Messaging Server 8.0.1.2.20170621 64bit (built Jun 21 2017))
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [6971] C: A0001 ID ("name" "Roundcube" "version" "1.4.7" "php" "7.4.3" "os" "Linux" "command" "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_remote=1&_unlock=loading1596188527497&_=1596188527295")
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [6971] S: * ID NIL
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [6971] S: A0001 OK Completed
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [6971] C: A0002 AUTHENTICATE PLAIN ****** [25]
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: * OK [CAPABILITY IMAP4rev1 ACL RIGHTS=tekx QUOTA LITERAL+ NAMESPACE UIDPLUS CHILDREN BINARY UNSELECT SORT CATENATE URLAUTH ESEARCH ESORT THREAD=ORDEREDSUBJECT THREAD=REFERENCES ENABLE CONDSTORE QRESYNC CONTEXT=SEARCH CONTEXT=SORT WITHIN SASL-IR SEARCHRES METADATA ID LIST-STATUS SPECIAL-USE CREATE-SPECIAL-USE ANNOTATE-EXPERIMENT-1 MULTISEARCH IDLE AUTH=PLAIN STARTTLS] Messaging Multiplexor (Oracle Communications Messaging Server 8.0.1.2.20170621 64bit (built Jun 21 2017))
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] C: A0001 ID ("name" "Roundcube" "version" "1.4.7" "php" "7.4.3" "os" "Linux" "command" "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1596188527296")
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: * ID NIL
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: A0001 OK Completed
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] C: A0002 AUTHENTICATE PLAIN ****** [25]
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [6971] S: A0002 OK User xxx@xxx logged in
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: A0002 OK User xxx@xxx logged in
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] C: A0003 LSUB "" "*"
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [6971] C: A0003 STATUS INBOX (MESSAGES UNSEEN)
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: * LSUB (\HasNoChildren) "/" Drafts
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: * LSUB (\HasNoChildren) "/" Junk
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [6971] S: * STATUS INBOX (MESSAGES 0 UNSEEN 0)
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: * LSUB (\HasNoChildren) "/" Notes
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: * LSUB (\HasNoChildren) "/" Sent
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: * LSUB (\HasNoChildren) "/" "Sent Messages"
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: * LSUB (\HasNoChildren) "/" Trash
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [6971] S: A0003 OK Completed
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: A0003 OK Completed
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] C: A0004 LIST "" "*"
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [6971] C: A0004 GETQUOTAROOT INBOX
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [6971] S: * QUOTAROOT INBOX user/musterg
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [6971] S: * QUOTA user/musterg (STORAGE 1621 512000)
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [6971] S: A0004 OK Completed
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: * LIST (\NoInferiors) "/" INBOX
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: * LIST (\HasNoChildren) "/" Drafts
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: * LIST (\HasNoChildren) "/" Junk
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: * LIST (\HasNoChildren) "/" Notes
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: * LIST (\HasNoChildren) "/" Sent
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: * LIST (\HasNoChildren) "/" "Sent Messages"
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: * LIST (\HasNoChildren) "/" Trash
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: A0004 OK Completed
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] C: A0005 STATUS INBOX (MESSAGES UNSEEN)
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [6971] C: A0005 LOGOUT
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [6971] S: * BYE LOGOUT received
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [6971] S: A0005 OK Completed
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: * STATUS INBOX (MESSAGES 0 UNSEEN 0)
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: A0005 OK Completed
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] C: A0006 STATUS Drafts (MESSAGES UNSEEN)
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: * STATUS Drafts (MESSAGES 0 UNSEEN 0)
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: A0006 OK Completed
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] C: A0007 STATUS Sent (MESSAGES UNSEEN)
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: * STATUS Sent (MESSAGES 0 UNSEEN 0)
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: A0007 OK Completed
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] C: A0008 STATUS Junk (MESSAGES UNSEEN)
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: * STATUS Junk (MESSAGES 0 UNSEEN 0)
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: A0008 OK Completed
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] C: A0009 STATUS Trash (MESSAGES UNSEEN)
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: * STATUS Trash (MESSAGES 15 UNSEEN 0)
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: A0009 OK Completed
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] C: A0010 STATUS Notes (MESSAGES UNSEEN)
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: * STATUS Notes (MESSAGES 0 UNSEEN 0)
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: A0010 OK Completed
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] C: A0011 STATUS "Sent Messages" (MESSAGES UNSEEN)
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: * STATUS "Sent Messages" (MESSAGES 1 UNSEEN 0)
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: A0011 OK Completed
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] C: A0012 LOGOUT
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: * BYE LOGOUT received
[31-Jul-2020 11:42:07 +0200]: <fv3q9g3h> [5E93] S: A0012 OK Completed

@alecpl
Copy link
Member

alecpl commented Jul 31, 2020

Thanks. Fixed.

@alecpl alecpl closed this as completed Jul 31, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants