Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 11 Jul 1996 15:02:27 -0700 (MST)
From:      Don Yuniskis <dgy@rtd.com>
To:        csdayton@midway.uchicago.edu
Cc:        dgy@rtd.com, dbabler@Rigel.orionsys.com, freebsd-ports@freefall.freebsd.org
Subject:   Re: port of Majordomo v1.93
Message-ID:  <199607112202.PAA22290@seagull.rtd.com>
In-Reply-To: <199607112148.QAA02412@woodlawn.uchicago.edu> from "Soren Dayton" at Jul 11, 96 04:48:38 pm

next in thread | previous in thread | raw e-mail | index | archive | help
It seems that Soren Dayton said:
 
> > I believe V8 sendmail ignores "T" entries in the sendmail.cf file...
> 
> it only says it does :(

Hmmm... a snippet from /usr/src/usr.sbin/sendmail/src/readcf.c that
parses the configuration file:

		/* interpret this line */
		errno = 0;
		switch (bp[0])
		{
		  case '\0':
		  case '#':		/* comment */
			break;

		  ...

		  case 'T':		/* trusted user(s) */
			/* this option is obsolete, but will be ignored */
			break;

		  case 'V':		/* configuration syntax version */
			for (p = &bp[1]; isascii(*p) && isspace(*p); p++)
				continue;

                  ...

I don't know what version *you* are running...  this is 8.6.12

--don



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199607112202.PAA22290>