Re: HEADS UP: sendmail related changes

2000-10-24 Thread Warner Losh

In message [EMAIL PROTECTED] "Akinori MUSHA" writes:
: Would you add an UPDATING entry for this?  Many people have been
: reporting problems with the local mailer not knowing these changes.

It is on my queue of things to add to UPDATING as I find the time.
I'll try to get to it quickly.

Warner


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: HEADS UP: sendmail related changes

2000-10-15 Thread Andreas Klemm

On Tue, Oct 10, 2000 at 11:19:43AM -0700, Gregory Neil Shapiro wrote:
 5. The sendmail cf building tools (contrib/sendmail/cf) are installed in
/usr/share/sendmail/cf.

Hurray !

-- 
Andreas Klemm   Powered by FreeBSD SMP
Songs from our band 64Bitshttp://www.apsfilter.org/64bits.html
My homepage http://people.FreeBSD.ORG/~andreas
Please note: Apsfilter got a NEW HOMEhttp://www.apsfilter.org/



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: HEADS UP: sendmail related changes

2000-10-14 Thread Leif Neland



On Tue, 10 Oct 2000, Gregory Neil Shapiro wrote:

 The following changes have been made in -CURRENT:
 
 1. mail.local(8) is no longer installed as a set-user-id binary.
 
If you are using a /etc/mail/sendmail.cf from the default sendmail.cf
included with FreeBSD any time after 3.1.0, you are fine.  If you are
using a hand-configured sendmail.cf and mail.local for delivery, check
to make sure the F=S flag is set on the Mlocal line.  Those with .mc
files who need to add the flag can do so by adding the following line to
their your .mc file and regenerating the sendmail.cf file:

Is there a way to make make world use my own sendmail.mc?

Leif




To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: HEADS UP: sendmail related changes

2000-10-14 Thread Gregory Neil Shapiro

leifn Is there a way to make make world use my own sendmail.mc?

There will be soon.  I hope to have it in place before or during BSDcon.




To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: HEADS UP: sendmail related changes

2000-10-14 Thread Peter Wemm

Gregory Neil Shapiro wrote:
 leifn Is there a way to make make world use my own sendmail.mc?
 
 There will be soon.  I hope to have it in place before or during BSDcon.

Yes, there has been one for ages.  Add:  "SENDMAIL_CF= myfile.cf"
to /etc/make.conf, and the sendmail makefiles will build it from
myfile.mc and install it as part of every buildworld.

Cheers,
-Peter
--
Peter Wemm - [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED]
"All of this is for nothing if we don't go to the stars" - JMS/B5



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



HEADS UP: sendmail related changes

2000-10-10 Thread Gregory Neil Shapiro

The following changes have been made in -CURRENT:

1. mail.local(8) is no longer installed as a set-user-id binary.

   If you are using a /etc/mail/sendmail.cf from the default sendmail.cf
   included with FreeBSD any time after 3.1.0, you are fine.  If you are
   using a hand-configured sendmail.cf and mail.local for delivery, check
   to make sure the F=S flag is set on the Mlocal line.  Those with .mc
   files who need to add the flag can do so by adding the following line to
   their your .mc file and regenerating the sendmail.cf file:

   MODIFY_MAILER_FLAGS(`LOCAL', `+S')dnl

   Note that FEATURE(`local_lmtp') already does this.

2. sendmail(8) is now built with STARTTLS support unless NO_OPENSSL is set.

3. The default /etc/mail/sendmail.cf disables the SMTP EXPN and VRFY
   commands.

4. Now using sendmail's version of vacation(1).

   This change should be transparent except for the new options/features
   available.

5. The sendmail cf building tools (contrib/sendmail/cf) are installed in
   /usr/share/sendmail/cf.


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: sendmail related changes

2000-10-01 Thread Archie Cobbs

Gregory Neil Shapiro writes:
 sendmail's version of vacation is completely backwards compatible with the
 existing version.  It also contains new features and bug fixes that are not
 in the current FreeBSD version.  This will take care of PR bin/15227.
 
 2. Copy cf config building tree into /usr/share/sendmail/cf

Yes to all three!

For #2, we can maybe go a step further.. the README in that directory
is somewhat daunting.

For example, we could also copy the /usr/src/etc/sendmail directory
into /usr/share/sendmail/cf/freebsd or something like that (maybe
with a simpler Makefile) and include a few more example config
files besides "freefall.mc" that demonstrate how to configure in
various scenarios.

-Archie

___
Archie Cobbs   *   Whistle Communications, Inc.  *   http://www.whistle.com


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



sendmail related changes

2000-09-30 Thread Gregory Neil Shapiro

There are some sendmail related changes I would like to make in the next
few days.  Some may be controversial so I am sending out this mail first.
I would appreciate feedback on any of these items.  If I don't hear any
major objections, I'll go ahead with the changes.

1. Use sendmail's version of vacation

sendmail's version of vacation is completely backwards compatible with the
existing version.  It also contains new features and bug fixes that are not
in the current FreeBSD version.  This will take care of PR bin/15227.

2. Copy cf config building tree into /usr/share/sendmail/cf

I've been getting many requests to provide the cf tree in the installed
system so users can configure sendmail without installing the FreeBSD
sources.  I can't see any reason not to do this.  It will also cut down on
support issues for sendmail.org.  This will take care of PR bin/19790.  It
can also be used to close PR bin/13759 and bin/19897.

3. mail.local no longer installed setuid root

Since 8.10, the open source distribution of sendmail no longer installs
mail.local as a setuid binary.  To accomplish this, users needed to
configure sendmail to call mail.local as root.  This is done by a one line
configuration tweak.  This tweak isn't necessary if the config already uses
FEATURE(local_lmtp) as is recommended (freebsd.mc already does this).  We
(sendmail.org) decided that one less setuid binary on the filesystem was
worth the possible support burden for upgrading users.  As it turns out,
nobody reported any problems.  I think we should do the same for FreeBSD's
installation.


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: sendmail related changes

2000-09-30 Thread Brian F. Feldman

Gregory Neil Shapiro [EMAIL PROTECTED] wrote:
 There are some sendmail related changes I would like to make in the next
 few days.  Some may be controversial so I am sending out this mail first.
 I would appreciate feedback on any of these items.  If I don't hear any
 major objections, I'll go ahead with the changes.
 []

Without reservation, I'd say each one of these is a great idea!  Just 
registering my support, especially for installing the cf tree.

--
 Brian Fundakowski Feldman   \  FreeBSD: The Power to Serve!  /
 [EMAIL PROTECTED]`--'




To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message