From owner-freebsd-stable Mon Aug 12 9:26:41 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 922E937B400 for ; Mon, 12 Aug 2002 09:26:37 -0700 (PDT) Received: from rwcrmhc51.attbi.com (rwcrmhc51.attbi.com [204.127.198.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id 294A743E42 for ; Mon, 12 Aug 2002 09:26:32 -0700 (PDT) (envelope-from davep@meduseld.net) Received: from baloo.meduseld.net ([66.30.120.53]) by rwcrmhc51.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020812162630.DPZL19356.rwcrmhc51.attbi.com@baloo.meduseld.net> for ; Mon, 12 Aug 2002 16:26:30 +0000 Received: from localhost (localhost [127.0.0.1]) by baloo.meduseld.net (8.12.3/8.12.3) with ESMTP id g7CGQdQx072024 for ; Mon, 12 Aug 2002 12:26:39 -0400 (EDT) (envelope-from davep@meduseld.net) Date: Mon, 12 Aug 2002 12:26:38 -0400 (EDT) Message-Id: <20020812.122638.115901950.davep@meduseld.net> To: freebsd-stable@FreeBSD.ORG Subject: Request for micro patch to /etc/defaults/rc.conf From: "David A. Panariti" X-Attribution: davep X-Mailer: Mew version 2.2 on XEmacs 21.4.8 (Honest Recruiter) Mime-Version: 1.0 Content-Type: Multipart/Mixed; boundary="--Next_Part(Mon_Aug_12_12:26:38_2002_563)--" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ----Next_Part(Mon_Aug_12_12:26:38_2002_563)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit In /etc/defaults/rc.conf, the variants of sendmail are started up with differing -L options for easy log-file identification. However, both sendmail_submit and regular sendmail use -L sm-mta. This reduces the usefulness of -L, since two variants use the same label. I know I can change this in my /etc/rc.conf, but I believe this is universally useful. (If not, I feel it is at least not harmful), and removes the headache of watching sendmail_submit_flags for changes. In the patch, I use `sm-lmta' for the local mta label. However, any unique, informative label would be useful. `sm-submit' is another obvious choice. I'm cvsupping the security branch, so if this has been changed in stable please excuse the interruption. thanks, davep ----Next_Part(Mon_Aug_12_12:26:38_2002_563)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="rc.conf.diff" --- rc.conf.orig2 Mon Aug 12 12:03:28 2002 +++ rc.conf Mon Aug 12 12:03:53 2002 @@ -329,7 +329,7 @@ # If NONE, don't start any sendmail processes. sendmail_flags="-L sm-mta -bd -q30m" # Flags to sendmail (as a server) sendmail_submit_enable="YES" # Start a localhost-only MTA for mail submission -sendmail_submit_flags="-L sm-mta -bd -q30m -ODaemonPortOptions=Addr=localhost" +sendmail_submit_flags="-L sm-lmta -bd -q30m -ODaemonPortOptions=Addr=localhost" # Flags for localhost-only MTA sendmail_outbound_enable="YES" # Dequeue stuck mail (YES/NO). sendmail_outbound_flags="-L sm-queue -q30m" # Flags to sendmail (outbound only) ----Next_Part(Mon_Aug_12_12:26:38_2002_563)---- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message