Re: [Mailman-Users] changing the subject line when rejected

2008-08-21 Thread Mark Sapiro
Mark Heer wrote: > >When a message is rejected it keeps the same subject line as what was sent. >If the user dows not read the message saying the post was rejected, the user >assumes it went out to the list. How do I change a rejected email subject to >what I see in the > ListAdmin.py > >

[Mailman-Users] changing the subject line when rejected

2008-08-21 Thread Mark Heer
Hello, When a message is rejected it keeps the same subject line as what was sent. If the user dows not read the message saying the post was rejected, the user assumes it went out to the list. How do I change a rejected email subject to what I see in the ListAdmin.py # add in origi

Re: [Mailman-Users] mailman 2.1.11 install problem

2008-08-21 Thread Mark Sapiro
CJ Keist wrote: >Just solved it!! When we were installing a separate piece of software, >namely Teralis Helpdesk package, we were forced to upgrade all packages >from blastwave.org. This upgraded python to 2.5.1 which I guess is not >supported with mailman yet? Anyway I found that there is

Re: [Mailman-Users] mailman 2.1.11 install problem

2008-08-21 Thread CJ Keist
Just solved it!! When we were installing a separate piece of software, namely Teralis Helpdesk package, we were forced to upgrade all packages from blastwave.org. This upgraded python to 2.5.1 which I guess is not supported with mailman yet? Anyway I found that there is a older version of p

Re: [Mailman-Users] Archiving is broken

2008-08-21 Thread Mark Sapiro
Mark Heer wrote: > > The bigger issue is the complete lack of archiving. even public > lists which used to archive just fine are not doing anything. You > may recall that you provided the syntax for the external > prvate/public archive entry I placed in the mmcfg.py file. It worked > perfe

Re: [Mailman-Users] mailman 2.1.11 install problem

2008-08-21 Thread CJ Keist
Mark, Thank you. I did find the following messages: http://www.mail-archive.com/mailman-users@python.org/msg43260.html http://www.mail-archive.com/mailman-users@python.org/msg43262.html http://www.mail-archive.com/mailman-users@python.org/msg35645.html But nothing is working, they seem to mak

Re: [Mailman-Users] mailman 2.1.11 install problem

2008-08-21 Thread Mark Sapiro
CJ Keist wrote: >One more thing, >I just tried to link cc to gcc but then get the following when I try >to install: > >cc: language arch=v8 not recognized >cc: src/_japanese_codecs.c: linker input file unused because linking not >done >cc: build/temp.solaris-2.10-sun4v-2.5/src/_japanese_code

[Mailman-Users] mailman 2.1.11 install problem

2008-08-21 Thread CJ Keist
One more thing, I just tried to link cc to gcc but then get the following when I try to install: cc: language arch=v8 not recognized cc: src/_japanese_codecs.c: linker input file unused because linking not done cc: build/temp.solaris-2.10-sun4v-2.5/src/_japanese_codecs.o: No such file or d

[Mailman-Users] mailman 2.1.11 install problem

2008-08-21 Thread CJ Keist
Hello, I'm upgrading from mailman 2.1.8 to 2.1.11. Running into a install problem, here is what I'm doing: ./configure --prefix=/userM/mail-services/mailman2 --with-python=/opt/csw/bin/python --with-cgi-gid=15 make I'm using gcc 3.4.3 on solaris 10 sparc platform This is the error I'm

Re: [Mailman-Users] Rejection notice substitution variables(member_moderation_notice)

2008-08-21 Thread Rodriguez Gomez Pedro
> 'options_url': mlist.GetOptionsURL(sender, obscure=True, absolute=True), It does the job, thanks again. Best Regards, Pedro _

Re: [Mailman-Users] Rejection notice substitution variables(member_moderation_notice)

2008-08-21 Thread Mark Sapiro
Rodriguez Gomez Pedro wrote: >I'm afraid that even the new version ("Utils.wrap" after "text % d") has >the same problem Moving "Utils.wrap" after "text % d" wasn't intended to fix the TypeError exception. It was intended to make the message look prettier by wrapping the text to width after int

Re: [Mailman-Users] Rejection notice substitution variables(member_moderation_notice)

2008-08-21 Thread Rodriguez Gomez Pedro
I'm afraid that even the new version ("Utils.wrap" after "text % d") has the same problem...I think the "post processing" that goes after the code in Moderate.py finds the percentage in "%40" (corresponding to the url encoding of "@" in the email address part of options_url) and it fails... Utils.

Re: [Mailman-Users] Rejection notice substitution variables(member_moderation_notice)

2008-08-21 Thread Mark Sapiro
Rodriguez Gomez Pedro wrote: >Thanks Mark, it works like a charm! > >I was puzzled with what you said about the wrapped lines, but when >testing I saw what you probably meant (one "TypeError: float argument >required" in the logs); I fixed it by adding "text = >Utils.to_percent(text)"...so that: >

Re: [Mailman-Users] add_members with names

2008-08-21 Thread Mark Sapiro
David Southwell wrote: > >1. I have a file in the following format > >"member name in quotes" [EMAIL PROTECTED] > >and want to be able to add members using data from this file. add_members > add_members -r /absolute/path/to/file listname >reports > Bad/Invalid email address: "member name in quote

Re: [Mailman-Users] add_members with names

2008-08-21 Thread David Southwell
On Thursday 21 August 2008 06:21:22 Don Hone wrote: > --On Thursday, August 21, 2008 6:10 AM -0700 David Southwell > > <[EMAIL PROTECTED]> wrote: > > 1. I have a file in the following format > > > > "member name in quotes" [EMAIL PROTECTED] > > > > and want to be able to add members using data fro

[Mailman-Users] add_members with names

2008-08-21 Thread David Southwell
Hi 1. I have a file in the following format "member name in quotes" [EMAIL PROTECTED] and want to be able to add members using data from this file. add_members add_members -r /absolute/path/to/file listname reports Bad/Invalid email address: "member name in quotes" [EMAIL PROTECTED] Are an

Re: [Mailman-Users] Rejection notice substitution variables(member_moderation_notice)

2008-08-21 Thread Rodriguez Gomez Pedro
Thanks Mark, it works like a charm! I was puzzled with what you said about the wrapped lines, but when testing I saw what you probably meant (one "TypeError: float argument required" in the logs); I fixed it by adding "text = Utils.to_percent(text)"...so that: elif mlist.member_modera