[Mailman-Users] (no subject)

2004-09-13 Thread Euler Ricardo Rodrigues Ribeiro

--
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/


[Mailman-Users] How do I make a one way list ? :)

2004-09-13 Thread sven osterwalder
Hello,
how do I make a one way list? I want, that just one address can send to the list and 
all others get rejected. How do I do this ?

Thanks & Greetings

Sven

--
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/


Re: [Mailman-Users] How do I make a one way list ? :)

2004-09-13 Thread Al Black
Hi Sven,

On Mon, 2004-09-13 at 08:31, sven osterwalder wrote:
> Hello,
> how do I make a one way list? I want, that just one address can send to the list and 
> all others get rejected. How do I do this ?

What you are trying to configure is called a moderated or announcement
list.  For directions on how to set it up go to:

http://www.python.org/cgi-bin/faqw-mm.py> 

and search for "announcement".

al


--
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/


Re: [Mailman-Users] Custom header

2004-09-13 Thread David Cake
At 3:03 PM +0900 2/9/04, Jim Tittsler wrote:
On Aug 31, 2004, at 13:42, David Cake wrote:
	I guess my questions really is 'do the existing per-list 
customisation options include any way of changes to the mail 
headers beyond what is already accessible from the GUI?'
	And, as a followup, if it requires source code level changes, 
is there a sane and sensible way of doing these on a per list basis 
so my installation remains upgradable? I know python, but I'm in no 
hurry to make by installation unmaintainable.
I think the best way to do this sort of thing is add a handler to 
that list's pipeline that does the processing you want.  If you 
created a DavidsHeader.py in your Mailman/Handlers directory that 
contained simply:

#
# DavidsHeader.py
"""Add a list specific header
"""
def process(mlist, msg, msgdata):
msg['X-Davids-Header'] = 'my header text'
And then add that handler to the pipeline for the list in question 
(say after the CookHeaders handler) using withlist:
$ bin/withlist -l mylist
 >>>m.pipeline.insert(m.pipeline.index('CookHeaders')+1, 'DavidsHeader')
m.Save()
{Ctrl-D}
Your list will be processed with the additional handler that does 
nothing but add a header.
	Apparently, lists do not have a pipeline attribute by 
default? At least, the above code does not work, and I got the 
impression from comments in Default.py that a pipeline attribute was 
something a list could have but usually did not.
	Thanks In Advance

David
--
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/


[Mailman-Users] create list on subscribe

2004-09-13 Thread martin f krafft
Hi all,

I want to create a listserv to allow folks to subscribe to single
bugs in the Debian BTS. Instead of creating the 27 lists up
front, I want them to be created as people subscribe (if the list
name matches a regexp or list of conditions).

I know Mailman better than any other MLM, so I would not mind using
it for this task. However, I am not sure it can do what I want.

If Mailman can't be tweaked into doing this, do you guys know of
a software than can do it?

-- 
martin;  (greetings from the heart of the sun.)
  \ echo mailto: !#^."<*>"|tr "<*> mailto:"; [EMAIL PROTECTED]
 
invalid/expired pgp subkeys? use subkeys.pgp.net as keyserver!
spamtraps: [EMAIL PROTECTED]
 
... and don't get caught in the .NET!


signature.asc
Description: Digital signature
--
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/

[Mailman-Users] What does patching mailman overwrite?

2004-09-13 Thread Brendan Chard
I have a working version of mailman 2.1.4 but want to install the HTDIG
search for the archives.

I have successfully patched my original build files with the HTDIG patch and
am now at the point where I should run make INSTALL.  I know from the FAQ
that my lists, list data, and mm_cfg.py will not be affected by this
procedure but what about changes I have made to the default web interface
templates and the HTMLFormatter.py file?

-Brendan

--
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/


Re: [Mailman-Users] create list on subscribe

2004-09-13 Thread Brad Knowles
At 3:53 PM +0200 2004-09-13, martin f krafft wrote:
 I want to create a listserv to allow folks to subscribe to single
 bugs in the Debian BTS. Instead of creating the 27 lists up
 front, I want them to be created as people subscribe (if the list
 name matches a regexp or list of conditions).
Ouch!
 I know Mailman better than any other MLM, so I would not mind using
 it for this task. However, I am not sure it can do what I want.
	Nope.  At least, not easily.  This would most likely require 
significant code modifications.

 If Mailman can't be tweaked into doing this, do you guys know of
 a software than can do it?
Nope.  Let us know if you find any that can.
--
Brad Knowles, <[EMAIL PROTECTED]>
"Those who would give up essential Liberty, to purchase a little
temporary Safety, deserve neither Liberty nor Safety."
-- Benjamin Franklin (1706-1790), reply of the Pennsylvania
Assembly to the Governor, November 11, 1755
  SAGE member since 1995.  See  for more info.
--
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/


[Mailman-Users] mailman - help

2004-09-13 Thread Roseli Ribeiro
Please, I don't Kwon how to do mailman send me an error message, when it

doesn't send a message for all  email addresses of the list. I need to
know
who doesn't received the message.
Thank you
Roseli




--
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/


[Mailman-Users] senddigests error

2004-09-13 Thread Paul Williams
We are running mailman-2.1.1-5 on a Redhat 9 server.
Recently, (I think on Aug 30) we started getting the following error messages
Subject: Cron <[EMAIL PROTECTED]> /usr/bin/python -S /var/mailman/cron/senddigests
X-Cron-Env: 
X-Cron-Env: 
X-Cron-Env: 
X-Cron-Env: 
Traceback (most recent call last):
  File "/var/mailman/cron/senddigests", line 94, in ?
main()
  File "/var/mailman/cron/senddigests", line 86, in main
mlist.send_digest_now()
  File "/var/mailman/Mailman/Digester.py", line 60, in send_digest_now
ToDigest.send_digests(self, mboxfp)
  File "/var/mailman/Mailman/Handlers/ToDigest.py", line 123, in send_digests
send_i18n_digests(mlist, mboxfp)
  File "/var/mailman/Mailman/Handlers/ToDigest.py", line 295, in 
send_i18n_digests
msg = scrubber(mlist, msg)
  File "/var/mailman/Mailman/Handlers/Scrubber.py", line 257, in process
url = save_attachment(mlist, part, dir)
  File "/var/mailman/Mailman/Handlers/Scrubber.py", line 348, in 
save_attachment
fnext = os.path.splitext(msg.get_filename(''))[1]
  File "/var/mailman/pythonlib/email/Message.py", line 683, in get_filename
filename = self.get_param('filename', missing, 'content-disposition')
  File "/var/mailman/pythonlib/email/Message.py", line 566, in get_param
for k, v in self._get_params_preserve(failobj, header):
  File "/var/mailman/pythonlib/email/Message.py", line 516, in 
_get_params_preserve
params = Utils.decode_params(params)
  File "/var/mailman/pythonlib/email/Utils.py", line 337, in decode_params
charset, language, value = decode_rfc2231(EMPTYSTRING.join(value))
  File "/var/mailman/pythonlib/email/Utils.py", line 283, in decode_rfc2231
charset, language, s = s.split("'", 2)
ValueError: unpack list of wrong size


We had a similar problem a couple of months ago and someone
recommended we
Edit /var/mailman/Mailman/Handlers/Scrubber.py
line 280, changed
if charset is None or charset == 'us-ascii':
to
if charset is None or charset == '' or charset == 'us-ascii':
Then I ran as user mailman
   ./cron/senddigests -l on_the_problem_list
This seemed to fix the problem, but now we are getting a similar problem.
Does anyone have an idea what is happening, and how to fix the problem?
If one list is causing a problem, how can you identify which list is
causing the problem?
Thanks,
paulw
--
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/


[Mailman-Users] administrator only send to list

2004-09-13 Thread Andy Morris
Is it possible for only the administrator or moderator to send emails to 
the list or restrict all users from sending to a list?

thanks,
andy morris
--
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/


[Mailman-Users] (no subject)

2004-09-13 Thread Andy Morris
forget this post, after send the email i did one more search and found 
my answer.

thanks mailman you have a great system.
andy morris
--
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/


[Mailman-Users] Data Back and Traffic.

2004-09-13 Thread [EMAIL PROTECTED]
I you accidentally delete your list and archives, is there any way to 
get the data back?  And does anyone know what the limits to email 
traffic are on this system?
Jonathan
Zzizzle.com
Adventures in human happiness.

--
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/


[Mailman-Users] OutgoingRunner Failing

2004-09-13 Thread David Richards
Hi all,

I have the OutgoingRunner process failing quite regularly, and this has 
resulted in a build up of mail in the qfiles/out directory.  How do I find out 
what is going on in this process for it to be failing like this?

Mailman version: 2.1.5
Platform: Linux copperhead.qut.edu.au 2.4.9-e.27smp #1 SMP Tue Aug 5 15:49:54 
EDT 2003 i686 unknown  (Redhat Enterprise)

See logs:

Sep 13 17:18:04 2004 (12790) OutgoingRunner qrunner started.
(pid: 30230, sig: None, sts: 1, class: OutgoingRunner, slice: 1/1) [restarting]
Sep 13 17:20:11 2004 (11267) OutgoingRunner qrunner started.
(pid: 12790, sig: None, sts: 1, class: OutgoingRunner, slice: 1/1) [restarting]
Sep 13 17:20:15 2004 (14127) OutgoingRunner qrunner started.
(pid: 11267, sig: None, sts: 1, class: OutgoingRunner, slice: 1/1) [restarting]
Sep 13 17:20:22 2004 (11356) OutgoingRunner qrunner started.
(pid: 14127, sig: None, sts: 1, class: OutgoingRunner, slice: 1/1) [restarting]
Sep 13 17:23:51 2004 (16171) OutgoingRunner qrunner started.
(pid: 11356, sig: None, sts: 1, class: OutgoingRunner, slice: 1/1) [restarting]
Sep 13 17:23:56 2004 (12702) OutgoingRunner qrunner started.
(pid: 16171, sig: None, sts: 1, class: OutgoingRunner, slice: 1/1) [restarting]
Sep 13 17:24:09 2004 (16339) OutgoingRunner qrunner started.
(pid: 12702, sig: None, sts: 1, class: OutgoingRunner, slice: 1/1) [restarting]
Sep 13 17:24:13 2004 (2321) Qrunner OutgoingRunner reached maximum restart 
limit of 10, not restarting.
(pid: 16339, sig: None, sts: 1, class: OutgoingRunner, slice: 1/1) [restarting]
Sep 13 18:29:21 2004 (20319) OutgoingRunner qrunner started.
(pid: 20319, sig: None, sts: 1, class: OutgoingRunner, slice: 1/1) [restarting]
Sep 13 18:59:32 2004 (3045) OutgoingRunner qrunner started.
(pid: 3045, sig: None, sts: 1, class: OutgoingRunner, slice: 1/1) [restarting]
Sep 13 19:14:34 2004 (9761) OutgoingRunner qrunner started.
(pid: 9761, sig: None, sts: 1, class: OutgoingRunner, slice: 1/1) [restarting]
Sep 13 19:33:24 2004 (18412) OutgoingRunner qrunner started.
(pid: 18412, sig: None, sts: 1, class: OutgoingRunner, slice: 1/1) [restarting]
Sep 13 19:48:36 2004 (7608) Qrunner OutgoingRunner reached maximum restart 
limit of 10, not restarting.

Thanks, 


David Richards
Senior Network Programmer
Information Technology Services
Queensland University of Technology
--
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/


Re: [Mailman-Users] administrator only send to list

2004-09-13 Thread Mark Sapiro
Andy Morris wrote

>Is it possible for only the administrator or moderator to send emails to 
>the list or restrict all users from sending to a list?

Visit the FAQ
>Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
and read article 3.11

--
Mark Sapiro <[EMAIL PROTECTED]>   The highway is for gamblers,
San Francisco Bay Area, Californiabetter use your sense - B. Dylan

--
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/


[Mailman-Users] Intermittent sluggish delivery

2004-09-13 Thread Bruce Embrey
Mailman-Users:

I am running mailman 2.1.5 with sendmail 8.12 on redhat
linux. I've noticed that sometimes messages take an hour to
be delivered while most of the time messages are delivered
in 2-3 minutes. Mailman runs on a dedicated server and
delivers messages to another server that is in the same
physical location. I have also notice a number of messages
are being shunt. Even after running unshunt the messages
remain in the queue directory even though the messages are
delivered.

what should I look for that could be causing these delays?

Bruce Embrey

Bruce Edward Embrey : Linux Administrator
Hood College : [EMAIL PROTECTED] : Phone (301)696-3927
--
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/


Re: [Mailman-Users] Data Back and Traffic.

2004-09-13 Thread Mark Sapiro
[EMAIL PROTECTED] wrote:

>I you accidentally delete your list and archives, is there any way to 
>get the data back?

If you deleted the  directory in lists/ and in
archives/private/, everything is gone unless you have backups. If you
used bin/rmlist, it doesn't delete the archives by default so they may
still be there unless you used bin/rmlist -a (or --archive).

If as you say, you deleted list and archives and if you don't have
backups from outside Mailman, then it's all gone.

>And does anyone know what the limits to email 
>traffic are on this system?

Visit the FAQ at
>Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
and search for performance.

--
Mark Sapiro <[EMAIL PROTECTED]>   The highway is for gamblers,
San Francisco Bay Area, Californiabetter use your sense - B. Dylan

--
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/


Re: [Mailman-Users] Data Back and Traffic.

2004-09-13 Thread Mark Sapiro
[EMAIL PROTECTED] replied off list:

>I am using DreamHost.com which is the interface for the system, so can 
>I make any sense of what you're saying below?  I am not at the 
>programmer level.  More html and flash.

Then I take it you deleted the list and archives from the web list
administration pages.

I suggest you contact Dreamhost asap and ask if they have any backups
of Mailman data files that can be used to restore your list.

--
Mark Sapiro <[EMAIL PROTECTED]>   The highway is for gamblers,
San Francisco Bay Area, Californiabetter use your sense - B. Dylan

--
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/


Re: [Mailman-Users] OutgoingRunner Failing

2004-09-13 Thread Jim Tittsler
On Sep 14, 2004, at 09:04, David Richards wrote:
I have the OutgoingRunner process failing quite regularly, and this has
resulted in a build up of mail in the qfiles/out directory.  How do I 
find out
what is going on in this process for it to be failing like this?
Are there any clues in your logs/error log?  If you are lucky, there 
will be a traceback showing why OutgoingRunner is crashing.

(Have you configured Mailman to run with multiple OutgoingRunners in 
your mm_cfg file?  If so, check for Brian Greenberg's recent problem 
report and fix.)

--
Jim Tittsler http://www.OnJapan.net/  GPG: 0x01159DB6
Python Starship  http://Starship.Python.net/
Ringo MUG Tokyo  http://www.ringo.net/rss.html
--
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/


Re: [Mailman-Users] create list on subscribe

2004-09-13 Thread Stephen J. Turnbull
> "martin" == martin f krafft  writes:

martin> I want to create a listserv to allow folks to subscribe to
martin> single bugs in the Debian BTS. Instead of creating the
martin> 27 lists up front, I want them to be created as people
martin> subscribe (if the list name matches a regexp or list of
martin> conditions).

martin> I know Mailman better than any other MLM, so I would not
martin> mind using it for this task. However, I am not sure it can
martin> do what I want.

martin> If Mailman can't be tweaked into doing this, do you guys
martin> know of a software than can do it?

Roundup is a BTS that works exactly as you say, with some extra
features for auto-subscribing the submitter and people who have
expressed interest in that category.  If you throw away the MLM and
replace it with a hook into Mailman, and you create a bug db backend
that just talks to the Debian BTS, maybe you get what you want.

The reason I think this crackpot idea may have some merit is that
Roundup is written in Python, so you might have less trouble with the
tight flexible integration I suspect you need here.

http://sourceforge.net/projects/roundup

-- 
Institute of Policy and Planning Sciences http://turnbull.sk.tsukuba.ac.jp
University of TsukubaTennodai 1-1-1 Tsukuba 305-8573 JAPAN
   Ask not how you can "do" free software business;
  ask what your business can "do for" free software.
--
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/