From owner-freebsd-questions@FreeBSD.ORG Tue Jul 11 18:45:15 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5BF6016A4E5 for ; Tue, 11 Jul 2006 18:45:15 +0000 (UTC) (envelope-from nagylzs@enternet.hu) Received: from smtp.enternet.hu (smtp.enternet.hu [62.112.192.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA87243D66 for ; Tue, 11 Jul 2006 18:45:14 +0000 (GMT) (envelope-from nagylzs@enternet.hu) Received: from [83.216.42.239] (helo=[172.16.0.43]) by smtp.enternet.hu with esmtpa (Exim 4) id 1G0NEN-0003uy-1x; Tue, 11 Jul 2006 20:45:11 +0200 Message-ID: <44B3F1DB.1090409@enternet.hu> Date: Tue, 11 Jul 2006 20:45:47 +0200 From: =?ISO-8859-2?Q?Nagy_L=E1szl=F3?= User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: =?ISO-8859-2?Q?Erik_N=3Frgaard?= , freebsd-questions@freebsd.org References: <44B3A7AA.1050600@enternet.hu> <44B3D42F.5050201@voidcaptain.com> <44B3EF71.5060407@locolomo.org> In-Reply-To: <44B3EF71.5060407@locolomo.org> Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Re: IMAP server alternatives X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jul 2006 18:45:15 -0000 > 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