Skip to main content

Answers for companies

We have revised the Knowledge base for you. Some articles are currently still being updated.

Folder permissions lost

Folder permissions lost

If you try to delete a folder with subfolders from your mailbox, you lose the access permissions of this folder. The subfolders can be found in the trash but cannot be deleted from there. Our administrators have developed a solution for this issue together with Open-Xchange support.

Please note that our helpdesk cannot manually delete these folders for you.

Workaround for Linux

Connect to the IMAP server:

openssl s_client -crlf -connect imap.mailbox.org:993

Login:

a1 LOGIN username@mailbox.org

Get a list of the folders. The affected folders have the attribute /NoSelect.

Example output:

a1 LIST "" ""
LIST (\HasChildren) "/" INBOX - OK
LIST (\Noselect \HasNoChildren) "/" INBOX/TEST - damaged

If you want to recreate the folder TEST, simply run:

a1 CREATE INBOX/TEST

If you want to delete the folder TEST, you can do so in any mail client or with this command:

a1 DELETE INBOX/TEST

Workaround for Windows

Install the OpenSSL package from a trusted source as an *.exe file.

After installation, open the executable. In a default installation, the path to the file is typically:

C:\Programme\OpenSSL-Win64\bin\openssl.exe

Connect to the IMAP server:

openssl s_client -connect imap.mailbox.org:993

Note: Unlike the Linux command above, this one does not include -crlf.

Login:

a1 LOGIN username@mailbox.org

Get a list of the folders. The affected folders have the attribute /NoSelect.

Example output:

a1 LIST "" ""
LIST (\HasChildren) "/" INBOX - OK
LIST (\Noselect \HasNoChildren) "/" INBOX/TEST - damaged

If you want to recreate the folder TEST, simply run:

a1 CREATE INBOX/TEST

If you want to delete the folder TEST, you can do so in any mail client or with this command:

a1 DELETE INBOX/TEST