Hi, I have a mail server (postfix/dovecot) running so far with normal local /etc/passwd users for domain example.com. mail_location = maildir:~/Maildir passdb pam { } userdb passwd { } Is it possible to add virtual domains/users to my setup without changing example.com to a virtual domain? I can do the postfix part with http://www.postfix.org/VIRTUAL_README.html#virtual_mailbox but I'm not sure if I can mix dovecot (IMAP and maybe smtp auth) for both local and virtual users. Any hint would be appreciated. best regards, Giannis
On 05/26/2010 04:53 PM Kapetanakis Giannis wrote:> Hi, > > I have a mail server (postfix/dovecot) running so far with normal > local /etc/passwd users for domain example.com. > > mail_location = maildir:~/Maildir > passdb pam { > } > userdb passwd { > } > > Is it possible to add virtual domains/users to my setup > without changing example.com to a virtual domain? > > I can do the postfix part with > http://www.postfix.org/VIRTUAL_README.html#virtual_mailbox > > but I'm not sure if I can mix dovecot (IMAP and maybe smtp auth) for > both local and virtual users. > Any hint would be appreciated.You can use multiple user/authentication databases: http://wiki.dovecot.org/Authentication/MultipleDatabases Regards, Pascal -- The trapper recommends today: deadbeef.1014617 at localdomain.org
On 26/05/10 18:01, Pascal Volk wrote:> You can use multiple user/authentication databases: > http://wiki.dovecot.org/Authentication/MultipleDatabases > > > Regards, > Pascal >Thanks, This is exactly what I was looking for :) Giannis