Page 2 of 2

Re: Problem Roundcube doesn't have default folders for trash

Posted: Wed Apr 16, 2014 5:12 pm
by MyKEcz
array wrote:Hi.
Tried de 2.0 solution but doesn't work for me.
At least I cannot open webmail "failed conneciton with IMAP", restoring the 20-imap.conf file reactivates access to webmail.

any suggestion? I've tried several times to check spelling correctly but can't make it work.

Thanks
If you followed my tutorial then it must work. Keep eye on spaces. Delete them and make them by TAB key. As nightstrike reported there is problem with formatting when you CopyAnd Paste, so keep eye on that.

Re: Problem Roundcube doesn't have default folders for trash

Posted: Mon Apr 21, 2014 7:05 am
by array
Thanks MyKEcz for replying:

I've typed and tab correctly the file and now I can log on into roundcube without any problems, but anyway my folders are not autocreated.

Any clue?

Regards

--- EDIT ---:
My fault, just renamed the old 20-imap.conf to keep it for reference as another file _old_20-imap.conf and just found that all *.conf files were loaded so didn't make the changes.
Renamed with another extension and worked fine.
Thanks!

Re: [SOLVED] Problem Roundcube doesn't have default folders

Posted: Wed Feb 18, 2015 5:24 pm
by imperio

Re: [SOLVED] Problem Roundcube doesn't have default folders

Posted: Fri Feb 20, 2015 9:12 pm
by drMacFaulty
Create a file 15-mailboxes.conf in conf.d/ folder on Debian machine in /etc/dovecot and put below code in it.
This code works for me:

Code: Select all

namespace inbox {
  inbox = yes
  location = 
  mailbox Archive {
    auto = subscribe
    special_use = \Archive
  }
  mailbox Archives {
    auto = no
    special_use = \Archive
  }
  mailbox "Deleted Messages" {
    auto = no
    special_use = \Trash
  }
  mailbox Drafts {
    auto = subscribe
    special_use = \Drafts
  }
  mailbox Junk {
    auto = subscribe
    special_use = \Junk
  }
  mailbox Sent {
    auto = subscribe
    special_use = \Sent
  }
  mailbox "Sent Messages" {
    auto = no
    special_use = \Sent
  }
  mailbox Trash {
    auto = subscribe
    special_use = \Trash
  }
  prefix = 
}