[Mailman-Users] pending subscribers

Mark Sapiro msapiro at value.net
Wed Nov 14 16:53:34 CET 2007


zbigniew szalbot wrote:
>
>I uploaded the script to /usr/local/mailman/bin
>but when I run list_pending adwent
>I get "list_pending: command not found"
>
>$ l
>-rwxr-xr-x  1 root  mailman   4708 Nov 14 16:32 list_pending


Check the shebang line at the top of the script.

#! /usr/bin/env python

This is an attempt to run python in a system independent way, but it
relies on the presence of /usr/bin/env which apparently is missing or
in a different place on your system.

You can replace the whole thing with

#! /path/to/python

if you prefer.

-- 
Mark Sapiro <msapiro at value.net>       The highway is for gamblers,
San Francisco Bay Area, California    better use your sense - B. Dylan



More information about the Mailman-Users mailing list