Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 11 Jul 2006 20:45:47 +0200
From:      =?ISO-8859-2?Q?Nagy_L=E1szl=F3?= <nagylzs@enternet.hu>
To:        =?ISO-8859-2?Q?Erik_N=3Frgaard?= <norgaard@locolomo.org>,  freebsd-questions@freebsd.org
Subject:   Re: IMAP server alternatives
Message-ID:  <44B3F1DB.1090409@enternet.hu>
In-Reply-To: <44B3EF71.5060407@locolomo.org>
References:  <44B3A7AA.1050600@enternet.hu> <44B3D42F.5050201@voidcaptain.com> <44B3EF71.5060407@locolomo.org>

next in thread | previous in thread | raw e-mail | index | archive | help

> It seems that dovecot wins the votes - but does it support virtual domains? 
I think it does not, but I do not need it. I can use postfix and 
mydestination, virtual_maps. This is enough for me.
> Any tips on migration?
>   
Yes, it looks easy. I created these namespaces in dovecot.conf:

namespace private {
    separator = /
    inbox = yes
    hidden = yes
    prefix = "#mbox/"
    location = mbox:/home/%u:INBOX=/var/mail/%u
}

namespace private {
    separator = /
    prefix = "oldsystem/"
    location = mbox:/home/%u
}


namespace private {
    separator = /
    prefix =
    location = maildir:/home/%u/Maildir
}

The first one allows the old mbox format inbox to be used from 
"/var/mail/username". (I could have recompiled procmail in order to 
deliver to maildir...)
The second one allow the users to view their old mbox style folders. 
They can move the messages to the new maildir format, if they wish. 
(Drag and drop in thunderbird...) Later I can delete the old mbox folders.
The third one is the default namespace (without name) and it has the new 
maildir format.

Best,

   Laszlo




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?44B3F1DB.1090409>