From owner-freebsd-ports@FreeBSD.ORG Thu Jun 4 11:37:40 2009 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 461691065738 for ; Thu, 4 Jun 2009 11:37:40 +0000 (UTC) (envelope-from 000.fbsd@quip.cz) Received: from elsa.codelab.cz (elsa.codelab.cz [94.124.105.4]) by mx1.freebsd.org (Postfix) with ESMTP id BADDF8FC0A for ; Thu, 4 Jun 2009 11:37:39 +0000 (UTC) (envelope-from 000.fbsd@quip.cz) Received: from localhost (localhost.codelab.cz [127.0.0.1]) by elsa.codelab.cz (Postfix) with ESMTP id 24E7619E044; Thu, 4 Jun 2009 13:37:37 +0200 (CEST) Received: from [192.168.1.2] (r5bb235.net.upc.cz [86.49.61.235]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by elsa.codelab.cz (Postfix) with ESMTPSA id C030C19E043; Thu, 4 Jun 2009 13:37:31 +0200 (CEST) Message-ID: <4A27B1FC.6030904@quip.cz> Date: Thu, 04 Jun 2009 13:37:32 +0200 From: Miroslav Lachman <000.fbsd@quip.cz> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.12) Gecko/20050915 X-Accept-Language: cz, cs, en, en-us MIME-Version: 1.0 To: Alexander Leidinger References: <4A279C92.4020305@quip.cz> <20090604135318.0178eb66@it.buh.tecnik93.com> <20090604130638.17461dkh10lqyhgk@webmail.leidinger.net> In-Reply-To: <20090604130638.17461dkh10lqyhgk@webmail.leidinger.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: Ion-Mihai Tetcu , sahil@tandon.net, freebsd-ports@FreeBSD.org Subject: Re: has Postfix new location of aliases.db? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Jun 2009 11:37:40 -0000 Alexander Leidinger wrote: > Quoting Ion-Mihai Tetcu (from Thu, 4 Jun 2009 > 13:53:18 +0300): > >> Content-Type: text/plain; charset=US-ASCII >> Content-Transfer-Encoding: quoted-printable >> >> On Thu, 04 Jun 2009 12:06:10 +0200 >> Miroslav Lachman <000.fbsd@quip.cz> wrote: >> >>> Was something changed in Postfix defaults? >>> After upgrade from postfix-2.5.6,1 to postfix-2.6.1,1 and restart of >>> postfix, I got following error in /var/log/maillog >>> >>> fatal: open database /etc/mail/aliases.db: No such file or directory >>> >>> All previous versions were using /etc/aliases.db, new version expect >>> /etc/mail/aliases.db >>> >>> newaliases command re-generate aliases.db in the new location. >>> >>> >>> root@fido ~/# ls -al /etc/aliases* >>> lrwxr-xr-x 1 root wheel 12B Feb 24 2008 /etc/aliases@ -> >>> mail/aliases -rw-r--r-- 1 root wheel 12K Jan 20 >>> 11:30 /etc/aliases.db >>> >>> root@fido ~/# ls -al /etc/mail/aliases* >>> -rw-r--r-- 1 root wheel 1.7K Oct 22 2008 /etc/mail/aliases >>> >>> root@fido ~/# newaliases >>> >>> root@fido ~/# ls -al /etc/mail/aliases* >>> -rw-r--r-- 1 root wheel 1.7K Oct 22 2008 /etc/mail/aliases >>> -rw-r--r-- 1 root wheel 12K Jun 4 11:39 /etc/mail/aliases.db >>> >>> If this is expected behavior, this should be mentioned in UPDATING. >>> >>> machine details: >>> FreeBSD 7.2-RELEASE #0: Fri May 1 08:49:13 UTC 2009 >>> root@walker.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >>> >>> fresh ports tree updated by `portsnap fetch update`, postfix upgraded >>> by `portmaster postfix-2.5.6,1` >> >> >> I got bitten by this also, but I though it was only my lack of >> attention. > > > It seems it is creating the .db in the directory where the symlink is > pointing to, instead in the directory where the symlink is (I assume > the original poster used his previous config without changing the alias > stuff). I haven't found something related in the postfix changelog. > Concerned people should maybe ask on the postfix ML if this is intended > or not. I have dozen of servers with Postfix, so I tried it on another server with older Postfix version. This is the result after `newaliases` command root@roxy ~/# ls -al /etc/aliases* lrwxrwxrwx 1 root wheel 12 Feb 9 2008 /etc/aliases -> mail/aliases -rw-r--r-- 1 root wheel 12288 Jun 4 13:25 /etc/aliases.db root@roxy ~/# ls -al /etc/mail/aliases* -rw-r--r-- 1 root wheel 1952 Jun 4 13:25 /etc/mail/aliases As you can see, file /etc/mail/aliases was modified (target of symlink) and then aliases.db was generated by `newaliases` command as /etc/aliases.db Above is with postfix-2.5.6,1 on FreeBSD 7.2-RELEASE #0: Fri May 1 08:49:13 UTC 2009 GENERIC i386 This is with new postfix-2.6.1,1: # postconf -d | grep aliases alias_database = hash:/etc/mail/aliases alias_maps = hash:/etc/mail/aliases newaliases_path = /usr/local/bin/newaliases And this is with older postfix-2.5.6,1: # postconf -d | grep aliases alias_database = hash:/etc/aliases alias_maps = hash:/etc/aliases newaliases_path = /usr/bin/newaliases There is definitely incompatible change in defaults :o( Miroslav Lachman