Hi guys i've setup a virtual users setup with postfix and when i login to the mail with dovecot i'm not getting a trash or sent items folder

I'm looking at the Maildir home and there's no .trash or .sent items there.

Any ideas why dovecot woudln't create these?

TIA

Here's the dovecot.conf
       # /etc/dovecot/dovecot.conf
       protocols = imap imaps
       log_timestamp = "%Y-%m-%d %H:%M:%S "
       first_valid_uid = 100
       login_user=vmail
       mail_extra_groups = mail
       mail_debug = yes
       #default_mail_env = maildir:/home/vmail/domains/%n/Maildir

       auth default {
           mechanisms = plain
           passdb ldap {
               args = /etc/dovecot/dovecot-ldap.conf
           }
           userdb ldap {
               args = /etc/dovecot/dovecot-ldap.conf
           }
       }
# mbox
namespace private {
   separator = /
   prefix = "#mbox/"
   location = mbox:/home/vmail/domains/%n/Mbox
   inbox = no
   hidden = no
}
# maildir
namespace private {
   separator = /
   prefix =
   location = maildir:/home/vmail/domains/%n/Maildir
   inbox = yes
   hidden = no
}


ssl_disable = no
ssl_cert_file = /etc/ssl/certs/dovecot.pem
ssl_key_file = /etc/ssl/private/dovecot.pem
ssl_verify_client_cert = no
ssl_cipher_list = ALL:!LOW:HIGH:MEDIUM:+SSLv2:RSA


dovecot-ldap.conf:
################################
hosts = localhost
auth_bind = yes
auth_bind_userdn = uid=%u,ou=people,dc=example,dc=com
ldap_version = 3
base = ou=People,dc=example,dc=com
deref = never
scope = subtree
user_attrs = homeDirectory=home,uidNumber=uid,gidNumber=gid
user_filter = (&(objectClass=posixAccount)(uid=%u))
pass_attrs = uid=user,userPassword=password


shell:/home/vmail/domains/james/Maildir# ls -al
total 68
drwx------ 6 james group  4096 2007-09-26 08:34 .
drwx------ 4 james group  4096 2007-09-26 08:00 ..
drwx------ 2 james group  4096 2007-09-26 08:34 cur
-rw------- 1 james group   448 2007-09-26 08:34 dovecot.index
-rw------- 1 james group 21504 2007-09-26 08:34 dovecot.index.cache
-rw------- 1 james group  1992 2007-09-26 08:34 dovecot.index.log
-rw------- 1 james group    10 2007-09-24 14:48 dovecot-keywords
-rw------- 1 james group   432 2007-09-26 08:34 dovecot-uidlist
drwx------ 2 james group  4096 2007-09-26 08:34 new
-rw------- 1 james group    12 2007-09-26 08:26 subscriptions
drwx------ 2 james group  4096 2007-09-26 08:34 tmp




Reply via email to