Date: Wed, 17 Feb 1999 00:31:08 +0200 From: Sheldon Hearn <axl@iafrica.com> To: FreeBSD-gnats-submit@freebsd.org Cc: Scott.Blachowicz@seaslug.org (ports/mail/nmh MAINTAINER) Subject: ports/10119: [PATCH] mail/nmh should use local pipe delivery, not SMTP Message-ID: <48075.919204268@axl.noc.iafrica.com>
next in thread | raw e-mail | index | archive | help
>Number: 10119 >Category: ports >Synopsis: [PATCH] mail/nmh should use local pipe delivery, not SMTP >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Feb 16 14:40:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Sheldon Hearn >Release: FreeBSD 4.0-CURRENT i386 >Organization: UUNET Internet Africa >Environment: FreeBSD 4.0-CURRENT #1: Mon Feb 15 19:34:06 SAST 1999 >Description: Currently the mail/nmh port configures nmh to use SMTP as the delivery method for outgoing mail. This is not ideal, since many machines will not accept SMTP connections from localhost, either because they run no listening daemon, or because they're wrapped up anally. >How-To-Repeat: N/A >Fix: By compiling nmh to open a pipe to the mta instead of connecting to port 25 on localhost, we improve the odds that the software will work out of the box on any given box. The following diff makes the required change. Index: Makefile =================================================================== RCS file: /home/ncvs/ports/mail/nmh/Makefile,v retrieving revision 1.11 diff -u -d -r1.11 Makefile --- Makefile 1999/02/11 08:57:13 1.11 +++ Makefile 1999/02/11 16:34:58 @@ -15,7 +15,8 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --libexecdir=${PREFIX}/libexec/nmh \ - --sysconfdir=${PREFIX}/etc/nmh --enable-nmh-pop + --sysconfdir=${PREFIX}/etc/nmh --enable-nmh-pop \ + --with-mts=sendmail MAN1= ali.1 anno.1 burst.1 comp.1 dist.1 flist.1 folder.1 forw.1 \ inc.1 mark.1 mh-chart.1 mhbuild.1 mhl.1 mhlist.1 mhmail.1 \ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?48075.919204268>