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

Reply via email to