You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a question about the command "DELETE" with the argument "INBOX". As described in RFC3501 "It is an error to attempt to delete INBOX". However, greenmail allows this operation and removes INBOX permanently.
c: a02 LIST "" *
s: * LIST () "." "INBOX"
s: a02 OK LIST completed.
c: a03 DELETE inbox
s: a03 OK DELETE completed.
c: a04 LIST "" *
s: a04 OK LIST completed.
I think it is strange that we can delete INBOX.
As described in RFC3501 "It is an error to attempt to rename from a mailbox name that does not exist or to a mailbox name that already exists."
Example with "INBOX" but it works in the same way with other names.
c: a02 LIST "" *
s: * LIST () "." "INBOX"
s: a02 OK LIST completed.
c: a03 CREATE zoo
s: a03 OK CREATE completed.
c: a04 RENAME zoo inbox
s: a04 OK RENAME completed.
c: a05 LIST "" *
s: * LIST () "." "INBOX"
s: * LIST () "." "INBOX"
s: a05 OK LIST completed.
It is definitely the bug that we have multiple folders with the same name.
I think I can fix it by myself if you want.
The text was updated successfully, but these errors were encountered:
I think it is strange that we can delete INBOX.
Example with "INBOX" but it works in the same way with other names.
It is definitely the bug that we have multiple folders with the same name.
I think I can fix it by myself if you want.
The text was updated successfully, but these errors were encountered: