Hi, I did a migration from cyrus 2.2 to dovecot (fresh installation, details below) via cyrus2dovecot from FU Berlin. That worked, but I first was missing mails in subfolders ander Inbox. No I detected that they are in the users Maildir in folders in his directory. They are listed when using telnet: * LIST (\HasChildren) "." "INBOX.ebay" * LIST (\HasNoChildren) "." "INBOX.ebay.xj" But they are not shown in thunderbird, I have to subscribe to them one by one. I probably did something wrong and maybe messed up with namespace and seperator settings - it would be great if one could lead me out of that. The wiki was a great help installing and configuring everything, but now I'm stuck. I use dovecot 2.1.7 under Ubuntu 12.10: # dovecot -n # 2.1.7: /etc/dovecot/dovecot.conf # OS: Linux 3.5.0-18-generic x86_64 Ubuntu 12.10 auth_verbose = yes mail_debug = yes mail_location = maildir:~/Maildir managesieve_notify_capability = mailto managesieve_sieve_capability = fileinto reject envelope encoded-character vacation s ubaddress comparator-i;ascii-numeric relational regex imap4flags copy include variab les body enotify environment mailbox date ihave namespace inbox { inbox = yes list = yes location prefix separator = . type = private } passdb { driver = pam } plugin { sieve = ~/.dovecot.sieve sieve_dir = ~/sieve } postmaster_address = postmaster at localhost protocols = imap pop3 sieve service auth { unix_listener /var/spool/postfix/private/dovecot-auth { group = postfix mode = 0660 user = postfix } } ssl_cert = </etc/ssl/certs/dovecot.pem ssl_cipher_list ALL:!LOW:!SSLv2:ALL:!aNULL:!ADH:!eNULL:!EXP:RC4+RSA:+HIGH:+MEDIUM ssl_key = </etc/ssl/private/dovecot.pem userdb { driver = passwd } protocol imap { imap_client_workarounds = delay-newmail mail_max_userip_connections = 10 } protocol pop3 { mail_max_userip_connections = 10 pop3_client_workarounds = outlook-no-nuls oe-ns-eoh } } ssl_cert = </etc/ssl/certs/dovecot.pem ssl_cipher_list ALL:!LOW:!SSLv2:ALL:!aNULL:!ADH:!eNULL:!EXP:RC4+RSA:+HIGH:+MEDIUM ssl_key = </etc/ssl/private/dovecot.pem userdb { driver = passwd } protocol imap { imap_client_workarounds = delay-newmail mail_max_userip_connections = 10 } protocol pop3 { mail_max_userip_connections = 10 pop3_client_workarounds = outlook-no-nuls oe-ns-eoh } protocol lda { deliver_log_format = msgid=%m: %$ mail_plugins = sieve sieve postmaster_address = postmaster quota_full_tempfail = yes rejection_reason = Your message to <%t> was automatically rejected:%n%r } Any help is greatly appreciated! Regards Andre
Andre Bischof wrote:> I did a migration from cyrus 2.2 to dovecot (fresh installation, details > below) via cyrus2dovecot from FU Berlin. That worked, but I first was > missing mails in subfolders ander Inbox. No I detected that they are in the > users Maildir in folders in his directory. They are listed when using > telnet: > > * LIST (\HasChildren) "." "INBOX.ebay" > * LIST (\HasNoChildren) "." "INBOX.ebay.xj" > > But they are not shown in thunderbird, I have to subscribe to them one by > one. I probably did something wrong and maybe messed up with namespace and > seperator settings - it would be great if one could lead me out of that. > The wiki was a great help installing and configuring everything, but now > I'm stuck.Unsubscribed mailboxes are not shown in thunderbird, while subscriptions being stored server side, not in your local thunderbird. You can use this command to subscribe one or more mailboxes: doveadm mailbox subscribe [-A|-u user] [-S socket_path] mailbox ... This should subscribe all mailboxes of a specific user (-A for all users): doveadm mailbox subscribe -u user at example.com "*" You can set this configuration option to auto-subscribe new folders: lda_mailbox_autosubscribe = yes Regards Daniel -- https://plus.google.com/103021802792276734820
Andre Bischof wrote:> doveadm mailbox subscribe -u user at example.com "*" > > Should the user for "-u" be the system user the > mailboxes belong to or has the user to be written in form of an email > adress (user at localhost / user at n.dyndns.org)?It should be the same userdb username as used for imap login. Regards Daniel -- https://plus.google.com/103021802792276734820
Daniel, Am 19.11.2012 23:32 schrieb "Daniel Parthey" < daniel.parthey at informatik.tu-chemnitz.de>:> > Andre Bischof wrote: > > doveadm mailbox subscribe -u user at example.com "*" > > > > Should the user for "-u" be the system user the > > mailboxes belong to or has the user to be written in form of an email > > adress (user at localhost / user at n.dyndns.org)? > > It should be the same userdb username as used for imap login.Thank you. One thing that still doesn't work is subscribing to all mailboxes via "*", I guess because the folder names start with "." but dovecot mailbbox subscribe wants it without a starting "." Any clues how that can be solved? Regards Andre