According to Nate Williams:
> How do you cause 'vacation' to not send messages to the list? Doesn't
> the stock 'vacation' program as shipped in FreeBSD send them to the
> list?
It is supposed to notice that the mail has a Precedence: header and not send
any vacation notice to any mail with one.
-=-=-
case 'P': /* "Precedence:" */
cont = 0;
if (strncasecmp(buf, "Precedence", 10) ||
(buf[10] != ':' && buf[10] != ' ' && buf[10] != '\t'))
break;
if (!(p = index(buf, ':')))
break;
while (*++p && isspace(*p));
if (!*p)
break;
if (!strncasecmp(p, "junk", 4) ||
!strncasecmp(p, "bulk", 4) ||
!strncasecmp(p, "list", 4))
exit(0);
break;
-=-=-
The standard configuration for Majordomo is to add "Precedence: junk" to all
mails.
--
Ollivier ROBERT -=- FreeBSD: The Power to Serve! -=- [EMAIL PROTECTED]
FreeBSD keltia.freenix.fr 4.0-CURRENT #74: Thu Sep 9 00:20:51 CEST 1999
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message
- Re: People getting automatically unsub'ed from -arch Andre Oppermann
- Re: People getting automatically unsub'ed from -arch Brad Knowles
- Re: People getting automatically unsub'ed from -arch Ollivier Robert
- Re: People getting automatically unsub'ed from -arch Anton Berezin
- Re: People getting automatically unsub'ed from -arch Ollivier Robert
- Re: People getting automatically unsub'ed from -arch Brad Knowles
- Re: People getting automatically unsub'ed from -arch Ollivier Robert
- Re: People getting automatically unsub'ed from -arch Jonathan M. Bresler
- Re: People getting automatically unsub'ed from -arch David Scheidt
- Re: People getting automatically unsub'ed from -arch Jonathan M. Bresler
- Re: People getting automatically unsub'ed from -arch Ollivier Robert
- Re: People getting automatically unsub'ed from -arch Rodney W. Grimes
- Re: People getting automatically unsub'ed from -arch Jonathan M. Bresler
- Re: People getting automatically unsub'ed from -arch Doug
- Re: People getting automatically unsub'ed from -arch Rodney W. Grimes
- Re: People getting automatically unsub'ed from -arch Ben Smithurst
- Re: People getting automatically unsub'ed from -arch Kenneth D. Merry
- Re: People getting automatically unsub'ed from -arch Jonathan M. Bresler
- Re: People getting automatically unsub'ed from -arch Sean Eric Fagan
- Re: People getting automatically unsub'ed from -arch Kip Macy
- Re: People getting automatically unsub'ed from -arch Jonathan M. Bresler
