[ Hugo Andrade Cartaxeiro writes: ]
> Sorry if this is a naive question, but why do I get a:
>
> BOUNCE itf-workshop@research.ec.org: Admin request
>
> My list is closed, and the resend line looks like this:
>
> itf-workshop: "|/usr/local/majordomo/wrapper resend -p bulk -M 100000
> -l itf-workshop -f itf-workshop-owner -h research.ec.org -r
> itf-workshop -s itf-workshop-outgoing"
This may be a naive answer, but it looks to me like resend checks the
subject and body of mail for key words that indicate administrative
requests rather than real postings and bounces all such mail to the list
owner for appropriate action, either approval to post or response to a
mis-directed administrative request:
# check for administrivia requests
if (defined($opt_s) && ! defined($approved)
&& (/^subject:\s*subscribe\b/i ||
/^subject:\s*unsubscribe\b/i ||
/^subject:\s*help\b/i ||
/^subject:\s*RCPT:\b/ ||
/^subject:\s*Delivery Confirmation\b/ ||
/^subject:\s*NON-DELIVERY of:/ ||
/^subject:\s*Undeliverable Message\b/ ||
/^subject:\s*Receipt Confirmation\b/ ||
/^subject:\s*Failed mail\b/ ||
/^subject:\s.*\bchange\b.*\baddress\b/ ||
/^subject:\s*request\b.*\baddition\b/i)) {
&bounce("Admin request");
and:
# add admin-request recognition heuristics here... (body)
if (defined($opt_s) && ! defined($approved) && ($body_line++ < 5) &&
(
/\badd me\b/i
|| /\bdelete me\b/i || /\bremove\s+me\b/i
|| /\bchange\b.*\baddress\b/
|| /\bsubscribe\b/i || /^sub\b/i
|| /\bunsubscribe\b/i || /^unsub\b/i
|| /^\s*help\s*$/i # help
|| /^\s*info\s*$/i # info
|| /^\s*info\s+\S+\s*$/i # info list
|| /^\s*lists\s*$/i # lists
|| /^\s*which\s*$/i # which
|| /^\s*which\s+\S+\s*$/i # which address
|| /^\s*index\s*$/i # index
|| /^\s*index\s+\S+\s*$/i # index list
|| /^\s*who\s*$/i # who
|| /^\s*who\s+\S+\s*$/i # who list
|| /^\s*get\s+\S+\s*$/i # get file
|| /^\s*get\s+\S+\s+\S+\s*$/i # get list file
|| /^\s*approve\b/i
|| /^\s*passwd\b/i
|| /^\s*newinfo\b/i
|| /^\s*config\b/i
|| /^\s*newconfig\b/i
|| /^\s*writeconfig\b/i
|| /^\s*mkdigest\b/i
)) {
&bounce("Admin request");
}
If you really don't want this checking to be done, try turning off the
"administriva" option in your config file.
--
Dave Wolfe *Not a spokesman for Motorola* (512) 891-3246
Motorola MMTG 6501 Wm. Cannon Dr. W. OE112 Austin TX 78735-8598
References:
|
|