When you create a new user and log into Roundcube webmail, only the Inbox, Trash, and Junk folders are created. The Drafts and Sent folders are not created until the user sends an outbound email.
This can cause problems if an IMAP client is configured before the Drafts and Sent folders exist. For example, Italian Outlook creates Posta inviata instead of Sent if the latter does not already exist, and some mobile apps throw an error when copying a sent message.
Proposed solution
Add the following line to the Roundcube configuration to create the default folders at user login:
$config['create_default_folders'] = true;
Alternative solutions
The user manually creates the folders by sending a message.
Additional context
Adding the line above to /home/roundcubemail1/.config/state/config/config.nethserver.php was tested and seems to work fine.
See also
Nethesis Helpdesk ticket #203802
When you create a new user and log into Roundcube webmail, only the
Inbox,Trash, andJunkfolders are created. TheDraftsandSentfolders are not created until the user sends an outbound email.This can cause problems if an IMAP client is configured before the
DraftsandSentfolders exist. For example, Italian Outlook createsPosta inviatainstead ofSentif the latter does not already exist, and some mobile apps throw an error when copying a sent message.Proposed solution
Add the following line to the Roundcube configuration to create the default folders at user login:
$config['create_default_folders'] = true;Alternative solutions
The user manually creates the folders by sending a message.
Additional context
Adding the line above to
/home/roundcubemail1/.config/state/config/config.nethserver.phpwas tested and seems to work fine.See also
Nethesis Helpdesk ticket #203802