From owner-freebsd-bugs@FreeBSD.ORG Tue Oct 14 06:20:18 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4A8F16A4B3 for ; Tue, 14 Oct 2003 06:20:18 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8866743FB1 for ; Tue, 14 Oct 2003 06:20:15 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h9EDKFFY029801 for ; Tue, 14 Oct 2003 06:20:15 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9EDKFSu029800; Tue, 14 Oct 2003 06:20:15 -0700 (PDT) (envelope-from gnats) Resent-Date: Tue, 14 Oct 2003 06:20:15 -0700 (PDT) Resent-Message-Id: <200310141320.h9EDKFSu029800@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, n-kogane@syd.odn.ne.jp Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 37D7916A4B3 for ; Tue, 14 Oct 2003 06:10:19 -0700 (PDT) Received: from t-mta2.odn.ne.jp (mfep2.odn.ne.jp [143.90.131.180]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3FAD943FD7 for ; Tue, 14 Oct 2003 06:10:17 -0700 (PDT) (envelope-from kogane@syd.odn.ne.jp) Received: from kces1.koganemaru.co.jp ([211.127.63.85]) by t-mta2.odn.ne.jp with ESMTP id <20031014131015632.HTIX.2074.t-mta2.odn.ne.jp@mta2.odn.ne.jp> for ; Tue, 14 Oct 2003 22:10:15 +0900 Received: (from kogane@localhost) by kces1.koganemaru.co.jp (8.8.8/3.6W) id WAA00435; Tue, 14 Oct 2003 22:13:19 +0900 (JST) Message-Id: <200310141313.WAA00435@kces1.koganemaru.co.jp> Date: Tue, 14 Oct 2003 22:13:19 +0900 (JST) From: n-kogane@syd.odn.ne.jp To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: misc/58008: sysinstall postfix installation problem X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: n-kogane@syd.odn.ne.jp List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Oct 2003 13:20:18 -0000 >Number: 58008 >Category: misc >Synopsis: sysinstall postfix installation problem >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 14 06:20:14 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Nobuyuki Koganemaru >Release: FreeBSD 4.9-RC i386 >Organization: KOGANEMARU Computer Engineering Service Corporation. >Environment: FreeBSD kcesx20.koganemaru.co.jp 4.9-RC FreeBSD 4.9-RC #0: Sun Oct 12 01:15:50 JST 2003 root@kcesx20.koganemaru.co.jp:/usr/obj/usr/src.stable.5/sys/GENERIC i386 >Description: sysinstall postfix installation problem. If the "pcre" package is not installed "postfix" package installation goes wrong. >How-To-Repeat: /stand/sysinstall -> Configure -> Networking -> Mail -> Postfix >Fix: --- src/release/sysinstall/config.c.orig Fri Oct 3 23:41:43 2003 +++ src/release/sysinstall/config.c Tue Oct 14 19:31:06 2003 @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $FreeBSD: src/release/sysinstall/config.c,v 1.156.2.36 2003/09/29 15:53:54 trhodes Exp $ + * $FreeBSD: src/release/sysinstall/config.c,v 1.156.2.36 2003/09/29 15:53:54 trhodes Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -1053,7 +1053,10 @@ msgError("Error setting the enviroment variable POSTFIX_DEFAULT_MTA: %s (%u)", strerror(errno), errno); - ret = package_add("postfix"); + ret = package_add("pcre"); + if(DITEM_STATUS(ret) != DITEM_FAILURE) { + ret = package_add("postfix"); + } unsetenv("POSTFIX_DEFAULT_MTA"); if(DITEM_STATUS(ret) == DITEM_FAILURE) { >Release-Note: >Audit-Trail: >Unformatted: