[Mailman-Users] passwords

2003-06-02 Thread CodyG
Hi All...

I'm new to using Mailman on my websites, so I have a lot of questions.

I set the option for sending monthly password reminders, thinking this sound like a 
good idea.  Then the reminder arrived last night and lo and behold it had a different 
password.

What's up with this?  Seems funky and will be totally confusing for my users.  So, I'm 
turning it off unless someone can explain to me why it works this way.

Thanks.
--
Mailman-Users mailing list
[EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/

This message was sent to: [EMAIL PROTECTED]
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] Mailman.Errors.NotAMemberError from passwordreminder cron

2003-06-02 Thread Eric D. Christensen
I had this problem a while back. Barry tracked it down to being a user
without a password. Thanks again Barry!.

Upgrade to 2.1.2. There are patches that were rolled onto 2.1.2 to deal
with this situation a little more gracefully.

Barry also sent me the following bin/withlist function to test fo
missing passwords. Save this to ban/verify.pl then invoke it as
'bin/withlist -r verify listname' (where listname is, of course, the
name of your list). Find you user with a null password and then set one
for them you'll all fixed. 

def verify(mlist):
members = {}
for m in mlist.members.keys():
members[m] = None
for m in mlist.digest_members.keys():
members[m] = None
for m, p in mlist.passwords.items():
if not members.has_key(m):
print 'password for non-member:', m
else:
members[m] = p
for m, p in members.items():
if p is None:
print 'no password for member:', m
print 'done'



-- 
Eric D. Christensen [EMAIL PROTECTED]
Proadmin, Inc.


--
Mailman-Users mailing list
[EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/

This message was sent to: [EMAIL PROTECTED]
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


[Mailman-Users] Virtual Host - adding to Mailman

2003-06-02 Thread G. Armour Van Horn
Greetings,

I've been through a ton of messages, the README-POSTFIX, alternate regexp
approach mentioned in there, and the alternate (by Dax Kelson) mentioned in
that. It's left me confused.

I have had Mailman running with Postfix for a couple of years, it currently is
at 2.0b3. (I will be installing 2.1.2 as soon as I send this message.) All of
the lists are standard, listname@virtuoso.domainvanhorn.com mail addresses,
with admin pages at that host as well. For political reasons, a customer wants
their seven lists to appear only in their own domains.
(cust-main@lists.customer.dom, [EMAIL PROTECTED]customer.dom, etc.), and they
would like the subscriber info pages and archives to be in their domain as well.

As a possible complication, it would be best if the current domain continues to
work so they don't have to deal with bouncing mail while all employees update
their address books.

So what's my best plan? How about the best documented?

Van


--
--
Sign up now for Quotes of the Day, a handful of quotations
on a theme delivered every morning.
Enlightenment! Daily, for free!
mailto:[EMAIL PROTECTED]

For web hosting and maintenance,
visit Van's home page: http://www.domainvanhorn.com/van/
--



--
Mailman-Users mailing list
[EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/

This message was sent to: [EMAIL PROTECTED]
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] upgrade from 2.1beta3 to 2.1 final

2003-06-02 Thread G. Armour Van Horn
Well, that was reassuring, so I ran ps aux | grep mail to dig out the syntax
for mailmanctl, and stopped it with

/usr/bin/python2 /home/mailman/bin/mailmanctl -s -q stop

I went to /usr/scr/mailman.2.1.2 and ran the exact same commands I used last
October to install 2.1b3. (Yes, I keep these things around, I hate haveing to
figure them out every few months.)

./configure --with-mail-gid=99 --with-cgi-gid=99 --prefix=/home/mailman
--with-python=/usr/bin/python2
 make install

When I restarted mailmanctl I get

[EMAIL PROTECTED] templates]$ /usr/bin/python2 /home/mailman/bin/mailmanctl -s
-q start
Site list is missing: mailman

The web interface appears to be running fine, but ps reports no mailman
processes, and messages are not being processed.

I realized that I was running as root when I did the install, so I did chown -R
mailman:mailman * from /home/mailman, and got the same result. I then
reconfigured and reinstalled. I had a couple of permission problems in foreign
language template directories, didn't see any other errors, but I still come up
with the same error on startup.

Mailman is totally down, so if anybody has a hint I'm standing by!

Van

Barry A. Warsaw wrote:

  MS == Marius Scurtescu [EMAIL PROTECTED] writes:

 MS I am running Maiman 2.1 beta 3 and I would like to
 MS upgrade to the final release.

 That's an easy upgrade.  Just stop mailmanctl, then configure and make
 install right over 2.1b3.  Then start mailmanctl again and you should
 be good to go.

 -Barry


--
--
Sign up now for Quotes of the Day, a handful of quotations
on a theme delivered every morning.
Enlightenment! Daily, for free!
mailto:[EMAIL PROTECTED]

For web hosting and maintenance,
visit Van's home page: http://www.domainvanhorn.com/van/
--



--
Mailman-Users mailing list
[EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/

This message was sent to: [EMAIL PROTECTED]
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] upgrade from 2.1beta3 to 2.1 final

2003-06-02 Thread Tom Eastep
On Sun, 01 Jun 2003 11:30:57 -0700, G. Armour Van Horn 
[EMAIL PROTECTED] wrote:


When I restarted mailmanctl I get

[EMAIL PROTECTED] templates]$ /usr/bin/python2 
/home/mailman/bin/mailmanctl -s
-q start
Site list is missing: mailman

A google search would have lead you to this post:
-
You need to have a mailing list named mailman. The INSTALL file says:
   - Create a site-wide mailing list.  This is the one that
 password reminders will appear to come from.  Usually this
 should be the mailman mailing list, but if you need to change
 this, be sure to change the MAILMAN_SITE_LIST variable in
 mm_cfg.py (see below).
 % bin/newlist mailman
 Follow the prompts, and see the README file for more
 information.
   - You should then subscribe yourself to the mailman list.
-
-Tom
--
Tom Eastep\ Shorewall - iptables made easy
Shoreline, \ http://www.shorewall.net
Washington USA  \ [EMAIL PROTECTED]
--
Mailman-Users mailing list
[EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
This message was sent to: [EMAIL PROTECTED]
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] upgrade from 2.1beta3 to 2.1 final

2003-06-02 Thread G. Armour Van Horn
Silly me, I searched the FAQs at www.list.org instead. But hey, you nailed
it and the lists appear to be up and running again. Thanks.

Van

Tom Eastep wrote:

 On Sun, 01 Jun 2003 11:30:57 -0700, G. Armour Van Horn
 [EMAIL PROTECTED] wrote:

  When I restarted mailmanctl I get
 
  [EMAIL PROTECTED] templates]$ /usr/bin/python2
  /home/mailman/bin/mailmanctl -s
  -q start
  Site list is missing: mailman
 

 A google search would have lead you to this post:
 -
 You need to have a mailing list named mailman. The INSTALL file says:
 - Create a site-wide mailing list.  This is the one that
   password reminders will appear to come from.  Usually this
   should be the mailman mailing list, but if you need to change
   this, be sure to change the MAILMAN_SITE_LIST variable in
   mm_cfg.py (see below).
   % bin/newlist mailman
   Follow the prompts, and see the README file for more
   information.
 - You should then subscribe yourself to the mailman list.
 -
 -Tom
 --
 Tom Eastep\ Shorewall - iptables made easy
 Shoreline, \ http://www.shorewall.net
 Washington USA  \ [EMAIL PROTECTED]

--
--
Sign up now for Quotes of the Day, a handful of quotations
on a theme delivered every morning.
Enlightenment! Daily, for free!
mailto:[EMAIL PROTECTED]

For web hosting and maintenance,
visit Van's home page: http://www.domainvanhorn.com/van/
--



--
Mailman-Users mailing list
[EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/

This message was sent to: [EMAIL PROTECTED]
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] Version 2.1.2 on Redhat Linux 7.3

2003-06-02 Thread Paul H Byerly
Ian Fenn wrote:
Is it possible to run Version 2.1.2 of Mailman on Redhat Linux 7.3?

I asked my hosting provider and they wrote:

 Here is some information:

 Your current versions are:

 python-1.5.2-43.73
 python2-2.2.2-11.7.3
 mailman-2.0.13-1

 All are already the latest supported versions for RedHat 7.3. What
 you probably need is python-2.2.2-26 or newer, with mailman-2.1-8
 which show the following dependencies and some others:
 The python2 is fine.  Compile from source, and be sure you point to 
the proper python with something like this:

./configure  --with-python=/usr/local/bin/python2.2

 Or where ever python lives on your system.

 Paul 
--
Mailman-Users mailing list
[EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/

This message was sent to: [EMAIL PROTECTED]
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] Mailman.Errors.NotAMemberError from passwordreminder cron

2003-06-02 Thread Jim Tittsler
On Sun, Jun 01, 2003 at 09:24:08AM -0700, Eric D. Christensen wrote:
 Upgrade to 2.1.2. There are patches that were rolled onto 2.1.2 to deal
 with this situation a little more gracefully.

I am using 2.1.2, so perhaps the patches didn't make it.

 Barry also sent me the following bin/withlist function to test fo
 missing passwords. Save this to ban/verify.pl then invoke it as
 'bin/withlist -r verify listname' (where listname is, of course, the
 name of your list). Find you user with a null password and then set one
 for them you'll all fixed. 

But the user that caused the exception indeed did not have a
password.  Thanks!



--
Mailman-Users mailing list
[EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/

This message was sent to: [EMAIL PROTECTED]
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


[Mailman-Users] Digest Errors

2003-06-02 Thread Larry Hansford
My system (Red Hat 7.2, Mailman 2.1.2) has been running fine since it was 
installed, until this past Thursday.  It is now giving errors on the daily 
senddigests command:

Cron [EMAIL PROTECTED] /usr/local/bin/python -S   /home/mailman/cron/senddigests

Error Message:

Traceback (most recent call last):
  File /home/mailman/cron/senddigests, line 94, in ?
main()
  File /home/mailman/cron/senddigests, line 86, in main
mlist.send_digest_now()
  File /home/mailman/Mailman/Digester.py, line 60, in send_digest_now
ToDigest.send_digests(self, mboxfp)
  File /home/mailman/Mailman/Handlers/ToDigest.py, line 130, in send_digests
send_i18n_digests(mlist, mboxfp)
  File /home/mailman/Mailman/Handlers/ToDigest.py, line 303, in 
send_i18n_digests
msg = scrubber(mlist, msg)
  File /home/mailman/Mailman/Handlers/Scrubber.py, line 257, in process
url = save_attachment(mlist, part, dir)
  File /home/mailman/Mailman/Handlers/Scrubber.py, line 349, in 
save_attachment
ext = guess_extension(ctype, fnext)
  File /home/mailman/Mailman/Handlers/Scrubber.py, line 80, in 
guess_extension
if ext in all:
TypeError: iterable argument required

I have not made any changes to the system, other than installing the 
updates with Red Hat's up2date program.

Suggestions on what is causing this?

Thanks!

Larry
 

--
Mailman-Users mailing list
[EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
This message was sent to: [EMAIL PROTECTED]
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] MySQL?

2003-06-02 Thread Christopher Kings-Lynne
 Ideally, the MySQL bridge would be an option or add-on, much like say,
 the htdig search tool, the Mhonarc hook, etc. Organisations such as
 yours would not be obliged to use it.

So long as it didn't ONLY support MySQL, and supported PostgreSQL, etc. (I
think cursor's would be pretty much essential) then I wouldn't complain.

Chris


--
Mailman-Users mailing list
[EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/

This message was sent to: [EMAIL PROTECTED]
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


[Mailman-Users] Mailman Wrapper non-zero return codes...

2003-06-02 Thread Max Clements
Does anyone have a list of the non-zero return codes that the mailman wrapper
returns as in 

Child process of mailman_transport transport returned 2 from command:
/usr/local/mailman/mail/mailman

Or 

Child process of mailman_transport transport returned 6 from command:
/usr/local/mailman/mail/mailman

I have browsed all the FAQ's and cannot find anything obvious...

Cheerio

--
Max Clements
Technical Specialist - RD
SWiST Group Technologies (Pty) Ltd. 
Cell: +27 82 564 9294
Email: [EMAIL PROTECTED]

Stein House, Brandwacht Office Park, 
STELLENBOSCH, 7130, South Africa

WWW: http://www.swistgroup.com
Tel: +27 21 888-7920, Fax: +27 21 400-8013  
Click here to view our e-mail legal notice: http://www.swistgroup.com/email.htm
or call: +27 21 888 7920

- Monday is an awful way to spend 1/7th of your life!

--
Mailman-Users mailing list
[EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/

This message was sent to: [EMAIL PROTECTED]
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


[Mailman-Users] Where are the archives?

2003-06-02 Thread McPherson, Dale L.
As a newbie in the group, I'd like to be able to search the archives, but
the 
URL provided in listed messages,

http://www.mail-archive.com/mailman-users%40python.org/
http://www.mail-archive.com/mailman-users%40python.org/ 

produces a Not Found error. Is there actually a usable archive for this
list?

 

Dale M.

 

--
Mailman-Users mailing list
[EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/

This message was sent to: [EMAIL PROTECTED]
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


[Mailman-Users] Re: [Mailman-Developers] PROBLEM withAdministrative Requests

2003-06-02 Thread Barry Warsaw
On Sat, 2003-05-17 at 00:12, Kory Wheatley wrote:
 I've sent this email twice and no one has responded to this problem, I would really  
 appreciate a response.
 
 I receive this below error when I go into the Administrative Interface and
 check Preserve messsages for the site administrator and then I check the
 discard option.  Once I click submit this is what I receive below.
 
 
 BUG in Mailman version 2.1.1
 We're sorry, we hit a bug!
 
 If you would like to help us identify the problem, please email a copy 
 of this page to the webmaster for this site with a description of what 
 happened. Thanks!
 
 
 Traceback:
 
 Traceback (most recent call last):
   File /home/mailman/scripts/driver, line 87, in run_main
 main()
   File /home/mailman/Mailman/Cgi/admindb.py, line 163, in main
 process_form(mlist, doc, cgidata)
   File /home/mailman/Mailman/Cgi/admindb.py, line 681, in process_form
 forward, forwardaddr)
   File /home/mailman/Mailman/ListAdmin.py, line 184, in HandleRequest
 forward, addr)
   File /home/mailman/Mailman/ListAdmin.py, line 262, in __handlepost
 msg = cPickle.load(fp)
 ValueError: could not convert string to float

Hmm, I just tried this under MM 2.1.2+ (cvs) and Python 2.2.3 and it
works okay for me.  What version of Python are you using?

-Barry



--
Mailman-Users mailing list
[EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/

This message was sent to: [EMAIL PROTECTED]
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org