From R.Barrett at ftel.co.uk Mon Aug 19 17:39:02 2002 From: R.Barrett at ftel.co.uk (Richard Barrett) Date: Mon, 19 Aug 2002 16:39:02 +0100 Subject: [Mailman-Users] errors In-Reply-To: Message-ID: <5.1.0.14.2.20020819163445.030b7178@pop.ftel.co.uk> At 10:03 19/07/2002 -0500, Tom Lynch wrote: >I just installed Mailman on a Solaris 7 system. Python 2.2 wouldn't build >so I used an already installed version 1.5.2. I got the following error: > >Jul 17 15:42:01 2002 qrunner(15261): File >"/usr2/mailman/Mailman/MailCommandHandler.py", line 124, in ParseMailCommands >Jul 17 15:42:01 2002 qrunner(15261): ack = msg.get('x-ack', '').lower() >Jul 17 15:42:01 2002 qrunner(15261): AttributeError : 'string' object has >no attribute 'lower' > >I hacked the code and removed ".lower()" which seemed to help. Is this >error due to my using the older version of Python? What problems can I >expect due to the "hack"? > >Thanks, > >Tom This problem has been the subject of several posts to this list. Its looks as if in a number of places code has been added that requires Python 2.0 or later, where many of the functions in the string module became available as methods on string objects. That said, the 2.0.12 README only appears to say that later Python versions are preferred over Python 1.5.2 rather than saying they are required. You probably need/want to upgrade to either Python 2.1.3 or 2.2.1 to fix your problem. If you cannot upgrade to a higher version of Python than 1.5.2 then you will have to hack the source code so that where functions like lower have been used directly on string objects you instead call the lower function from the string module with the string objectect as the parameter to the call. For instance in case you have encountered, change: ack = msg.get('x-ack', '').lower() to read: ack = string.lower(msg.get('x-ack', '')) You may need to import the string module into the file concerened if that isn't already being done i.e. add this to the other imports at the top of the file concerned: import string From R.Barrett at ftel.co.uk Mon Aug 19 18:04:44 2002 From: R.Barrett at ftel.co.uk (Richard Barrett) Date: Mon, 19 Aug 2002 17:04:44 +0100 Subject: [Mailman-Users] Error during 1st install In-Reply-To: <200207191027.01351.mir@soartech.com> Message-ID: <5.1.0.14.2.20020819164434.030b7178@pop.ftel.co.uk> At 10:27 19/07/2002 -0400, David Mir wrote: Your problem isn't essentially a Mailman one and is probably not a Python one either. The Python socket module is only a thin layer over the standard UNIX socket library. You are being told that the DNS on the machine is failing to resolve the hostname of the machine. You can try running python from the command line and calling the socket functions and see what you get. For instance on my laptop system I get: barrett at wickwar:~ > hostname wickwar barrett at wickwar:~ > python Python 2.1 (#1, May 16 2001, 03:35:09) [GCC 2.95.2 19991024 (release)] on linux2 Type "copyright", "credits" or "license" for more information. >>> import socket >>> socket.gethostname() 'wickwar' >>> socket.gethostbyaddr(socket.gethostname()) ('wickwar.ftel.co.uk', ['wickwar'], ['172.16.5.70']) >>> socket.gethostbyaddr(socket.gethostname())[0] 'wickwar.ftel.co.uk' >>> If in contrast I said (referring to a non-existent host): >>> socket.gethostbyaddr('wackwar') Traceback (most recent call last): File "", line 1, in ? socket.error: host not found >>> You could also try the following from the command line to see if the DNS can look up the hostname: hostname | xargs nslookup Server: your.dns.server.name Address: your dns.server.ip Name: wickwar.ftel.co.uk Address: 172.16.5.70 If when you try this you do not get plausible results that fit with what you believe your system config is then you need to look at the networking related configuration of your machine. >My first question is is there a way to search the archive of mailman mailing >list? If so can some one send me a link it will cut down on any repetitive >posting by me :) > >As long as I'm here though my question is : > >I'm running a straight RH7.3 system (updated via up2date) I am running >courier >as MTA and I have successfully added my mailman aliases etc. I installed >mailman via RPM (mailman-2.0.11-1) everything "seemed to install fine, and >even the web page comes up, newlists, checkperm all work. yet when I try to >subscribe to a list (via web) this error pops up in the browser: >******************************************************************************** >Bug in Mailman version 2.0.11 > >We're sorry, we hit a bug! > >Please inform the webmaster for this site of this problem. Printing of >traceback and other system information has been explicitly inhibited, but the >webmaster can find this information in the Mailman error logs. >******************************************************************************** > > >Mailman error log looks like this: > >Jul 19 10:11:21 2002 admin(29069): >@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ >admin(29069): [----- Mailman Version: 2.0.11 -----] >admin(29069): [----- Traceback ------] >admin(29069): Traceback (innermost last): >admin(29069): File "/var/mailman/scripts/driver", line 96, in run_main >admin(29069): main() >admin(29069): File "/var/mailman/Mailman/Cgi/subscribe.py", line 76, in main >admin(29069): process_form(mlist, doc) >admin(29069): File "/var/mailman/Mailman/Cgi/subscribe.py", line 187, in >process_form >admin(29069): mlist.AddMember(email, pw, digest, remote) >admin(29069): File "/var/mailman/Mailman/MailList.py", line 1007, in >AddMember >admin(29069): text) >admin(29069): File "/var/mailman/Mailman/Message.py", line 211, in __init__ >admin(29069): OutgoingMessage.__init__(self, text) >admin(29069): File "/var/mailman/Mailman/Message.py", line 205, in __init__ >admin(29069): self['Message-ID'] = Utils.make_msgid(idstring='Mailman') >admin(29069): File "/var/mailman/Mailman/Utils.py", line 769, in make_msgid >admin(29069): idhost = socket.gethostbyaddr(socket.gethostname())[0] >admin(29069): error: host not found >admin(29069): [----- Python Information -----] >admin(29069): sys.version = 1.5.2 (#1, Apr 3 2002, 18:16:26) [GCC 2.96 >20000731 (Red Hat Linux 7.2 2 >admin(29069): sys.executable = /usr/bin/python >admin(29069): sys.prefix = /usr >admin(29069): sys.exec_prefix= /usr >admin(29069): sys.path = /usr >admin(29069): sys.platform = linux-i386 >~~~~then some stuff about html (no errors though!)~~~~~~~~~~~~~ > >I see the "host not found" but the server's DNS works fine (including >localhost, etc.) The mailman folder is owned by root and mailman group (it >did complain about some perm when I first executed check perm, but I fixed >it). > >Any ideas? > >Thanks > >-- >David Mir >System Administrator >Soar Technology, Inc. >3600 Green Ct, Ste 600 >Ann Arbor, MI 48105-2588 >734-327-8000 ext. 222 >734-913-8537 (Fax) >www.soartech.com >mir at soartech.com > > > > >------------------------------------------------------ >Mailman-Users mailing list >Mailman-Users at python.org >http://mail.python.org/mailman/listinfo/mailman-users >Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py From paul at thcwd.com Thu Aug 1 03:20:03 2002 From: paul at thcwd.com (Paul H Byerly) Date: Wed, 31 Jul 2002 20:20:03 -0500 Subject: [Mailman-Users] Newbie needs help In-Reply-To: <20020731160013.26179.99483.Mailman@mail.python.org> Message-ID: <5.1.0.14.0.20020731200901.03a5c780@mail.thcwd.com> Hi all, I am a newbie self taught Linux user, so this is probably embarrassingly simple. I have installed Mailman, run check_perms and fixed the errors from that, and my test list sends to me. However, the web pages and e-mail sent to the list both return messages (below). I think part or all of my problem is setting the server so Mailman is allowed to run CGI scripts. I have no idea where to set this permission, and am unsure of what to write to the appropriate file. I am running Redhat 7.1 and Ensim. Thanks in advance, Paul -------------------------------------------------------------------------------------------------------------------------------------------- Mail sent to test list returns: ----- The following addresses had permanent fatal errors ----- "|/home/virtual/site5/fst/home/mailman/mail/wrapper mailcmd test4" (reason: service unavailable) (expanded from: ) ----- Transcript of session follows ----- smrsh: wrapper not available for sendmail programs 554 5.0.0 Service unavailable Reporting-MTA: dns; ensim.rackshack.net Arrival-Date: Sat, 27 Jul 2002 18:12:03 -0500 Final-Recipient: RFC822; test4-request at women-of-worth.org X-Actual-Recipient: X-Unix; |/home/virtual/site5/fst/home/mailman/mail/wrapper mailcmd test4 Action: failed Status: 5.5.0 Diagnostic-Code: X-Unix; 69 -------------------------------------------------------------------------------------------------------------------------------------------- http://women-of-worth.org/mailman/admin/test4 returns: Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, paul at byerly-of-texas.com and inform them of the time the error occurred, and anything you might have done that may have caused the error. More information about this error may be available in the server error log. Apache/1.3.19 Server ----- -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/mailman-users/attachments/20020731/7d968cf2/attachment.htm From irwin at taranto.com Thu Aug 1 03:41:28 2002 From: irwin at taranto.com (irwin) Date: Wed, 31 Jul 2002 18:41:28 -0700 Subject: [Mailman-Users] Newbie needs help In-Reply-To: <5.1.0.14.0.20020731200901.03a5c780@mail.thcwd.com> References: <5.1.0.14.0.20020731200901.03a5c780@mail.thcwd.com> Message-ID: <200208010141.g711fT709206@taranto.com> On Wednesday 31 July 2002 06:20 pm, you wrote: > Hi all, > > I am a newbie self taught Linux user, so this is probably > embarrassingly simple. I have installed Mailman, run check_perms > and fixed the errors from that, and my test list sends to me. However, the > web pages and e-mail sent to the list both return messages (below). I > think part or all of my problem is setting the server so Mailman is allowed > to run CGI scripts. I have no idea where to set this permission, and am > unsure of what to write to the appropriate file. I am running Redhat 7.1 > and Ensim. > Thanks in advance, Paul Looks to me like you are running a later version of sendmail which uses a smrsh utility for the /etc/aliases file executions. If you have the source, read README.SENDMAIL and see if that is your problem. If you don't have that file. drop a a personal note and I'll send it to you. Irwin > --------------------------------------------------------------------------- >----------------------------------------------------------------- Mail sent > to test list returns: > > ----- The following addresses had permanent fatal errors ----- > "|/home/virtual/site5/fst/home/mailman/mail/wrapper mailcmd test4" > (reason: service unavailable) > (expanded from: ) > > ----- Transcript of session follows ----- > smrsh: wrapper not available for sendmail programs > 554 5.0.0 Service unavailable > Reporting-MTA: dns; ensim.rackshack.net > Arrival-Date: Sat, 27 Jul 2002 18:12:03 -0500 > > Final-Recipient: RFC822; test4-request at women-of-worth.org > X-Actual-Recipient: X-Unix; > > |/home/virtual/site5/fst/home/mailman/mail/wrapper mailcmd test4 > > Action: failed > Status: 5.5.0 > Diagnostic-Code: X-Unix; 69 > --------------------------------------------------------------------------- >----------------------------------------------------------------- > http://women-of-worth.org/mailman/admin/test4 returns: > Internal Server Error > The server encountered an internal error or misconfiguration and was unable > to complete your request. > Please contact the server administrator, paul at byerly-of-texas.com and > inform them of the time the error occurred, and anything you might have > done that may have caused the error. > More information about this error may be available in the server error log. > > Apache/1.3.19 Server > ----- From benjamincyoung at hotmail.com Thu Aug 1 07:54:27 2002 From: benjamincyoung at hotmail.com (Benjamin Young) Date: Wed, 31 Jul 2002 22:54:27 -0700 Subject: [Mailman-Users] Bugs Revisited Message-ID: Hi all, I've combed through the archives and have found questions about this bug since v.1 -- but no solutions. My host seems to have encountered this problem on many different servers (though not all) and can't see any reason for it. Here's the message I receive every time I try to tend to a pending administrator task: Bug in Mailman version 2.0.11 -- We're sorry, we hit a bug! The task is accomplished but the error remains and the list of tasks is not updated (new email sent out every day reminding me to tend to them even though they are done and Admindb page displays list of tasks without options). Permissions are correctly set. From R.Barrett at ftel.co.uk Thu Aug 1 11:01:40 2002 From: R.Barrett at ftel.co.uk (Richard Barrett) Date: Thu, 01 Aug 2002 10:01:40 +0100 Subject: [Mailman-Users] Retreiving e-mail list from Mailman / Reset Password? In-Reply-To: <200207311423.07025.dreamboy@aros.net> Message-ID: <5.1.0.14.2.20020801095216.04552010@pop.ftel.co.uk> At 14:23 31/07/2002 -0600, Devin Atencio wrote: >Is there a way in mailman to export a list of all currently subscribed users >to a list? If so how is this done? $prefix/bin/list_members >Also if someone forgets the admin password to their list is there an easy >way to reset the password for the list? > >Thanks in advance. Login to admin web GUI for list concerned using the site password and change the admin password at the bottom of the General Options page, using the site password in place of the current list admin password to make this change on this occasion. From rozio at universalsupport.com Thu Aug 1 14:55:09 2002 From: rozio at universalsupport.com (Rocio Alfonso Pita) Date: Thu, 1 Aug 2002 14:55:09 +0200 Subject: [Mailman-Users] qrunner error Message-ID: <200208011455.09450.rozio@universalsupport.com> hello, I have mailman version 2.0.12. This version was actualized on 26/07/2002. >From 30/07/2002 I see in error log every minute this: Aug 01 14:14:01 2002 qrunner(23729): Traceback (innermost last): Aug 01 14:14:01 2002 qrunner(23729): File "/usr/local/mailman/cron/qrunner", line 283, in ? Aug 01 14:14:01 2002 qrunner(23729): kids = main(lock) Aug 01 14:14:01 2002 qrunner(23729): File "/usr/local/mailman/cron/qrunner", line 253, in main Aug 01 14:14:01 2002 qrunner(23729): keepqueued = dispose_message(mlist, msg, msgdata) Aug 01 14:14:01 2002 qrunner(23729): File "/usr/local/mailman/cron/qrunner", line 157, in dispose_message Aug 01 14:14:01 2002 qrunner(23729): mlist.ParseMailCommands(msg) Aug 01 14:14:01 2002 qrunner(23729): File "/usr/local/mailman/Mailman/MailCommandHandler.py", line 123, in ParseMailCommands Aug 01 14:14:01 2002 qrunner(23729): precedence = msg.get('precedence', '').lower() Aug 01 14:14:01 2002 qrunner(23729): AttributeError : 'string' object has no attribute 'lower' Aug 01 14:15:01 2002 qrunner(23762): Traceback (innermost last): Aug 01 14:15:01 2002 qrunner(23762): File "/usr/local/mailman/cron/qrunner", line 283, in ? Aug 01 14:15:01 2002 qrunner(23762): kids = main(lock) Aug 01 14:15:01 2002 qrunner(23762): File "/usr/local/mailman/cron/qrunner", line 253, in main Aug 01 14:15:01 2002 qrunner(23762): keepqueued = dispose_message(mlist, msg, msgdata) Aug 01 14:15:01 2002 qrunner(23762): File "/usr/local/mailman/cron/qrunner", line 157, in dispose_message Aug 01 14:15:01 2002 qrunner(23762): mlist.ParseMailCommands(msg) Aug 01 14:15:01 2002 qrunner(23762): File "/usr/local/mailman/Mailman/MailCommandHandler.py", line 123, in ParseMailCommands Aug 01 14:15:01 2002 qrunner(23762): precedence = msg.get('precedence', '').lower() Aug 01 14:15:01 2002 qrunner(23762): AttributeError : 'string' object has no attribute 'lower' In /usr/local/mailman/qfiles there is a message of 30/07/2002 of the same time, that is a confirm subscription. I find a reference of this problem, but it's not aplicable: http://mail.python.org/pipermail/mailman-users/2000-November/007598.html can you help me? tia, rozio From rozio at universalsupport.com Thu Aug 1 15:10:56 2002 From: rozio at universalsupport.com (Rocio Alfonso Pita) Date: Thu, 1 Aug 2002 15:10:56 +0200 Subject: Fwd: [Mailman-Users] qrunner error Message-ID: <200208011510.56589.rozio@universalsupport.com> I'd saw the problem. The problem is that nobody can subcribe any lists. When arrive message of confirmation to server with mailman, error begins. If, I delete this message, lists begins run. what is the solution? thanks and regards, rozio ---------- Mensaje reenviado ---------- Subject: [Mailman-Users] qrunner error Date: Thu, 1 Aug 2002 14:55:09 +0200 From: Rocio Alfonso Pita To: mailman-users at python.org hello, I have mailman version 2.0.12. This version was actualized on 26/07/2002. >From 30/07/2002 I see in error log every minute this: Aug 01 14:14:01 2002 qrunner(23729): Traceback (innermost last): Aug 01 14:14:01 2002 qrunner(23729): File "/usr/local/mailman/cron/qrunner", line 283, in ? Aug 01 14:14:01 2002 qrunner(23729): kids = main(lock) Aug 01 14:14:01 2002 qrunner(23729): File "/usr/local/mailman/cron/qrunner", line 253, in main Aug 01 14:14:01 2002 qrunner(23729): keepqueued = dispose_message(mlist, msg, msgdata) Aug 01 14:14:01 2002 qrunner(23729): File "/usr/local/mailman/cron/qrunner", line 157, in dispose_message Aug 01 14:14:01 2002 qrunner(23729): mlist.ParseMailCommands(msg) Aug 01 14:14:01 2002 qrunner(23729): File "/usr/local/mailman/Mailman/MailCommandHandler.py", line 123, in ParseMailCommands Aug 01 14:14:01 2002 qrunner(23729): precedence = msg.get('precedence', '').lower() Aug 01 14:14:01 2002 qrunner(23729): AttributeError : 'string' object has no attribute 'lower' Aug 01 14:15:01 2002 qrunner(23762): Traceback (innermost last): Aug 01 14:15:01 2002 qrunner(23762): File "/usr/local/mailman/cron/qrunner", line 283, in ? Aug 01 14:15:01 2002 qrunner(23762): kids = main(lock) Aug 01 14:15:01 2002 qrunner(23762): File "/usr/local/mailman/cron/qrunner", line 253, in main Aug 01 14:15:01 2002 qrunner(23762): keepqueued = dispose_message(mlist, msg, msgdata) Aug 01 14:15:01 2002 qrunner(23762): File "/usr/local/mailman/cron/qrunner", line 157, in dispose_message Aug 01 14:15:01 2002 qrunner(23762): mlist.ParseMailCommands(msg) Aug 01 14:15:01 2002 qrunner(23762): File "/usr/local/mailman/Mailman/MailCommandHandler.py", line 123, in ParseMailCommands Aug 01 14:15:01 2002 qrunner(23762): precedence = msg.get('precedence', '').lower() Aug 01 14:15:01 2002 qrunner(23762): AttributeError : 'string' object has no attribute 'lower' In /usr/local/mailman/qfiles there is a message of 30/07/2002 of the same time, that is a confirm subscription. I find a reference of this problem, but it's not aplicable: http://mail.python.org/pipermail/mailman-users/2000-November/007598.html can you help me? tia, rozio ------------------------------------------------------ Mailman-Users mailing list Mailman-Users at python.org 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/ ------------------------------------------------------- From sema.marcelo at telemigcelular.com.br Thu Aug 1 15:27:56 2002 From: sema.marcelo at telemigcelular.com.br (Marcelo Assis) Date: Thu, 1 Aug 2002 10:27:56 -0300 Subject: [Mailman-Users] some newbie questions References: <200208011510.56589.rozio@universalsupport.com> Message-ID: <00b701c2395f$3f82faa0$692d830a@celular.com.br> Hi ALL! I?d like to ask you experts a little help on mailman! First of all i must say that i have no linux knowledge and never worked with mailman before (already checked its adm panels, but nothing more). We currently have 3 mailing lists hosted at Yahoo Groups, and we need to move them out of there, because the service is getting worse day by day. So we are looking for the mailing list server soft that better suit our needs. I tried to find this information on faqs and documentation, but i?d like to double check with you Mailman heavy users, because sometimes there?s a "alternative" way of doing some configurations that officialy are not possible. So, i would like to know if with Mailman i can do the following things in my lists: 1- can we set ONE indivual member into moderated mode, so we can approve/deny all his messages before they get to the list, instead of putting the WHOLE list in moderated mode? 2- can we set scheduled messages to be sent, like every week, every two weeks, every month, etc? like a "list rules message" sent to every member when they subscribe and a "why did u leave?" message sent to every unsubscriber? 3- hability to define a filter, where if certain words appear on the subject or message body make that messages immediatly hold down for approval or bounced to the moderators? Please, bear in mind that we WONT have sheel acount on the linux box that might run the mailing list server, so we wont be able to do anything that might requires a direct login and any sort of configuration on the linux box. All we will have is access to the web panel of mailman. I would like to apologize in advance if this questions are trully basic and if they are already avaliable in other places, but as i said, i wanted to double check with experienced users and get their opinions. Thank you very much for any kind of help! all the best! marcelo From minter at lunenburg.org Thu Aug 1 15:50:51 2002 From: minter at lunenburg.org (H. Wade Minter) Date: Thu, 1 Aug 2002 09:50:51 -0400 (EDT) Subject: [Mailman-Users] Bulk-unsubscribing "nomail" users? Message-ID: <20020801094939.B54034-100000@bunning.skiltech.com> Is there an easy way to unsubscribe people from a list who've been bouncing and are thus set to "nomail"? --Wade -- If you have a VCR or MP3 player, you need to read these links: http://www.digitalconsumer.org/ http://digitalspeech.org/ http://www.libertyboard.org/ From R.Barrett at ftel.co.uk Thu Aug 1 16:24:04 2002 From: R.Barrett at ftel.co.uk (Richard Barrett) Date: Thu, 01 Aug 2002 15:24:04 +0100 Subject: [Mailman-Users] qrunner error In-Reply-To: <200208011455.09450.rozio@universalsupport.com> Message-ID: <5.1.0.14.2.20020801151329.02c77660@pop.ftel.co.uk> This error is a known problem if you are using an older version of Python than 2.0 and the subject of prior postings to this list. Installing Mailman 2.0.13 should cure it: the Mailman 2.0.13 the release note says: This release fixes some Python 1.5.2 incompatibilities that crept into Mailman 2.0.12, ... or upgrading to Python 2.1.3 or 2.2.1 with MM 2.0.12 will also work At 14:55 01/08/2002 +0200, Rocio Alfonso Pita wrote: >hello, > > I have mailman version 2.0.12. This version was actualized on 26/07/2002. > From 30/07/2002 I see in error log every minute this: > >Aug 01 14:14:01 2002 qrunner(23729): Traceback (innermost last): >Aug 01 14:14:01 2002 qrunner(23729): File >"/usr/local/mailman/cron/qrunner", >line 283, in ? >Aug 01 14:14:01 2002 qrunner(23729): kids = main(lock) >Aug 01 14:14:01 2002 qrunner(23729): File >"/usr/local/mailman/cron/qrunner", >line 253, in main >Aug 01 14:14:01 2002 qrunner(23729): keepqueued = dispose_message(mlist, >msg, msgdata) >Aug 01 14:14:01 2002 qrunner(23729): File >"/usr/local/mailman/cron/qrunner", >line 157, in dispose_message >Aug 01 14:14:01 2002 qrunner(23729): mlist.ParseMailCommands(msg) >Aug 01 14:14:01 2002 qrunner(23729): File >"/usr/local/mailman/Mailman/MailCommandHandler.py", line 123, in >ParseMailCommands >Aug 01 14:14:01 2002 qrunner(23729): precedence = msg.get('precedence', >'').lower() >Aug 01 14:14:01 2002 qrunner(23729): AttributeError : 'string' object has no >attribute 'lower' >Aug 01 14:15:01 2002 qrunner(23762): Traceback (innermost last): >Aug 01 14:15:01 2002 qrunner(23762): File >"/usr/local/mailman/cron/qrunner", >line 283, in ? >Aug 01 14:15:01 2002 qrunner(23762): kids = main(lock) >Aug 01 14:15:01 2002 qrunner(23762): File >"/usr/local/mailman/cron/qrunner", >line 253, in main >Aug 01 14:15:01 2002 qrunner(23762): keepqueued = dispose_message(mlist, >msg, msgdata) >Aug 01 14:15:01 2002 qrunner(23762): File >"/usr/local/mailman/cron/qrunner", >line 157, in dispose_message >Aug 01 14:15:01 2002 qrunner(23762): mlist.ParseMailCommands(msg) >Aug 01 14:15:01 2002 qrunner(23762): File >"/usr/local/mailman/Mailman/MailCommandHandler.py", line 123, in >ParseMailCommands >Aug 01 14:15:01 2002 qrunner(23762): precedence = msg.get('precedence', >'').lower() >Aug 01 14:15:01 2002 qrunner(23762): AttributeError : 'string' object has no >attribute 'lower' > > In /usr/local/mailman/qfiles there is a message of 30/07/2002 of the same >time, that is a confirm subscription. > > I find a reference of this problem, but it's not aplicable: >http://mail.python.org/pipermail/mailman-users/2000-November/007598.html > > can you help me? > > tia, > rozio > >------------------------------------------------------ >Mailman-Users mailing list >Mailman-Users at python.org >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/ From brian at ink.org Thu Aug 1 16:17:31 2002 From: brian at ink.org (Brian Vandruff) Date: Thu, 1 Aug 2002 09:17:31 -0500 (CDT) Subject: [Mailman-Users] Migration to new host new version Message-ID: I need to migrate an existing Mailman install to a new machine running a newer version of Mailman. here are the details: OLD SERVER ================ OS Solaris 7 Mailman version 2.0beta2 MailmanDir /usr/local/mailman NEW SERVER ================== OS Redhat 7.2 Mailman Version 2.0.11-1 MailmanDir /var/mailman What is the process to migrate to the new server? Can I just copy all the following files to the new server : archives data lists mail templates cron filters Mailman is new to me so any help would be appreciated. --Brian From R.Barrett at ftel.co.uk Thu Aug 1 18:44:15 2002 From: R.Barrett at ftel.co.uk (Richard Barrett) Date: Thu, 01 Aug 2002 17:44:15 +0100 Subject: [Mailman-Users] MM 2.1b2 compatible Mailman/Htdig integration patches Message-ID: <5.1.0.14.2.20020801173653.02c63b38@pop.ftel.co.uk> I have just posted Mailman 2.1b2 compatible versions of my Mailman-htdig integration patches on sourceforge for those brave souls using beta software. Not being brave enough to move my production Mailman lists to 2.1b2, the testing of the patches is less than I would like. If you use them and encounter any problems then let me know. http://sourceforge.net/tracker/index.php?func=detail&aid=444879&group_id=103&atid=300103 http://sourceforge.net/tracker/index.php?func=detail&aid=444884&group_id=103&atid=300103 From mostro at mac.com Thu Aug 1 18:50:49 2002 From: mostro at mac.com (Joselito) Date: Thu, 01 Aug 2002 18:50:49 +0200 Subject: [Mailman-Users] Sendmail error Message-ID: I have tha last version of mailman installed. Everything goes perfect except anytime that I need to send a message to the mailing list test, it doesn't get there. I have seen the mail.log and there is a message that says: sendmail[5201]: g71GnqHm005200: SYSERR(root): forward: no home My MTA is sendmail and I would like to know it anybody has the same problem and how I could solve it. It is strange that it doesn't work because anytime I suscribe to the test list and I do receive the mail of the confirmation of subscription. Thanks in advance. From claw at kanga.nu Thu Aug 1 19:20:35 2002 From: claw at kanga.nu (J C Lawrence) Date: Thu, 01 Aug 2002 10:20:35 -0700 Subject: [Mailman-Users] some newbie questions In-Reply-To: Message from "Marcelo Assis" of "Thu, 01 Aug 2002 10:27:56 -0300." <00b701c2395f$3f82faa0$692d830a@celular.com.br> References: <200208011510.56589.rozio@universalsupport.com> <00b701c2395f$3f82faa0$692d830a@celular.com.br> Message-ID: <23720.1028222435@kanga.nu> On Thu, 1 Aug 2002 10:27:56 -0300 Marcelo Assis wrote: > 1- can we set ONE indivual member into moderated mode, so we can > approve/deny all his messages before they get to the list, instead of > putting the WHOLE list in moderated mode? Yes, but Mailman v2.0 is really not built for this > 2- can we set scheduled messages to be sent, like every week, every > two weeks, every month, etc? like a "list rules message" sent to every > member when they subscribe and a "why did u leave?" message sent to > every unsubscriber? You would do this outside of Mailman, most likely as a cronjob. > 3- hability to define a filter, where if certain words appear on the > subject or message body make that messages immediatly hold down for > approval or bounced to the moderators? Yes. > Please, bear in mind that we WONT have sheel acount on the linux box > that might run the mailing list server, so we wont be able to do > anything that might requires a direct login and any sort of > configuration on the linux box. All we will have is access to the web > panel of mailman. For the cronjob mentioned above you'd merely require access to some system somewhere, it could even be your desktop, that can run a specific job/program at a specified time interval. That program then sends the desired email to the list.... -- J C Lawrence ---------(*) Satan, oscillate my metallic sonatas. claw at kanga.nu He lived as a devil, eh? http://www.kanga.nu/~claw/ Evil is a name of a foeman, as I live. From wash at wananchi.com Thu Aug 1 19:27:15 2002 From: wash at wananchi.com (Odhiambo Washington) Date: Thu, 1 Aug 2002 20:27:15 +0300 Subject: [Mailman-Users] some newbie questions In-Reply-To: <00b701c2395f$3f82faa0$692d830a@celular.com.br> References: <200208011510.56589.rozio@universalsupport.com> <00b701c2395f$3f82faa0$692d830a@celular.com.br> Message-ID: <20020801172715.GN16568@ns2.wananchi.com> * Marcelo Assis [20020801 16:35]: wrote: > Hi ALL! > > I?d like to ask you experts a little help on mailman! > > First of all i must say that i have no linux knowledge and never worked > with mailman before (already checked its adm panels, but nothing more). > > We currently have 3 mailing lists hosted at Yahoo Groups, and we need to > move them out of there, because the service is getting worse day by day. So > we are looking for the mailing list server soft that better suit our needs. > > I tried to find this information on faqs and documentation, but i?d like to > double check with you Mailman heavy users, because sometimes there?s a > "alternative" way of doing some configurations that officialy are not > possible. > > So, i would like to know if with Mailman i can do the following things in > my lists: > > 1- can we set ONE indivual member into moderated mode, so we can > approve/deny all his messages before they get to the list, instead of > putting the WHOLE list in moderated mode? > > 2- can we set scheduled messages to be sent, like every week, every two > weeks, > every month, etc? like a "list rules message" sent to every member when > they subscribe and a "why did u leave?" message sent to every unsubscriber? > > 3- ability to define a filter, where if certain words appear on the > subject or message body make that messages immediatly hold down for approval or > bounced to the moderators? I believe I've seen all those in Mailman-2.1b2 > Please, bear in mind that we WONT have sheel acount on the linux box that > might run the mailing list server, so we wont be able to do anything that > might requires a direct login and any sort of configuration on the linux > box. All we will have is access to the web panel of mailman. I guess I saw those opts in the Web UI. > I would like to apologize in advance if this questions are trully basic and > if they are already avaliable in other places, but as i said, i wanted to > double check with experienced users and get their opinions. 2.1b2 is the way to go. -Wash -- Odhiambo Washington "The box said 'Requires Wananchi Online Ltd. www.wananchi.com Windows 95, NT, or better,' Tel: 254 2 313985-9 Fax: 254 2 313922 so I installed FreeBSD." GSM: 254 72 743 223 GSM: 254 733 744 121 This sig is McQ! :-) If a listener nods his head when you're explaining your program, wake him up. From minter at lunenburg.org Thu Aug 1 19:30:37 2002 From: minter at lunenburg.org (H. Wade Minter) Date: Thu, 1 Aug 2002 13:30:37 -0400 (EDT) Subject: [Mailman-Users] One list having problems Message-ID: <20020801132456.X91058-100000@bunning.skiltech.com> I'm running about 20-30 lists on Mailman 2.0.13. There's one particular list that's having problems with both lockfiles showing up in $MAILMAN_HOME/locks/ and config.db.tmp.* files showing up in $MAILMAN_HOME/lists/listname/ The PID referenced in the config.db.tmp file shows up as being: [minter at bunning blueclaws]$ ps auxwww | grep -i 91332 nobody 91332 60.6 3.2 17172 16500 ?? R 1:28PM 0:37.32 /usr/local/bin/python -S /home/mailman/scripts/driver admin (python2.1) (if that's any help) The list admin reports regular problems with not being able to sign into their list admin interface. Other lists on the same machine work fine. Does anyone have any pointers on where I could look to track down the problem with this one list? Running "grep -i listname error" doesn't show anything in the main error logs. -- If you have a VCR or MP3 player, you need to read these links: http://www.digitalconsumer.org/ http://digitalspeech.org/ http://www.libertyboard.org/ From claw at kanga.nu Thu Aug 1 19:21:47 2002 From: claw at kanga.nu (J C Lawrence) Date: Thu, 01 Aug 2002 10:21:47 -0700 Subject: [Mailman-Users] Bulk-unsubscribing "nomail" users? In-Reply-To: Message from "H. Wade Minter" of "Thu, 01 Aug 2002 09:50:51 EDT." <20020801094939.B54034-100000@bunning.skiltech.com> References: <20020801094939.B54034-100000@bunning.skiltech.com> Message-ID: <23745.1028222507@kanga.nu> On Thu, 1 Aug 2002 09:50:51 -0400 (EDT) H Wade Minter wrote: > Is there an easy way to unsubscribe people from a list who've been > bouncing and are thus set to "nomail"? You'll have to examine your logs to determine who they are (versus those who deliberately selected NoMail) and pass the resulting list to remove_members. More effective generally is to set your list to unsubscribe bouncers rather than NoMailing them. -- J C Lawrence ---------(*) Satan, oscillate my metallic sonatas. claw at kanga.nu He lived as a devil, eh? http://www.kanga.nu/~claw/ Evil is a name of a foeman, as I live. From sema.marcelo at telemigcelular.com.br Thu Aug 1 19:34:51 2002 From: sema.marcelo at telemigcelular.com.br (Marcelo Assis) Date: Thu, 1 Aug 2002 14:34:51 -0300 Subject: [Mailman-Users] individual moderation of users in mailman References: <200208011510.56589.rozio@universalsupport.com> <00b701c2395f$3f82faa0$692d830a@celular.com.br> <23720.1028222435@kanga.nu> Message-ID: <012101c23981$bdac3820$692d830a@celular.com.br> Hi, J C Lawrence, thanks for your reply. > > 1- can we set ONE indivual member into moderated mode, so we can > > approve/deny all his messages before they get to the list, instead of > > putting the WHOLE list in moderated mode? > > Yes, but Mailman v2.0 is really not built for this Your answer left me in doubt. Is it possible with previous versions only, or v2.0/2.1 CAN do this but needs some sort of "hack". If possible, can i please let me know how its done in mailman? Can i do it thru web control panel? Thanks! marcelo From claw at kanga.nu Thu Aug 1 19:22:23 2002 From: claw at kanga.nu (J C Lawrence) Date: Thu, 01 Aug 2002 10:22:23 -0700 Subject: [Mailman-Users] Migration to new host new version In-Reply-To: Message from Brian Vandruff of "Thu, 01 Aug 2002 09:17:31 CDT." References: Message-ID: <23764.1028222543@kanga.nu> On Thu, 1 Aug 2002 09:17:31 -0500 (CDT) Brian Vandruff wrote: > I need to migrate an existing Mailman install to a new machine running > a newer version of Mailman. Please see the FAQ: http://www.python.org/cgi-bin/faqw-mm.py -- J C Lawrence ---------(*) Satan, oscillate my metallic sonatas. claw at kanga.nu He lived as a devil, eh? http://www.kanga.nu/~claw/ Evil is a name of a foeman, as I live. From ashley at pcraft.com Thu Aug 1 20:05:31 2002 From: ashley at pcraft.com (Ashley M. Kirchner) Date: Thu, 01 Aug 2002 12:05:31 -0600 Subject: [Mailman-Users] List creations Message-ID: <3D49786B.D9300747@pcraft.com> Has anyone written any kind of web based frontend for list creations or deletions? -- W | I haven't lost my mind; it's backed up on tape somewhere. +-------------------------------------------------------------------- Ashley M. Kirchner . 303.442.6410 x130 IT Director / SysAdmin / WebSmith . 800.441.3873 x130 Photo Craft Laboratories, Inc. . 3550 Arapahoe Ave. #6 http://www.pcraft.com ..... . . . Boulder, CO 80303, U.S.A. From scott at emji.net Thu Aug 1 20:22:44 2002 From: scott at emji.net (Scott Every) Date: Thu, 01 Aug 2002 14:22:44 -0400 Subject: [Mailman-Users] List creations In-Reply-To: <3D49786B.D9300747@pcraft.com> References: <3D49786B.D9300747@pcraft.com> Message-ID: <24406024.1028211764@[66.45.99.178]> along the same lines(kind of), is there a good way to set list defaults? its very annoying to have to reset the same 15-20 options everytime i create a new list. i have looked thru the docs and mailing list archives, but have seen nothing likely. any help would be appreciated. thanks s --On Thursday, August 1, 2002 12:05 PM -0600 "Ashley M. Kirchner" wrote: > > Has anyone written any kind of web based frontend for list creations > or deletions? > > -- > W | I haven't lost my mind; it's backed up on tape somewhere. > +-------------------------------------------------------------------- > Ashley M. Kirchner . 303.442.6410 x130 > IT Director / SysAdmin / WebSmith . 800.441.3873 x130 > Photo Craft Laboratories, Inc. . 3550 Arapahoe Ave. #6 > http://www.pcraft.com ..... . . . Boulder, CO 80303, U.S.A. > > > > > ------------------------------------------------------ > Mailman-Users mailing list > Mailman-Users at python.org > 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/ From docv at vaitl.net Thu Aug 1 20:37:56 2002 From: docv at vaitl.net (docv) Date: Thu, 01 Aug 2002 13:37:56 -0500 Subject: [Mailman-Users] List creations References: <3D49786B.D9300747@pcraft.com> Message-ID: <3D498004.8050702@vaitl.net> There is a very basic front-end module that can be used with the Webmin program, if you have Webmin installed. For more info, go to the modules area at: http://www.webmin.com Ashley M. Kirchner wrote: > Has anyone written any kind of web based frontend for list creations or > deletions? -- Steve docv at vaitl.net In a world without walls and fences there is no need for windows nor gates. From claw at kanga.nu Thu Aug 1 20:36:35 2002 From: claw at kanga.nu (J C Lawrence) Date: Thu, 01 Aug 2002 11:36:35 -0700 Subject: [Mailman-Users] Re: individual moderation of users in mailman In-Reply-To: Message from "Marcelo Assis" of "Thu, 01 Aug 2002 14:34:51 -0300." <012101c23981$bdac3820$692d830a@celular.com.br> References: <200208011510.56589.rozio@universalsupport.com> <00b701c2395f$3f82faa0$692d830a@celular.com.br> <23720.1028222435@kanga.nu> <012101c23981$bdac3820$692d830a@celular.com.br> Message-ID: <24846.1028226995@kanga.nu> On Thu, 1 Aug 2002 14:34:51 -0300 Marcelo Assis wrote: >>> 1- can we set ONE indivual member into moderated mode, so we can > >>> approve/deny all his messages before they get to the list, instead >>> of putting the WHOLE list in moderated mode? >> Yes, but Mailman v2.0 is really not built for this > Your answer left me in doubt. Is it possible with previous versions > only, or v2.0/2.1 CAN do this but needs some sort of "hack". You can do this under 2.0 by manually adding header fields which match those users to the list of "hold messages for moderation which match" list (or whatever its called). Its a hack in the UI/logic sense, its a pain to maintain, but you can do it. Its not an actual feature of v2.0. Under 2.1 IIRC its fairly easy (maybe even a base feature, but I haven't looked at v2.1 recently). > If possible, can i please let me know how its done in mailman? Can i > do it thru web control panel? Under v2.0 as above. -- J C Lawrence ---------(*) Satan, oscillate my metallic sonatas. claw at kanga.nu He lived as a devil, eh? http://www.kanga.nu/~claw/ Evil is a name of a foeman, as I live. From sema.marcelo at telemigcelular.com.br Thu Aug 1 20:41:32 2002 From: sema.marcelo at telemigcelular.com.br (Marcelo Assis) Date: Thu, 1 Aug 2002 15:41:32 -0300 Subject: [Mailman-Users] individual moderation of users in v2.1 - is it possible? References: <200208011510.56589.rozio@universalsupport.com> <00b701c2395f$3f82faa0$692d830a@celular.com.br> <23720.1028222435@kanga.nu> <012101c23981$bdac3820$692d830a@celular.com.br> <24846.1028226995@kanga.nu> Message-ID: <01ce01c2398b$0e91f8c0$692d830a@celular.com.br> Hi folks, Can anyone using mailman v2.1 please tell me if there is a built-in feature to set individual members in moderated mode, instead of putting the whole list, like there is in version 2.1b2??? I?m sure v2.1b2 can do it because i checked it out myself on a friends installed version, but i dont have a 2.1 installed to check. My web hosting is installing mailman today for us so we need to know which version they should get. Can someone please drop us a clue? thanks! marcelo ----- Original Message ----- From: "J C Lawrence" To: "Marcelo Assis" Cc: Sent: Thursday, August 01, 2002 3:36 PM Subject: Re: individual moderation of users in mailman > Under 2.1 IIRC its fairly easy (maybe even a base feature, but I haven't > looked at v2.1 recently). > > > If possible, can i please let me know how its done in mailman? Can i > > do it thru web control panel? > > Under v2.0 as above. > > -- > J C Lawrence > ---------(*) Satan, oscillate my metallic sonatas. > claw at kanga.nu He lived as a devil, eh? > http://www.kanga.nu/~claw/ Evil is a name of a foeman, as I live. From bronto at csd-bes.net Thu Aug 1 21:11:26 2002 From: bronto at csd-bes.net (bronto) Date: Thu, 1 Aug 2002 12:11:26 -0700 Subject: [Mailman-Users] Mailman/Cron error Message-ID: I installed mailman v2.1b2 on my server last month. Everything seems to be working fine. This morning I got an email: --------------------------------------------------------------- Subject: Cron /usr/bin/python2 -S /usr/local/mailman/cron/mailpasswds Date: Thu, 1 Aug 2002 05:00:02 -0700 (PDT) Site list is missing: mailman --------------------------------------------------------------- This obviously has to do with the automatic mailing of passwords & such at the beginning of every month, but what do I do about it? I didn't get any password notifications this morning like I would have expected. I haven't asked any subscribers but I imagine not. Thanks From rlw at rlw.best.vwh.net Thu Aug 1 21:27:28 2002 From: rlw at rlw.best.vwh.net (Bob Weissman) Date: Thu, 01 Aug 2002 12:27:28 -0700 Subject: [Mailman-Users] Re: individual moderation of users in mailman In-Reply-To: <24846.1028226995@kanga.nu> References: <012101c23981$bdac3820$692d830a@celular.com.br> <200208011510.56589.rozio@universalsupport.com> <00b701c2395f$3f82faa0$692d830a@celular.com.br> <23720.1028222435@kanga.nu> <012101c23981$bdac3820$692d830a@celular.com.br> Message-ID: <5.1.1.6.0.20020801122354.00a6b9a0@rlw.best.vwh.net> At 11:36 AM 8/1/02, J C Lawrence wrote: >On Thu, 1 Aug 2002 14:34:51 -0300 >Marcelo Assis wrote: >> 1- can we set ONE indivual member into moderated mode, so we can > >> approve/deny all his messages before they get to the list, instead >> of putting the WHOLE list in moderated mode? > > Yes, but Mailman v2.0 is really not built for this Yes, it is. Each list has a forbidden_posters variable. forbidden_posters (privacy): Addresses whose postings are always held for approval. Email addresses whose posts should always be held for approval, no matter what other options you have set. - Bob From paulmarshll at hotmail.com Thu Aug 1 21:38:18 2002 From: paulmarshll at hotmail.com (Paul Marshall) Date: Thu, 01 Aug 2002 14:38:18 -0500 Subject: [Mailman-Users] can user@host.com = user@abc.host.com? Message-ID: I have people who subscribe under user at host.com however, their email is identified as user at abc.host.com. When Mailman sees this it rejects the post claiming that user at abc.host.com isn't subscribed to the list. This problem is very similar to the one listed here: http://mail.python.org/pipermail/mailman-users/2002- July/021343.html I tried the solution that the person suggested, modifying SMART_ADDRESS_MATCH =3D 1 in mm_cfg.py, however this still didn't work. I tried it with it set as: SMART_ADDRESS_MATCH = 1 SMART_ADDRESS_MATCH =3D 1 SMART_ADDRESS_MATCH = 0 Although none of these worked, I am assuming it has to be set to true (1). Anyone have any ideas on why that isn't working or whatelse I may need to do? Thanks. Paul _________________________________________________________________ Join the world?s largest e-mail service with MSN Hotmail. http://www.hotmail.com From gmills at library.berkeley.edu Thu Aug 1 22:20:58 2002 From: gmills at library.berkeley.edu (Garey Mills) Date: Thu, 1 Aug 2002 13:20:58 -0700 (PDT) Subject: [Mailman-Users] A couple of questions... Message-ID: Hi - I'm using 2.1b2 and I have the following questions: - We have an environment where we have approximately 100 low volume lists (3 msgs per day). I will be administrator on all of them, but I can delegate moderation. I don't want to see emails for message approval; I just want them to go to moderators. Does anyone know of a way to do this? - In this environment, we often have to subscribe or unsubscribe a user to some but not all of the lists. I can see how to write a form to do that in a CGI script, but it would probably be better as an addition to Mailman. Anybody seen this done, or have any suggestions how to do it? Any help appreciated; Garey Mills Library Systems Office UC Berkeley From anna at water.ca.gov Thu Aug 1 22:44:47 2002 From: anna at water.ca.gov (Fong, Anna) Date: Thu, 1 Aug 2002 13:44:47 -0700 Subject: [Mailman-Users] Migration to new host new version Message-ID: Brian, J C Lawrence references the FAQ but I don't believe it's been updated. Try this thread instead: http://www.mail-archive.com/mailman-users at python.org/msg11052.html Hope this helps, Anna -------------------------------------------------------- Anna Q. Fong, Webmaster California Data Exchange Center > -----Original Message----- > From: mailman-users-admin at python.org [SMTP:mailman-users-admin at python.org] On Behalf Of Brian Vandruff > Sent: Thursday, August 01, 2002 7:18 AM > To: mailman-users at python.org > Subject: [Mailman-Users] Migration to new host new version > > I need to migrate an existing Mailman install to a new machine running a > newer version of Mailman. here are the details: > > OLD SERVER > ================ > OS Solaris 7 > Mailman version 2.0beta2 > MailmanDir /usr/local/mailman > > > NEW SERVER > ================== > OS Redhat 7.2 > Mailman Version 2.0.11-1 > MailmanDir /var/mailman > > > What is the process to migrate to the new server? Can I just copy all the > following files to the new server : > > archives > data > lists > mail > templates > cron > filters > > Mailman is new to me so any help would be appreciated. > > --Brian > > From arod2178 at mail.usyd.edu.au Thu Aug 1 08:22:17 2002 From: arod2178 at mail.usyd.edu.au (Tony Rodgers) Date: Thu, 01 Aug 2002 16:22:17 +1000 Subject: [Mailman-Users] Broken links for user and List managers documentation Message-ID: <5.1.0.14.2.20020801162029.01c1a450@mail.usyd.edu.au> Hi, Sorry to complain but the links for user and List managers documentation http://www.gnu.org/software/mailman/mgrs.html and http://www.gnu.org/software/mailman/users.html are broken. Do you know anywhere else I can access this documentation ? thanks, Tony Tony Rodgers Unix Systems Administrator Library IT Services Phone 02 9351 5942 Fisher Library, Fax 02 9351 7769 University of Sydney Mobile 0414 313 834 From FawadKhan at WoodsideNet.Com Thu Aug 1 17:09:30 2002 From: FawadKhan at WoodsideNet.Com (Fawad Khan) Date: Thu, 1 Aug 2002 08:09:30 -0700 Subject: [Mailman-Users] Approval notice Message-ID: <3FFBC907DD03A34CA4410C5C745DEB12B7F70C@wnimail.WoodsideNet.Com> After creating a new test list I set the option under privacy options That the mails being sent to this mail need not be approved by an Administrator but I still keep getting the following mail. But, then it never sends me an email asking me to approve or disapprove this Email. Ideally I'd like it to post the mail without the approval but cannot think of any other option other than the privacy option that I have already checked. I am the admin of the concerned list. Thanks, Fawad. -----Original Message----- From: fawad3-test-admin at gold.woodsidenet.com [mailto:fawad3-test-admin at gold.woodsidenet.com] Sent: Tuesday, July 30, 2002 11:30 AM To: perforce at gold.eng.woodsidenet.com Subject: Your message to Fawad3-test awaits moderator approval Your mail to 'Fawad3-test' with the subject (no subject) Is being held until the list moderator can review it for approval. The reason it is being held: Message has implicit destination Either the message will get posted to the list, or you will receive notification of the moderator's decision. From Lavoie.Frederic at ccra-adrc.gc.ca Thu Aug 1 20:06:15 2002 From: Lavoie.Frederic at ccra-adrc.gc.ca (Lavoie, Frederic) Date: Thu, 1 Aug 2002 14:06:15 -0400 Subject: [Mailman-Users] (no subject) Message-ID: <3C46006C11DDD51190FC00B0D0D1A73B0168A0BC@SH03X692> When the version that contains the french version will be stable? > Fred Lavoie > From Denis.Beauchemin at USherbrooke.ca Thu Aug 1 20:56:33 2002 From: Denis.Beauchemin at USherbrooke.ca (Denis Beauchemin) Date: 01 Aug 2002 14:56:33 -0400 Subject: [Mailman-Users] 2.1b2 install problem Message-ID: <1028228193.18852.70.camel@dbeauchemin.si.usherb.ca> Hello, I am trying to install version 2.1b2 on my Red Hat 7.3 system and I get 2 errors. The first one is during ./configure and looks like a simple warning: checking for Python Chinese Unicode codecs... not found configure: warning: ***** Python Unicode codecs for Chinese not found. ***** Chinese emails generated by or manipulated in Mailman will not ***** be sent in the correct encoding and may be unreadable. ***** Please uncompress and install the Chinese codecs from: ***** http://sourceforge.net/projects/python-codecs/ ***** ***** Note: Everything else will work just fine. The second one looks more serious, during make install: Compiling /usr/local/mailman/Mailman/versions.py ... Traceback (most recent call last): File "bin/update", line 44, in ? import paths ImportError: No module named paths make: *** [update] Error 1 Anyone seen these before? Any help appreciated. Thanks! Denis PS: I do not subscribe to this list so please reply directly to me. -- Denis Beauchemin, analyste Universit? de Sherbrooke, S.T.I. T: 819.821.8000x2252 F: 819.821.8045 From irwin at taranto.com Thu Aug 1 23:47:25 2002 From: irwin at taranto.com (irwin) Date: Thu, 1 Aug 2002 14:47:25 -0700 Subject: Fwd: [Mailman-Users] Approval notice Message-ID: <200208012147.g71LlPB09829@taranto.com> Did you subscribe to the list after creating it? Irwin ---------- Forwarded Message ---------- Subject: [Mailman-Users] Approval notice Date: Thu, 1 Aug 2002 08:09:30 -0700 From: "Fawad Khan" To: After creating a new test list I set the option under privacy options That the mails being sent to this mail need not be approved by an Administrator but I still keep getting the following mail. But, then it never sends me an email asking me to approve or disapprove this Email. Ideally I'd like it to post the mail without the approval but cannot think of any other option other than the privacy option that I have already checked. I am the admin of the concerned list. Thanks, Fawad. -----Original Message----- From: fawad3-test-admin at gold.woodsidenet.com [mailto:fawad3-test-admin at gold.woodsidenet.com] Sent: Tuesday, July 30, 2002 11:30 AM To: perforce at gold.eng.woodsidenet.com Subject: Your message to Fawad3-test awaits moderator approval Your mail to 'Fawad3-test' with the subject (no subject) Is being held until the list moderator can review it for approval. The reason it is being held: Message has implicit destination Either the message will get posted to the list, or you will receive notification of the moderator's decision. ------------------------------------------------------ Mailman-Users mailing list Mailman-Users at python.org 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/ ------------------------------------------------------- From irwin at taranto.com Fri Aug 2 00:07:14 2002 From: irwin at taranto.com (irwin) Date: Thu, 1 Aug 2002 15:07:14 -0700 Subject: [Mailman-Users] problems with email In-Reply-To: <000601c238c8$d8c74d70$1500a8c0@kitchen> References: <000601c238c8$d8c74d70$1500a8c0@kitchen> Message-ID: <200208012207.g71M7Ew09990@taranto.com> On Wednesday 31 July 2002 12:31 pm, you wrote: > > I checked the aliases and virtualalias files and cannot find any place > where MailMan created the mail alias when it created the list. > > Any ideas you have would be most helpful. Mailman can't create it since it doesn't know which MTA you are using. You to modify the aliases and virtualalias files. Irwin From solveig at utk.edu Fri Aug 2 00:07:12 2002 From: solveig at utk.edu (Duren Thompson) Date: Thu, 01 Aug 2002 18:07:12 -0400 Subject: [Mailman-Users] identifying users Message-ID: <5.1.0.14.2.20020801180403.02fe8530@pop.utk.edu> We are currently using mail-man to administer a number of discussion lists for Adult Literacy in Tennessee. We have been somewhat frustrated in the fact that our old majordomo software allowed us to "identify" subscribers with their actual names - but mailman seems to only have the option of e-mail addresses. Does anyone know of any way to add information other than the e-mail address to each user's profile - like their name or other designation? Duren Thompson Information Management and Technology Services Center for Literacy Studies' State Leadership Team TN Division of Labor and Workforce Development solveig at utk.edu 865.974.4109 From esandquist at ihms.net Fri Aug 2 00:33:42 2002 From: esandquist at ihms.net (Eric Sandquist) Date: Thu, 1 Aug 2002 17:33:42 -0500 Subject: [Mailman-Users] Postfix - aliases & domainaliases In-Reply-To: <1028045328.3d46ba10ee92c@webmail.uchicago.edu> Message-ID: How do I get mailman to automate the generation of aliases and domainaliases? My needs are such that I need to automate the creation of lists so that I do not need to hand enter or validate every request for a new list. Also, is it possible to prevent users from having access to creating a list based on some kind of access level? I am evaluating this application verses sympa. I have used majordomo for over 5 years and need more options than it can provide. Mailman and Sympa seem to be the strongest competitors for this type of service. Eric Sandquist Systems Engineer - messianicgroups.com From garyv at cips.nokia.com Fri Aug 2 00:39:58 2002 From: garyv at cips.nokia.com (Gary Verhulp) Date: Thu, 01 Aug 2002 15:39:58 -0700 Subject: [Mailman-Users] /etc/aliases in sendmail References: Message-ID: <3D49B8BE.2030809@cips.nokia.com> newlist -o /etc/aliases : newaliases I think this is what you are asking for Gary Larry Guest wrote: >Is there a better way to handle the mailman aliases instead of just editing >my /etc/aliases file and running newaliases. >When I get to over 200 lists its going to be a nightmare file. > >Thanks > > > >------------------------------------------------------ >Mailman-Users mailing list >Mailman-Users at python.org >http://mail.python.org/mailman/listinfo/mailman-users >Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py > > > From andrew at qnps.com Fri Aug 2 01:07:09 2002 From: andrew at qnps.com (Andrew Thompson) Date: Fri, 2 Aug 2002 00:07:09 +0100 Subject: [Mailman-Users] RPM For 2.0.13 Message-ID: <009d01c239b0$2ad318a0$0601a8c0@ttnetworks.net> Hi, Does anyone know where the rpm for Mailman 2.0.13 can be found, or if anyone has created one ? Thanks Andrew From raquel at thericehouse.net Fri Aug 2 02:08:08 2002 From: raquel at thericehouse.net (Raquel Rice) Date: Thu, 1 Aug 2002 17:08:08 -0700 Subject: [Mailman-Users] Mailman question In-Reply-To: <1028045328.3d46ba10ee92c@webmail.uchicago.edu> References: <1028045328.3d46ba10ee92c@webmail.uchicago.edu> Message-ID: <20020801170808.251b765d.raquel@thericehouse.net> On Tue, 30 Jul 2002 11:08:48 -0500 \\\ "\\\"Katherine P. Casale\\\"" wrote: > I'm a new administrator for a listhost that you host, and I cannot > figure out > how to set the e-mail addressed for the members of the listhost. > I'm in the > Membership Management area, but on the Membership list it says "0 > members > total" and I can't figure out how to add people. > > Please help! > > Thanks! > Kate Kate, Just below where it says "0 members total" there should be a text field (down near the bottom of the page) where you enter the email addresses, one per line. Then below that, click on "Submit Your Changes" and the addresses will be added to your list. -- Raquel ============================================================ A person can't keep people from having a bad opinion of her, but she can keep them from being right about it. --Raquel Rice From rozio at universalsupport.com Fri Aug 2 09:36:35 2002 From: rozio at universalsupport.com (Rocio Alfonso Pita) Date: Fri, 2 Aug 2002 09:36:35 +0200 Subject: [SOLUTION] [Mailman-Users] qrunner error In-Reply-To: <5.1.0.14.2.20020801151329.02c77660@pop.ftel.co.uk> References: <5.1.0.14.2.20020801151329.02c77660@pop.ftel.co.uk> Message-ID: <200208020936.35323.rozio@universalsupport.com> Hello, Thanks very much. I upgrade to Mailman 2.0.13 and all is ok. regards, rozio El Thursday 01 August 2002 16:24, Richard Barrett ha dicho: > This error is a known problem if you are using an older version of Python > than 2.0 and the subject of prior postings to this list. > > Installing Mailman 2.0.13 should cure it: the Mailman 2.0.13 the release > note says: > > > This release fixes some Python 1.5.2 incompatibilities that crept into > Mailman 2.0.12, ... > > > or upgrading to Python 2.1.3 or 2.2.1 with MM 2.0.12 will also work > From R.Barrett at ftel.co.uk Fri Aug 2 11:36:09 2002 From: R.Barrett at ftel.co.uk (Richard Barrett) Date: Fri, 02 Aug 2002 10:36:09 +0100 Subject: [Mailman-Users] /etc/aliases in sendmail In-Reply-To: <3D49B8BE.2030809@cips.nokia.com> References: Message-ID: <5.1.0.14.2.20020802102149.02aa4b20@pop.ftel.co.uk> As a possible alternative, there is a contribution in the contrib folder of the MM 2.1b2 release ($build/contrib/mm-handler) whose use obviates extending Sendmail's aliases database every time a new Mailman list is added or an old one removed. It is a Sendmail Mailer (its a Perl script) which calls the Mailman programs to handoff mail from Sendmail to Mailman. It is "driven" Mailman's list "database". Hence it dynamically starts delivery to new lists and stops delivery to removed lists without any need to maintain a separate Sendmail aliases database. I cannot see any reason why this should work just as well with MM 2.0.x as with MM 2.1.x; indeed I'm going to switch over to using it on my production MM 2.0.13 installation if I can first install it successfully on my test 2.1b2 installation. At 15:39 01/08/2002 -0700, Gary Verhulp wrote: >newlist -o /etc/aliases : newaliases > >I think this is what you are asking for > >Gary > > >Larry Guest wrote: > >>Is there a better way to handle the mailman aliases instead of just editing >>my /etc/aliases file and running newaliases. >>When I get to over 200 lists its going to be a nightmare file. >> >>Thanks >> From R.Barrett at ftel.co.uk Fri Aug 2 11:50:43 2002 From: R.Barrett at ftel.co.uk (Richard Barrett) Date: Fri, 02 Aug 2002 10:50:43 +0100 Subject: [Mailman-Users] Postfix - aliases & domainaliases In-Reply-To: References: <1028045328.3d46ba10ee92c@webmail.uchicago.edu> Message-ID: <5.1.0.14.2.20020802104239.045bec08@pop.ftel.co.uk> At 17:33 01/08/2002 -0500, Eric Sandquist wrote: >How do I get mailman to automate the generation of aliases and >domainaliases? My needs are such that I need to automate the creation of >lists so that I do not need to hand enter or validate every request for a >new list. I'm not a Postfix admin but the README.POSTFIX file in the MM 2.1b2 distribution which contains the following: INTEGRATING POSTFIX AND MAILMAN You can integrate Postfix and Mailman such that when new lists are created, or lists are removed, Postfix's alias database will be automatically updated. The following are the steps you need to take to make this work. I do not know if the information there is applicable to MM 2.0.x, but MM 2.1 must be going to stable release state fairly soon. >Also, is it possible to prevent users from having access to creating a list >based on some kind of access level? > >I am evaluating this application verses sympa. I have used majordomo for >over 5 years and need more options than it can provide. Mailman and Sympa >seem to be the strongest competitors for this type of service. > >Eric Sandquist >Systems Engineer - messianicgroups.com From R.Barrett at ftel.co.uk Fri Aug 2 12:06:08 2002 From: R.Barrett at ftel.co.uk (Richard Barrett) Date: Fri, 02 Aug 2002 11:06:08 +0100 Subject: [Mailman-Users] Approval notice In-Reply-To: <3FFBC907DD03A34CA4410C5C745DEB12B7F70C@wnimail.WoodsideNet .Com> Message-ID: <5.1.0.14.2.20020802105335.045bec08@pop.ftel.co.uk> At 08:09 01/08/2002 -0700, Fawad Khan wrote: >After creating a new test list I set the option under privacy options >That the mails being sent to this mail need not be approved by an >Administrator but I still keep getting the following mail. > >But, then it never sends me an email asking me to approve or disapprove >this Email. Ideally I'd like it to post the mail without the approval >but cannot >think of any other option other than the privacy option that I have >already checked. > >I am the admin of the concerned list. > >Thanks, >Fawad. > >-----Original Message----- >From: fawad3-test-admin at gold.woodsidenet.com >[mailto:fawad3-test-admin at gold.woodsidenet.com] >Sent: Tuesday, July 30, 2002 11:30 AM >To: perforce at gold.eng.woodsidenet.com >Subject: Your message to Fawad3-test awaits moderator approval > > >Your mail to 'Fawad3-test' with the subject > > (no subject) > >Is being held until the list moderator can review it for approval. > >The reason it is being held: > > Message has implicit destination > >Either the message will get posted to the list, or you will receive >notification of the moderator's decision. For some (good) reason Mailman does not see the incoming mail being delivered to the list as being addressed directly to the list. Mailman is not seeing what it believes to be the expected mail name or mail domain in the To: header of the post. From the information above it appears that the Mailman thinks the list's mail alias should be fawad3 at gold.woodsidenet.com. However I see that the mail alias originating the post (and responded to) is perforce at gold.eng.woodsidenet.com. You need to double check your MTA setup, mail aliases, and the actual mail alias you sent the test mail to. You also want to take a look at the detail of To: headers displayed in the list's administrative tasks page when this happens; follow the link on the admin notification email. From tom at lemuria.org Fri Aug 2 12:18:13 2002 From: tom at lemuria.org (Tom) Date: Fri, 2 Aug 2002 12:18:13 +0200 Subject: [Mailman-Users] Digest Header modification ? Message-ID: <20020802121813.A8760@lemuria.org> Greetings, everyone, I looked into FAQ, documentation, and archives, but couldn't find an answer to this: Each digest sent out contains a default "header"/boiler plate/text where it explains how to unsubscribe, etc. One of the mailing lists on my servers generates its subscriber list from a database, so this information is misleading. But how can I remove it or replace it with some other text? -- PGP/GPG key: http://web.lemuria.org/pubkey.html pub 1024D/2D7A04F5 2002-05-16 Tom Vogt Key fingerprint = C731 64D1 4BCF 4C20 48A4 29B2 BF01 9FA1 2D7A 04F5 From mir at soartech.com Fri Aug 2 15:34:46 2002 From: mir at soartech.com (David Mir) Date: Fri, 2 Aug 2002 09:34:46 -0400 Subject: [Mailman-Users] Public lists and archiving questions Message-ID: <200208020934.46912.mir@soartech.com> I have a couple questions that I can't find in the documentation. 1) how do I make s list "public"(ie shows up in listinfo page) is there an option or do I have to manually edit the HTML page? 2)how do archives work? are they just monthly? can you change this? I don't see any configuration for archives just whether they are public or not. If these answer can be found on the web please tell me and will look there. Thanks -- David Mir System Administrator Soar Technology, Inc. From R.Barrett at ftel.co.uk Fri Aug 2 17:47:41 2002 From: R.Barrett at ftel.co.uk (Richard Barrett) Date: Fri, 02 Aug 2002 16:47:41 +0100 Subject: [Mailman-Users] Public lists and archiving questions In-Reply-To: <200208020934.46912.mir@soartech.com> Message-ID: <5.1.0.14.2.20020802164129.03475178@pop.ftel.co.uk> At 09:34 02/08/2002 -0400, David Mir wrote: >I have a couple questions that I can't find in the documentation. > >1) how do I make s list "public"(ie shows up in listinfo page) is there an >option or do I have to manually edit the HTML page? First option ('Advertise this list when people ask what lists are on this machine?') on Privacy Options page (third item of Configuration Options list at the top of web admin GUI pages) of web admin GUI for the list >2)how do archives work? are they just monthly? can you change this? I don't >see any configuration for archives just whether they are public or not. > See Archival Options page (seventh item of Configuration Options list at the top of web admin GUI pages) of the web GUI for the list. Last option sets archive rollover frequency. >If these answer can be found on the web please tell me and will look there. >Thanks From mir at soartech.com Fri Aug 2 18:00:56 2002 From: mir at soartech.com (David Mir) Date: Fri, 2 Aug 2002 12:00:56 -0400 Subject: [Mailman-Users] Public lists and archiving questions In-Reply-To: <5.1.0.14.2.20020802164129.03475178@pop.ftel.co.uk> References: <5.1.0.14.2.20020802164129.03475178@pop.ftel.co.uk> Message-ID: <200208021200.57000.mir@soartech.com> I have tried the first option it still does not show up when I go my listinfo site. Is there anything I should check to see if there are errors? And I will try to second solution. Thanks! On Friday 02 August 2002 11:47 am, Richard Barrett wrote: > At 09:34 02/08/2002 -0400, David Mir wrote: > >I have a couple questions that I can't find in the documentation. > > > >1) how do I make s list "public"(ie shows up in listinfo page) is there an > >option or do I have to manually edit the HTML page? > > First option ('Advertise this list when people ask what lists are on this > machine?') on Privacy Options page (third item of Configuration Options > list at the top of web admin GUI pages) of web admin GUI for the list > > >2)how do archives work? are they just monthly? can you change this? I > > don't see any configuration for archives just whether they are public or > > not. > > See Archival Options page (seventh item of Configuration Options list at > the top of web admin GUI pages) of the web GUI for the list. Last option > sets archive rollover frequency. > > >If these answer can be found on the web please tell me and will look > > there. Thanks -- David Mir System Administrator Soar Technology, Inc. 3600 Green Ct, Ste 600 Ann Arbor, MI 48105-2588 734-327-8000 ext. 222 734-913-8537 (Fax) www.soartech.com mir at soartech.com From claw at kanga.nu Fri Aug 2 18:30:57 2002 From: claw at kanga.nu (J C Lawrence) Date: Fri, 02 Aug 2002 09:30:57 -0700 Subject: [Mailman-Users] Digest Header modification ? In-Reply-To: Message from Tom of "Fri, 02 Aug 2002 12:18:13 +0200." <20020802121813.A8760@lemuria.org> References: <20020802121813.A8760@lemuria.org> Message-ID: <30091.1028305857@kanga.nu> On Fri, 2 Aug 2002 12:18:13 +0200 tom wrote: > One of the mailing lists on my servers generates its subscriber list > from a database, so this information is misleading. But how can I > remove it or replace it with some other text? Please see the FAQ: http://www.python.org/cgi-bin/faqw-mm.py -- J C Lawrence ---------(*) Satan, oscillate my metallic sonatas. claw at kanga.nu He lived as a devil, eh? http://www.kanga.nu/~claw/ Evil is a name of a foeman, as I live. From tom at lemuria.org Fri Aug 2 18:37:13 2002 From: tom at lemuria.org (Tom) Date: Fri, 2 Aug 2002 18:37:13 +0200 Subject: [Mailman-Users] Digest Header modification ? In-Reply-To: <30091.1028305857@kanga.nu>; from claw@kanga.nu on Fri, Aug 02, 2002 at 09:30:57AM -0700 References: <20020802121813.A8760@lemuria.org> <30091.1028305857@kanga.nu> Message-ID: <20020802183712.B1090@lemuria.org> On Fri, Aug 02, 2002 at 09:30:57AM -0700, J C Lawrence wrote: > > One of the mailing lists on my servers generates its subscriber list > > from a database, so this information is misleading. But how can I > > remove it or replace it with some other text? > > Please see the FAQ: > > http://www.python.org/cgi-bin/faqw-mm.py I did, and it does not answer the question. I checked both with search terms and by reading the index. Please note that I'm not talking about the RFC2369 headers, but about the "you can subscribe by going to blabla" plate in the message body. -- http://web.lemuria.org/pubkey.html pub 1024D/2D7A04F5 2002-05-16 Tom Vogt Key fingerprint = C731 64D1 4BCF 4C20 48A4 29B2 BF01 9FA1 2D7A 04F5 From claw at kanga.nu Fri Aug 2 19:02:54 2002 From: claw at kanga.nu (J C Lawrence) Date: Fri, 02 Aug 2002 10:02:54 -0700 Subject: [Mailman-Users] Digest Header modification ? In-Reply-To: Message from Tom of "Fri, 02 Aug 2002 18:37:13 +0200." <20020802183712.B1090@lemuria.org> References: <20020802121813.A8760@lemuria.org> <30091.1028305857@kanga.nu> <20020802183712.B1090@lemuria.org> Message-ID: <30799.1028307774@kanga.nu> On Fri, 2 Aug 2002 18:37:13 +0200 tom wrote: > Please note that I'm not talking about the RFC2369 headers, but about > the "you can subscribe by going to blabla" plate in the message body. Those are footers, and are configurable from the UI. -- J C Lawrence ---------(*) Satan, oscillate my metallic sonatas. claw at kanga.nu He lived as a devil, eh? http://www.kanga.nu/~claw/ Evil is a name of a foeman, as I live. From tom at lemuria.org Fri Aug 2 19:08:50 2002 From: tom at lemuria.org (Tom) Date: Fri, 2 Aug 2002 19:08:50 +0200 Subject: [Mailman-Users] Digest Header modification ? In-Reply-To: <30799.1028307774@kanga.nu>; from claw@kanga.nu on Fri, Aug 02, 2002 at 10:02:54AM -0700 References: <20020802121813.A8760@lemuria.org> <30091.1028305857@kanga.nu> <20020802183712.B1090@lemuria.org> <30799.1028307774@kanga.nu> Message-ID: <20020802190850.F1090@lemuria.org> On Fri, Aug 02, 2002 at 10:02:54AM -0700, J C Lawrence wrote: > > Please note that I'm not talking about the RFC2369 headers, but about > > the "you can subscribe by going to blabla" plate in the message body. > > Those are footers, and are configurable from the UI. I'm sorry to be dense, but I'm not talking about the footers, either. There is actually an option in the UI for a header (called "header"), but it's blank. I've now tried putting something in there in the hopes that this will REPLACE the default header. If so, the UI is unclear. If it just adds to the digest header (as I suspect it will), then an option to turn this additional header off is missing. -- http://web.lemuria.org/pubkey.html pub 1024D/2D7A04F5 2002-05-16 Tom Vogt Key fingerprint = C731 64D1 4BCF 4C20 48A4 29B2 BF01 9FA1 2D7A 04F5 From rlw at rlw.best.vwh.net Fri Aug 2 20:08:47 2002 From: rlw at rlw.best.vwh.net (Bob Weissman) Date: Fri, 02 Aug 2002 11:08:47 -0700 Subject: [Mailman-Users] Public lists and archiving questions In-Reply-To: <200208021200.57000.mir@soartech.com> References: <5.1.0.14.2.20020802164129.03475178@pop.ftel.co.uk> <5.1.0.14.2.20020802164129.03475178@pop.ftel.co.uk> Message-ID: <5.1.1.6.0.20020802110121.009ddb10@rlw.best.vwh.net> At 09:00 AM 8/2/02, David Mir wrote: >I have tried the first option it still does not show up when I go my listinfo >site. Is there anything I should check to see if there are errors? Here's a tip which should probably be added to the FAQ. If you have lists which appear in the Admin index, but not in the Listinfo index, it is usually because of a domain mismatch, often due to the use of virtual hosts. In your case, it appears to be due to an extra "www." I can see your lists at http://soartech.com/mailman/listinfo/ but not at http://www.soartech.com/mailman/listinfo/ Please look at the VIRTUAL_HOST_OVERVIEW option in Defaults.py and at the web_page_url attribute of your lists. You will need to change one of them. - Bob From mir at soartech.com Fri Aug 2 20:41:51 2002 From: mir at soartech.com (David Mir) Date: Fri, 2 Aug 2002 14:41:51 -0400 Subject: [Mailman-Users] Public lists and archiving questions In-Reply-To: <5.1.1.6.0.20020802110121.009ddb10@rlw.best.vwh.net> References: <5.1.0.14.2.20020802164129.03475178@pop.ftel.co.uk> <5.1.1.6.0.20020802110121.009ddb10@rlw.best.vwh.net> Message-ID: <200208021441.51798.mir@soartech.com> You that was it I changed that to 0 and it fixed it. On Friday 02 August 2002 02:08 pm, Bob Weissman wrote: > At 09:00 AM 8/2/02, David Mir wrote: > >I have tried the first option it still does not show up when I go my > > listinfo site. Is there anything I should check to see if there are > > errors? > > Here's a tip which should probably be added to the FAQ. > > If you have lists which appear in the Admin index, but not in the Listinfo > index, it is usually because of a domain mismatch, often due to the use of > virtual hosts. > > In your case, it appears to be due to an extra "www." I can see your lists > at http://soartech.com/mailman/listinfo/ > but not at > http://www.soartech.com/mailman/listinfo/ > > Please look at the VIRTUAL_HOST_OVERVIEW option in Defaults.py and at the > web_page_url attribute of your lists. You will need to change one of them. > > - Bob > > > ------------------------------------------------------ > Mailman-Users mailing list > Mailman-Users at python.org > 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/ -- David Mir System Administrator Soar Technology, Inc. 3600 Green Ct, Ste 600 Ann Arbor, MI 48105-2588 734-327-8000 ext. 222 734-913-8537 (Fax) www.soartech.com mir at soartech.com From jonc at haht.com Fri Aug 2 21:43:41 2002 From: jonc at haht.com (Jon Carnes) Date: Fri, 2 Aug 2002 15:43:41 -0400 Subject: [Mailman-Users] Digest Header modification ? In-Reply-To: <20020802121813.A8760@lemuria.org> Message-ID: <000a01c23a5c$e8726ad0$0b04010a@JCARNES> Go to the web-admin page for the list and modify or delete the footer information. You will find the footer info for regular mail in the section: "Regular-member (non-digest) Options" Some things in life really are that simple... -----Original Message----- From: Tom [mailto:tom at lemuria.org] Sent: Friday, August 02, 2002 6:18 AM To: mailman-users at python.org Subject: [Mailman-Users] Digest Header modification ? Greetings, everyone, I looked into FAQ, documentation, and archives, but couldn't find an answer to this: Each digest sent out contains a default "header"/boiler plate/text where it explains how to unsubscribe, etc. One of the mailing lists on my servers generates its subscriber list from a database, so this information is misleading. But how can I remove it or replace it with some other text? -- PGP/GPG key: http://web.lemuria.org/pubkey.html pub 1024D/2D7A04F5 2002-05-16 Tom Vogt Key fingerprint = C731 64D1 4BCF 4C20 48A4 29B2 BF01 9FA1 2D7A 04F5 ------------------------------------------------------ Mailman-Users mailing list Mailman-Users at python.org 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/ From tom at lemuria.org Fri Aug 2 21:55:11 2002 From: tom at lemuria.org (Tom) Date: Fri, 2 Aug 2002 21:55:11 +0200 Subject: [Mailman-Users] Digest Header modification ? In-Reply-To: <000a01c23a5c$e8726ad0$0b04010a@JCARNES>; from jonc@haht.com on Fri, Aug 02, 2002 at 03:43:41PM -0400 References: <20020802121813.A8760@lemuria.org> <000a01c23a5c$e8726ad0$0b04010a@JCARNES> Message-ID: <20020802215511.E1174@lemuria.org> On Fri, Aug 02, 2002 at 03:43:41PM -0400, Jon Carnes wrote: > Go to the web-admin page for the list and modify or delete the footer > information. > You will find the footer info for regular mail in the section: > "Regular-member (non-digest) Options" > > Some things in life really are that simple... So far, mailman has indeed been a dream of simplicity, and I love it. However, this is not quite that simple. Sorry that I'm seemingly too dumb to explain what I mean. Here's another try: Every digest starts with these lines: Send Battlemaster mailing list submissions to battlemaster at lemuria.org To subscribe or unsubscribe via the World Wide Web, visit http://web.lemuria.org/mailman/listinfo/battlemaster or, via email, send a message with subject or body 'help' to battlemaster-request at lemuria.org You can reach the person managing the list at battlemaster-admin at lemuria.org When replying, please edit your Subject line so it is more specific than "Re: Contents of Battlemaster digest..." Today's Topics: [...] And these are the lines I would like to replace with something else. They do not appear anywhere in the UI. In fact, the only place where I could find them is in /etc/mailman/masthead.txt However, editing the text there will, I'm fairly sure, edit it for ALL mailing lists, which is not what I want to do. -- http://web.lemuria.org/pubkey.html pub 1024D/2D7A04F5 2002-05-16 Tom Vogt Key fingerprint = C731 64D1 4BCF 4C20 48A4 29B2 BF01 9FA1 2D7A 04F5 From tcrouch at du.edu Fri Aug 2 23:22:58 2002 From: tcrouch at du.edu (Tim Crouch) Date: Fri, 02 Aug 2002 15:22:58 -0600 Subject: [Mailman-Users] Migration scripting Message-ID: <3D4AF832.1DF19FF1@du.edu> Anyone who can help - We have a "home grown" mailing list setup right now and are purchasing new hardware and moving to Mailman. I need to migrate the current lists to the new environment. I have the following data files (all are plain text, colon-delimited, flat files) on the current system: list.db - this has the following information about the list: name_of_list:Brief description:open/closed:un/moderated:auto/by_referral:list_owner*:department people.db - list_owner*:List Owners Full Name:Phone_number:email_address .dis - this is a list of all members of the list *list_owner = email address without "@du.edu" I know I can use add_members after I have created the list and simply use my *.dis files as input. I also know that I can use config_list to change list parameters, though I am unsure of the necessary format of the input filename - an example here would be great! The biggie here is how can I script newlist to read from a file to generate lists so that I can do the next steps? I am familiar with expect and could possibly hack something together, but was hoping there was a "better" way. Any and all help would be greatly appreciated! Tim Crouch University of Denver From dmick at utopia.West.Sun.COM Fri Aug 2 23:40:20 2002 From: dmick at utopia.West.Sun.COM (Dan Mick) Date: Fri, 2 Aug 2002 14:40:20 -0700 (PDT) Subject: [Mailman-Users] Digest Header modification ? Message-ID: <200208022140.g72LeNjX019795@utopia.West.Sun.COM> > Every digest starts with these lines: > And these are the lines I would like to replace with something else. > They do not appear anywhere in the UI. In fact, the only place where I > could find them is in /etc/mailman/masthead.txt > However, editing the text there will, I'm fairly sure, edit it for ALL > mailing lists, which is not what I want to do. Yes, that's where those lines appear, and the only place. You can edit a list-specific copy in 2.1, but in 2.0.x they are global. Here's a part of a comment from the 2.1 code: # When looking for a template in a specific language, there are 4 places # that are searched, in this order: # # 1. the list-specific language directory # lists// # # 2. the domain-specific language directory # templates// # # 3. the site-wide language directory # templates/site/ # # 4. the global default language directory # templates/ # # The first match found stops the search. In this way, you can specialize # templates at the desired level, or, if you use only the default # templates, you don't need to change anything. From JustinHoMi at aol.com Sat Aug 3 10:35:26 2002 From: JustinHoMi at aol.com (JustinHoMi at aol.com) Date: Sat, 03 Aug 2002 04:35:26 -0400 Subject: [Mailman-Users] unsubscribing without password? Message-ID: <75B49FC9.6E8A087F.0C01BC86@aol.com> Hi. I've recently installed mailman, and would like to use it so that our organization can send announcements to the subscriber list. All of the users are added by us... it will be rare that anyone subscribes themself. But users will be unsubscribing thereselves. So, when someone wants to unsubscribe, it makes it a hassle for them to go and find their password since they didn't create it in the first place. Is there any simple way for a user to unsubscribe without their password? I noticed that 2.1 is in beta, but I saw no changelog, so I'm not sure if something like this has been implemented yet. Thanks, Justin From lists.ASkwar at email-server.info Sat Aug 3 13:18:22 2002 From: lists.ASkwar at email-server.info (Alexander Skwar) Date: Sat, 3 Aug 2002 13:18:22 +0200 Subject: [Mailman-Users] Setting up 2.1b2 so that only a number of people can post In-Reply-To: <20020730152706.90158.qmail@web11001.mail.yahoo.com> References: <20020728163447.GS22404@teich.Garten.DigitalProjects.com> <20020730152706.90158.qmail@web11001.mail.yahoo.com> Message-ID: <20020803111822.GE14885@teich.Garten.DigitalProjects.com> So sprach jenny fan am 2002-07-30 um 08:27:06 -0700 : > Hi Alexander, > > Go to privacy options, set > > Must posts be approved by an administrator? NO. > > Restrict posting privilege to list members? > (member_posting_only) N0. > > Addresses of members accepted for posting to this list > without implicit approval requirement. (See "Restrict > ... to list members" for whether or not this is in > addition to allowing posting by list members [put the > email account list here, only these people can post to > the list] > > Hope it helps, Sorry, but I cannot find those options. In 2.0.x that's exactly how I had set it up. But where did the options go in 2.1b2? Alexander Skwar -- How to quote: http://learn.to/quote (german) http://quote.6x.to (english) Homepage: http://www.iso-top.biz | Jabber: askwar at a-message.de iso-top.biz - Die g?nstige Art an Linux Distributionen zu kommen Uptime: 18 hours 2 minutes From JustinHoMi at aol.com Sat Aug 3 18:44:42 2002 From: JustinHoMi at aol.com (JustinHoMi at aol.com) Date: Sat, 03 Aug 2002 12:44:42 -0400 Subject: [Mailman-Users] unsubscribing without password? Message-ID: <18984D67.691EE8C5.0C01BC86@aol.com> Yeah, I understand this, but it's too much of a hassle for users to have to retrieve their password like this. Not everyone is as computer savvy as you might think... all of the people on my list are international students. Most don't speak english well, and many of them will never of even used a computer before they arrived in the US. Other listservs make it very simple to unsubscribe... with majordomo, you just send an email with "unsubscribe " to a certain address. Ezmlm is even easier than that... just send any email to the unsubscribe address. The chances are SLIM that you'll accidentally unsubscribe yourself. They're even slimmer that some evil fool will try to unsubscribe you. I love mailman... it's by far my favorite listserv, but this one issue is keeping me from using it. :( Justin In a message dated Sat, 3 Aug 2002 6:59:51 AM Eastern Standard Time, "Support Desk" writes: > >The password requirement is for subscriber protection, both, against getting >subscribed unwillingly, and getting dropped inadvertently. Mailman, by >default, >automatically sends the password every month, so users are constantly >reminded >of password. If you "add" everyone, say, on the 25th of a month, then, on >the 1st >day of subsequent months, they receive their reminder. Those who **really** >don't want to be on the list will make the effort to follow the unsubscribe >instructions. If you include the links to "list info" and unsubscribe >instructions >in the header or footer of every message, they should be able to leave and >change by simple steps. >SD > >----- Original Message ----- >From: >To: >Sent: Saturday, August 03, 2002 4:35 AM >Subject: [Mailman-Users] unsubscribing without password? > > >| Hi. I've recently installed mailman, and would like to use it so that our >organization can send announcements to the subscriber list. All of the users >are added by us... it will be rare that anyone subscribes themself. But >users will be unsubscribing thereselves. So, when someone wants to >unsubscribe, it makes it a hassle for them to go and find their password >since they didn't create it in the first place. Is there any simple way for >a user to unsubscribe without their password? I noticed that 2.1 is in beta, >but I saw no changelog, so I'm not sure if something like this has been >implemented yet. >| >| Thanks, >| Justin >| >| > > From JustinHoMi at aol.com Sat Aug 3 19:33:41 2002 From: JustinHoMi at aol.com (JustinHoMi at aol.com) Date: Sat, 03 Aug 2002 13:33:41 -0400 Subject: [Mailman-Users] unsubscribing without password? Message-ID: <3D750016.4E6AAA7F.0C01BC86@aol.com> I have an idea. I looked through the templates, and saw the password template variable. I tried using that in the resent mail footer, but it didn't parse. I was thinking I'd have a "mailto:" with the subject set with the proper line to unsubscribe, including their password. It didn't work, but is there any way to get mailman to parse that variable in the footer? I went through all the source and couldn't find anything, but I'm more of a perl guy than python. Justin From rlw at rlw.best.vwh.net Sat Aug 3 20:24:16 2002 From: rlw at rlw.best.vwh.net (Bob Weissman) Date: Sat, 03 Aug 2002 11:24:16 -0700 Subject: [Mailman-Users] Digest Header modification ? In-Reply-To: <200208022140.g72LeNjX019795@utopia.West.Sun.COM> Message-ID: <5.1.1.6.0.20020803111404.00a69340@rlw.best.vwh.net> At 02:40 PM 8/2/02, Dan Mick wrote: >> Every digest starts with these lines: > >> And these are the lines I would like to replace with something else. >> They do not appear anywhere in the UI. In fact, the only place where I >> could find them is in /etc/mailman/masthead.txt >> However, editing the text there will, I'm fairly sure, edit it for ALL >> mailing lists, which is not what I want to do. > >Yes, that's where those lines appear, and the only place. >You can edit a list-specific copy in 2.1, but in >2.0.x they are global. Use the source, Luke! The great benefit of open source software is that you can make it do whatever you want. (grep is your best friend when trying to figure out what to change, where.) In this case, all you have to do is 1. Create a new masthead for your list in the same directory as your existing masthead.txt. Call it my_masthead.txt, say. 2. Edit Handlers/ToDigest.py to check for your one specific list. if self.__mlist.real_name == 'my_list_name': masthead = Utils.maketext('my_masthead.txt', self.TemplateRefs()) else: masthead = Utils.maketext('masthead.txt', self.TemplateRefs()) Sure, it's a hack. But who cares? If it offends you, there are obvious ways of making it more elegant. - Bob From steevn777 at yahoo.com Sun Aug 4 17:17:01 2002 From: steevn777 at yahoo.com (Steven C. Young) Date: Sun, 4 Aug 2002 08:17:01 -0700 (PDT) Subject: [Mailman-Users] MAILMAN- LIST In-Reply-To: <5.1.0.14.2.20020801095216.04552010@pop.ftel.co.uk> Message-ID: <20020804151701.77808.qmail@web11507.mail.yahoo.com> is it possible to have mailman add users to the mailing list via a form on the website? --------------------------------- Do You Yahoo!? Yahoo! Health - Feel better, live better -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/mailman-users/attachments/20020804/32f570c9/attachment.htm From greg at gregwestin.com Sun Aug 4 17:37:22 2002 From: greg at gregwestin.com (Greg Westin) Date: Sun, 4 Aug 2002 11:37:22 -0400 Subject: [Mailman-Users] MAILMAN- LIST In-Reply-To: <20020804151701.77808.qmail@web11507.mail.yahoo.com> Message-ID: <11D860BD-A7C0-11D6-8188-003065C03184@gregwestin.com> You can do that, as an admin, in the admin section. Or, users can add themselves via the form on the listinfo page. Is there another kind of form you'd want? Greg Westin greg at gregwestin.com On Sunday, August 4, 2002, at 11:17 AM, Steven C. Young wrote: > is it possible to have mailman add users to the mailing list via a form > on the website? From david at midrange.com Sun Aug 4 19:56:13 2002 From: david at midrange.com (David Gibbs) Date: Sun, 4 Aug 2002 12:56:13 -0500 Subject: [Mailman-Users] Virtual hosting overview? Message-ID: Anyone know of a good overview or how-to for setting up Mailman 2.0.x with Virtual hosting? Thanks! david From marc_news at merlins.org Sun Aug 4 23:46:38 2002 From: marc_news at merlins.org (Marc MERLIN) Date: Sun, 4 Aug 2002 14:46:38 -0700 Subject: [Mailman-Users] ./configure brakes on mailman 2.0.12 In-Reply-To: <3D468688.5070308@sph.emory.edu> References: <3D468688.5070308@sph.emory.edu> Message-ID: <20020804214638.GM19654@merlins.org> On Tue, Jul 30, 2002 at 08:28:56AM -0400, Roberto Colon wrote: > Hello there folks: > > I am trying to install mailman in a Sun Solaris V9 Sparc Ultra 5 > desktop. I have Python 2.2.1 install and running fine. When I try to > execute the command "./configure --prefix=/usr/local/mailman" it works > for a few seconds and then brakes with this error: breaks, right :-) > checking for CGI extensions... no > ./configure: test: unknown operator == > > I have installed and configure mailman 2.0.11 and I am trying to > upgrade. I have stoped the old mailman version before I try to install > the newone but that still won't work. Looks to me like you are running solaris sh. If you run bash instead, it should work Marc -- "A mouse is a device used to point at the xterm you want to type in" - A.S.R. Microsoft is to operating systems & security .... .... what McDonalds is to gourmet cooking Home page: http://marc.merlins.org/ | Finger marc_f at merlins.org for PGP key From wash at wananchi.com Mon Aug 5 07:22:59 2002 From: wash at wananchi.com (Odhiambo Washington) Date: Mon, 5 Aug 2002 08:22:59 +0300 Subject: [Mailman-Users] ./configure brakes on mailman 2.0.12 In-Reply-To: <20020804214638.GM19654@merlins.org> References: <3D468688.5070308@sph.emory.edu> <20020804214638.GM19654@merlins.org> Message-ID: <20020805052259.GK76851@ns2.wananchi.com> * Marc MERLIN [20020805 00:47]: wrote: > On Tue, Jul 30, 2002 at 08:28:56AM -0400, Roberto Colon wrote: > > Hello there folks: > > > > I am trying to install mailman in a Sun Solaris V9 Sparc Ultra 5 > > desktop. I have Python 2.2.1 install and running fine. When I try to > > execute the command "./configure --prefix=/usr/local/mailman" it works > > for a few seconds and then brakes with this error: While this may be diff, do you really want to have meilman installed as /usr/local/mailman/mailman ?? cheers - wash +----------------------------------+-----------------------------------------+ Odhiambo Washington, wash at wananchi.com . WANANCHI ONLINE LTD (Nairobi, KE) | http://ns2.wananchi.com/~wash/ . 1ere Etage, Loita Hse, Loita St., | GSM: (254) 722 743 223 . # 10286, 00100 NAIROBI | +---------------------------------+------------------------------------------+ "Oh My God! They killed init! You Bastards!" --from a /. post ++ ``That Ariel Sharon. Boy, he sure is controversial. Most Western countries would have to have a military coup before they enjoyed a leader of that caliber.'' (Sydney Webb) From fcombernous at eprocess.fr Mon Aug 5 09:39:22 2002 From: fcombernous at eprocess.fr (Fabien COMBERNOUS) Date: Mon, 5 Aug 2002 09:39:22 +0200 Subject: [Mailman-Users] Archiving question. Message-ID: <20020805073922.GB31250@fcombernous.mtp.eprocess.fr> Lo, All my list run very well, achive are in my web server directory, but index.html file http://mydomain/mailman/private/one-list/index.html is absolutly empty. I didn't find how to generate an index.html file. I need help. Someone know how to do that ? Thank's Fabien. -- Fabien COMBERNOUS - IT Engineer eProcess - Parc Club du Mill?naire Batiment n? 6 1025 rue Henri Becquerel - 34000 Montpellier FRANCE http://www.eprocess.fr - +33 (0)4 67 13 84 50 From helmutm at cyberdev.org Mon Aug 5 14:29:34 2002 From: helmutm at cyberdev.org (Helmut Merz) Date: Mon, 5 Aug 2002 14:29:34 +0200 Subject: [Mailman-Users] Mm2.1: Get rid of "The results of your email commands..." upon confirmation? Message-ID: <0208051429341W.20603@merz05> Hello, I got a somewhat annoying problem with Mailman 2.1b2: After sending the confirmation message to -request@ (topic: "confirm 0a3df39...") the new member gets the following message from -bounces@ (in addition to the welcome message): topic: "The results of your email commands" "The results of your email command are provided below. Attached is your original message. - Results: ? ? Confirmation succeeded - Unprocessed: ... - Ignored: ? ? > ? ? confirm 0a3df39ebdfcfb20f8b535a7aff372ed7857bab4 ? ? > - Done. " Such a message might rather confuse users than give them any useful information, so my question: Is there a standard way to prevent Mailman 2.1 from sending this message? I never saw it in Mailman 2.0 and did not get it when subscribing to other Mailman lists. Regards Helmut Merz From aris.santillan at summitmedia.com.ph Mon Aug 5 14:55:18 2002 From: aris.santillan at summitmedia.com.ph (Aris Santillan) Date: Mon, 5 Aug 2002 20:55:18 +0800 Subject: [Mailman-Users] upgrading mailman Message-ID: hello guys im running mailman 2.0.8 with a lots of mailing list / email subscriber i found out theres a bug ... """""""""""""""""'bug""""""""""""""""" Bug in Mailman version 2.0.8 We're sorry, we hit a bug! Please inform the webmaster for this site of this problem. Printing of traceback and other system information has been explicitly inhibited, but the webmaster can find this information in the Mailman error logs. """"""""""""'end of bug """""""""""""""" how can i upgrade my mailman without losing my precious email list? From cprg at cprg.net Mon Aug 5 14:55:33 2002 From: cprg at cprg.net (Support Desk) Date: Mon, 5 Aug 2002 08:55:33 -0400 Subject: [Mailman-Users] Virtual hosting overview? Message-ID: <011701c23c7f$637f5e80$0100007f@vineln01.nj.comcast.net> If your server has suexec enabled (for security) the admin pages, listinfo pages, etc. will have the url of the server_name, not the virtual_domain_name. This is because suexec does not allow annonymous login. So, instead of a url like: http://VIRTUAL-DOMAIN/mailman/listinfo/LIST-NAME http://VIRTUAL-DOMAIN/mailman/admin/LIST-NAME/ the urls will be something like: http://SERVER-DOMAIN-NAME/mailman/listinfo/LIST-NAME_VIRTUAL-DOMAIN http://SERVER-DOMAIN-NAME/mailman/admin/LIST-NAME_VIRTUAL-DOMAIN This has been reported as a common issue with the millions of domains that are using cPanel as the user interface after cPanel server owners enabled suexec because of security concerns. If you are a reseller using cPanel, or, your server is has suexec enabled there is no workaround; this is not a mailman issue, but a limitation of having suexec enabled. SD "David Gibbs" wrote in message news:aijpqm$3ge$1 at main.gmane.org... > Anyone know of a good overview or how-to for setting up Mailman 2.0.x with > Virtual hosting? > > Thanks! > > david > > > > > From cprg at cprg.net Sat Aug 3 13:59:51 2002 From: cprg at cprg.net (Support Desk) Date: Sat, 3 Aug 2002 07:59:51 -0400 Subject: [Mailman-Users] unsubscribing without password? References: <75B49FC9.6E8A087F.0C01BC86@aol.com> Message-ID: <00ea01c23ae5$479a1fc0$0100007f@vineln01.nj.comcast.net> The password requirement is for subscriber protection, both, against getting subscribed unwillingly, and getting dropped inadvertently. Mailman, by default, automatically sends the password every month, so users are constantly reminded of password. If you "add" everyone, say, on the 25th of a month, then, on the 1st day of subsequent months, they receive their reminder. Those who **really** don't want to be on the list will make the effort to follow the unsubscribe instructions. If you include the links to "list info" and unsubscribe instructions in the header or footer of every message, they should be able to leave and change by simple steps. SD ----- Original Message ----- From: To: Sent: Saturday, August 03, 2002 4:35 AM Subject: [Mailman-Users] unsubscribing without password? | Hi. I've recently installed mailman, and would like to use it so that our organization can send announcements to the subscriber list. All of the users are added by us... it will be rare that anyone subscribes themself. But users will be unsubscribing thereselves. So, when someone wants to unsubscribe, it makes it a hassle for them to go and find their password since they didn't create it in the first place. Is there any simple way for a user to unsubscribe without their password? I noticed that 2.1 is in beta, but I saw no changelog, so I'm not sure if something like this has been implemented yet. | | Thanks, | Justin | | From sema.marcelo at telemigcelular.com.br Mon Aug 5 17:19:11 2002 From: sema.marcelo at telemigcelular.com.br (Marcelo Assis) Date: Mon, 5 Aug 2002 12:19:11 -0300 Subject: [Mailman-Users] mailman archiving module References: Message-ID: <007201c23c93$73ba8d60$692d830a@celular.com.br> Hi all! I have an unnusual question: is it possible to use mailmans archiving module (is it a "separate" part or built in the main code??) to generate HTML archives of an existing mbox mailing list messages archive? I know one can use MonHarc or Hypermail, but i really dont like the final results. Thanks for any help! marcelo From chris.a.adams at state.or.us Mon Aug 5 17:49:22 2002 From: chris.a.adams at state.or.us (Christopher Adams) Date: Mon, 05 Aug 2002 08:49:22 -0700 Subject: [Mailman-Users] adding text to global default footer Message-ID: <3D4E9E82.865ADC50@state.or.us> I would like to add some text to the default footer for all lists, without having to add it individually to each list. In the Defaults.py file, there is the following line: DEFAULT_MSG_FOOTER = """_______________________________________________ I am unsure of what it is looking for- text, a file name, or....? I understand that changes to the defaults are made in the mm_cg.py file, but I don't know quite how to add it. -- Christopher Adams Oregon State Library 503-378-4243 x258 chris.a.adams at state.or.us From irwin at taranto.com Mon Aug 5 18:00:25 2002 From: irwin at taranto.com (irwin) Date: Mon, 5 Aug 2002 09:00:25 -0700 Subject: [Mailman-Users] Posting Message-ID: <200208051600.g75G0QN08065@taranto.com> Running mailman-2.0.13. I have posting limited to subscribers only. Post by non-subscribers is being rejected but sits waiting for admin action. Maybe I missed it, but how can I automatically discard all rejected postings instead of sending them to the admin and waiting for admin action? Thanks. Irwin From joel.maxwell at glooscap.go.ednet.ns.ca Mon Aug 5 18:52:58 2002 From: joel.maxwell at glooscap.go.ednet.ns.ca (Joel Maxwell) Date: Mon, 5 Aug 2002 13:52:58 -0300 Subject: [Mailman-Users] Fwd: Undelivered Mail Returned to Sender Message-ID: <20020805165259.19E366DFD@fastfood.node> I'm having trouble with mailman, version 2.0.11-1woody1. I'm running debian 2.2, with postfix, and after adding the aliases for the list and restarting postfix, I try to add myself to the list. What happens is that postfix cannot find the user 'board-request'. Below is the error message in full. What seems to be the problem here? ---------- Forwarded Message ---------- Subject: Undelivered Mail Returned to Sender Date: Mon, 5 Aug 2002 11:31:12 -0300 (ADT) From: MAILER-DAEMON at cnet.windsor.ns.ca (Mail Delivery System) To: joel.maxwell at glooscap.go.ednet.ns.ca This is the Postfix program at host cnet.windsor.ns.ca. I'm sorry to have to inform you that the message returned below could not be delivered to one or more destinations. For further assistance, please contact If you do so, please include this problem report. You can delete your own text from the message returned below. The Postfix program : unknown user: "board-request" ------------------------------------------------------- -- Joel Maxwell, WWHCN System Administrator --------------------- program sig // uses ggi, gtk, mysql; begin WriteLn('Content-type: text/plain'); WriteLn('"This is your life. This is your fucking life."'); WriteLn(' -- Kein Mitleid fur das Mehrheit'); end. -------------- next part -------------- An embedded message was scrubbed... From: Joel Maxwell Subject: Re: Board -- confirmation of subscription -- request 383534 Date: Mon, 5 Aug 2002 11:31:01 -0300 Size: 984 Url: http://mail.python.org/pipermail/mailman-users/attachments/20020805/1379c803/attachment.mht From joel.maxwell at glooscap.go.ednet.ns.ca Mon Aug 5 18:58:28 2002 From: joel.maxwell at glooscap.go.ednet.ns.ca (Joel Maxwell) Date: Mon, 5 Aug 2002 13:58:28 -0300 Subject: [Mailman-Users] shit Message-ID: <20020805165828.B92DB6DFD@fastfood.node> forgot, newaliases. -- Joel Maxwell, WWHCN System Administrator --------------------- program sig // uses ggi, gtk, mysql; begin WriteLn('Content-type: text/plain'); WriteLn('"This is your life. This is your fucking life."'); WriteLn(' -- Kein Mitleid fur das Mehrheit'); end. From claw at kanga.nu Mon Aug 5 18:18:03 2002 From: claw at kanga.nu (J C Lawrence) Date: Mon, 05 Aug 2002 09:18:03 -0700 Subject: [Mailman-Users] mailman archiving module In-Reply-To: Message from "Marcelo Assis" of "Mon, 05 Aug 2002 12:19:11 -0300." <007201c23c93$73ba8d60$692d830a@celular.com.br> References: <007201c23c93$73ba8d60$692d830a@celular.com.br> Message-ID: <27558.1028564283@kanga.nu> On Mon, 5 Aug 2002 12:19:11 -0300 Marcelo Assis wrote: > is it possible to use mailmans archiving module (is it a "separate" > part or built in the main code??) to generate HTML archives of an > existing mbox mailing list messages archive? ~/bin/arch > I know one can use MonHarc or Hypermail, but i really dont like the > final results. The output for MHonArc is entirely configurable by ending the RCs. For instance, in my case I have MHonArc outputting PHP which is then poured thru templates at render time to give whatever my current look and feel is that day: http://www.kanga.nu/archives/ See the FAQ for details on how I do this. -- J C Lawrence ---------(*) Satan, oscillate my metallic sonatas. claw at kanga.nu He lived as a devil, eh? http://www.kanga.nu/~claw/ Evil is a name of a foeman, as I live. From anna at water.ca.gov Mon Aug 5 19:27:31 2002 From: anna at water.ca.gov (Fong, Anna) Date: Mon, 5 Aug 2002 10:27:31 -0700 Subject: [Mailman-Users] upgrading mailman Message-ID: Aris, Try this thread: http://www.mail-archive.com/mailman-users at python.org/msg11052.html Hope this helps, Anna -------------------------------------------------------- Anna Q. Fong, Webmaster California Data Exchange Center > -----Original Message----- > From: mailman-users-admin at python.org [SMTP:mailman-users-admin at python.org] On Behalf Of Aris Santillan > Sent: Monday, August 05, 2002 5:55 AM > To: mailman-users at python.org > Subject: [Mailman-Users] upgrading mailman > > > hello guys > > im running mailman 2.0.8 with a lots of mailing list / email subscriber > > i found out theres a bug ... > > > """""""""""""""""'bug""""""""""""""""" > > Bug in Mailman version 2.0.8 > > We're sorry, we hit a bug! > Please inform the webmaster for this site of this problem. Printing of > traceback and other system information has been explicitly inhibited, but > the webmaster can find this information in the Mailman error logs. > > """"""""""""'end of bug """""""""""""""" > > > > > how can i upgrade my mailman without losing my precious email list? > > From sema.marcelo at telemigcelular.com.br Mon Aug 5 19:44:08 2002 From: sema.marcelo at telemigcelular.com.br (Marcelo Assis) Date: Mon, 5 Aug 2002 14:44:08 -0300 Subject: [Mailman-Users] OFF-TOPIC - mailing list archive generators References: <007201c23c93$73ba8d60$692d830a@celular.com.br> Message-ID: <00c001c23ca7$b3523770$692d830a@celular.com.br> Hi all, i know this might be a huge off-topic, but i dont know which list could i post this kind of question, so if you guys could point me to the right place for this question, i would greatly appreciate: - I?m looking for an applicantion that would do the same kind of job that MonHarc and Hypermail does, but running on windows and working on outlook express dbx. mail archives; Anyone could please help? thanks and sorry again for the off-topic! marcelo From marc_news at merlins.org Mon Aug 5 20:34:39 2002 From: marc_news at merlins.org (Marc MERLIN) Date: Mon, 5 Aug 2002 11:34:39 -0700 Subject: [Mailman-Users] Re: Traceback on CVS upgrade In-Reply-To: <15694.47215.983185.757476@anthem.wooz.org> References: <20020804174909.46ABBD3812@mail.wooz.org> <20020804185841.GE19654@merlins.org> <15694.31922.422901.66471@anthem.wooz.org> <20020805172806.GV25771@merlins.org> <15694.47215.983185.757476@anthem.wooz.org> Message-ID: <20020805183439.GX25771@merlins.org> [Cced back to the list] On Mon, Aug 05, 2002 at 01:39:59PM -0400, Barry A. Warsaw wrote: > > >>>>> "MM" == Marc MERLIN writes: > > MM> Err, I sent it to you twice already :-) > > Are you sure? Neither of your previous messages had the attachment! It was inline, the last of the two messages was: Date: Sun, 4 Aug 2002 08:49:12 -0700 From: Marc MERLIN To: barry at wooz.org Subject: Re: Ooops CVS upgrade -> lists down Message-ID: <20020804154912.GE12671 at merlins.org> 2002-08-04 08:49:15 17bNd4-0004pE-00 <= merlin at merlins.org H=saroumane.merlins.org (gandalf.merlins.org) [198.144.206.12]:43295 I=[204.80.101.251]:25 P=asmtp X=TLSv1:DES-CBC3-SHA:168 A=fixed_plain:gandalf.merlins.org S=1789 id=20020804154912.GE12671 at merlins.org T="Re: Ooops CVS upgrade -> lists down" from for barry at wooz.org (contact me off list if you'd like more details) > MM> type()) Aug 02 19:05:33 2002 qrunner(14845): AttributeError: > MM> Message instance has no att ribute 'get_default_type' Aug 02 > MM> 19:05:33 2002 (14845) CORRUPT ARCHIVE FOR LIST: test > > When you updated to cvs did you install the email 2.2 package, and did > you mailmanctl restart? This error has all the earmarks of a partial > update (i.e. Scrubber.py was updated, but you don't have email 2.2 > installed). Sure enough. I turned my head for a few seconds during the make install: make[1]: Entering directory `/var/local/src/mailman-cvs/misc' for p in email-2.2 JapaneseCodecs-1.4.7 KoreanCodecs-2.0.4; \ do \ gunzip -c $p.tar.gz | tar xf -; \ (cd $p ; PYTHONPATH=/var/local/mailman/pythonlib /usr/bin/python setup.py --quiet install --install-lib /var/local/mailman/pythonlib --install-purelib /var/local/mailman/pythonlib --install-data /var/local/mailman/pythonlib); \ done Traceback (most recent call last): File "setup.py", line 14, in ? from distutils.core import setup ImportError: No module named distutils.core Traceback (most recent call last): File "setup.py", line 5, in ? from distutils.core import setup, Extension ImportError: No module named distutils.core Traceback (most recent call last): File "setup.py", line 5, in ? from distutils.core import setup, Extension ImportError: No module named distutils.core make[1]: *** [install-packages] Error 1 Mmmh, let's see: svlug:/var/local/src/mailman-cvs/misc/email-2.2# python setup.py install Traceback (most recent call last): File "setup.py", line 14, in ? from distutils.core import setup ImportError: No module named distutils.core python -v reports: Python 2.2.1 (#1, Apr 21 2002, 08:38:44) Mmmh.... Ok, I found the problem, I had to install python2.2-dev on debian, that's where /usr/lib/python2.2/distutils/ comes from. I still get: (cd $p ; PYTHONPATH=/var/local/mailman/pythonlib /usr/bin/python setup.py --quiet install --install-lib /var/local/mailman/pythonlib --install-purelib /var/local/mailman/pythonlib --install-data /var/local/mailman/pythonlib); \ done File "/var/local/mailman/pythonlib/japanese/mappings/jis_x_0208.py", line 6234 "\x6d\x ^ SyntaxError: invalid token but at least email-2.2 installs correctly and mailman is happy again. Thanks, Marc -- "A mouse is a device used to point at the xterm you want to type in" - A.S.R. Microsoft is to operating systems & security .... .... what McDonalds is to gourmet cooking Home page: http://marc.merlins.org/ | Finger marc_f at merlins.org for PGP key From barry at wooz.org Mon Aug 5 20:55:15 2002 From: barry at wooz.org (Barry A. Warsaw) Date: Mon, 5 Aug 2002 14:55:15 -0400 Subject: [Mailman-Users] Re: Traceback on CVS upgrade References: <20020804174909.46ABBD3812@mail.wooz.org> <20020804185841.GE19654@merlins.org> <15694.31922.422901.66471@anthem.wooz.org> <20020805172806.GV25771@merlins.org> <15694.47215.983185.757476@anthem.wooz.org> <20020805183439.GX25771@merlins.org> Message-ID: <15694.51731.227292.833117@anthem.wooz.org> >>>>> "MM" == Marc MERLIN writes: MM> It was inline, the last of the two messages was: Weird. I even checked to make sure my mua wasn't hiding it from me. Oh well. I don't think I kept the messages. Friggin' gremlins. :) MM> /var/local/mailman/pythonlib); \ done >> ar/local/mailman/pythonlib/japanese/mappings/jis_x_0208.py", line >> 6234 x ^ MM> SyntaxError: invalid token Hmm, I wonder if the standard debian package has unicode enabled? It ought to, since that's the default. MM> but at least email-2.2 installs correctly and mailman is happy MM> again. Cool. Phew! -Barry From marc_news at merlins.org Mon Aug 5 20:59:27 2002 From: marc_news at merlins.org (Marc MERLIN) Date: Mon, 5 Aug 2002 11:59:27 -0700 Subject: [Mailman-Users] Re: Traceback on CVS upgrade In-Reply-To: <15694.51731.227292.833117@anthem.wooz.org> References: <20020804174909.46ABBD3812@mail.wooz.org> <20020804185841.GE19654@merlins.org> <15694.31922.422901.66471@anthem.wooz.org> <20020805172806.GV25771@merlins.org> <15694.47215.983185.757476@anthem.wooz.org> <20020805183439.GX25771@merlins.org> <15694.51731.227292.833117@anthem.wooz.org> Message-ID: <20020805185927.GY25771@merlins.org> On Mon, Aug 05, 2002 at 02:55:15PM -0400, Barry A. Warsaw wrote: > MM> /var/local/mailman/pythonlib); \ done > >> ar/local/mailman/pythonlib/japanese/mappings/jis_x_0208.py", line > >> 6234 x ^ > MM> SyntaxError: invalid token > > Hmm, I wonder if the standard debian package has unicode enabled? It > ought to, since that's the default. Does this tell? svlug:/var/local/mailman/logs# python -v # /usr/lib/python2.2/site.pyc matches /usr/lib/python2.2/site.py import site # precompiled from /usr/lib/python2.2/site.pyc # /usr/lib/python2.2/os.pyc matches /usr/lib/python2.2/os.py import os # precompiled from /usr/lib/python2.2/os.pyc import posix # builtin # /usr/lib/python2.2/posixpath.pyc matches /usr/lib/python2.2/posixpath.py import posixpath # precompiled from /usr/lib/python2.2/posixpath.pyc # /usr/lib/python2.2/stat.pyc matches /usr/lib/python2.2/stat.py import stat # precompiled from /usr/lib/python2.2/stat.pyc # /usr/lib/python2.2/UserDict.pyc matches /usr/lib/python2.2/UserDict.py import UserDict # precompiled from /usr/lib/python2.2/UserDict.pyc # /usr/lib/python2.2/copy_reg.pyc matches /usr/lib/python2.2/copy_reg.py import copy_reg # precompiled from /usr/lib/python2.2/copy_reg.pyc # /usr/lib/python2.2/types.pyc matches /usr/lib/python2.2/types.py import types # precompiled from /usr/lib/python2.2/types.pyc # /usr/lib/python2.2/__future__.pyc matches /usr/lib/python2.2/__future__.py import __future__ # precompiled from /usr/lib/python2.2/__future__.pyc Python 2.2.1 (#1, May 3 2002, 23:19:03) [GCC 2.95.4 20011002 (Debian prerelease)] on linux2 Type "help", "copyright", "credits" or "license" for more information. dlopen("/usr/lib/python2.2/lib-dynload/readline.so", 2); import readline # dynamically loaded from /usr/lib/python2.2/lib-dynload/readline.so If not, let me know how I can find out for you, and I'll file a bug with debian if unicode is disabled You may want to update the README.linux to say that debian users should make really sure that they have the python2.2-dev package install. This is otherwise going to bite other people I reckon... Marc -- "A mouse is a device used to point at the xterm you want to type in" - A.S.R. Microsoft is to operating systems & security .... .... what McDonalds is to gourmet cooking Home page: http://marc.merlins.org/ | Finger marc_f at merlins.org for PGP key From kremels at kreme.com Mon Aug 5 22:48:18 2002 From: kremels at kreme.com (LuKreme) Date: Mon, 05 Aug 2002 14:48:18 -0600 Subject: [Mailman-Users] Quick and dirty anti-Klez procmail? Message-ID: <3D4EE492.9050304@kreme.com> I don't want to restrict all attahments on one of my lists, but I do want to stript those x-midi or x-wave klez viruses. Does anyone have a quick and dirty procmail recipe to do that? I tried: :0BH * Content-Type: audio/x-midi /dev/null :0BH * Content-Type: audio/x-wav /dev/null in /etc/procmailrc but the messages where still delivered. From kremels at kreme.com Mon Aug 5 22:51:11 2002 From: kremels at kreme.com (LuKreme) Date: Mon, 05 Aug 2002 14:51:11 -0600 Subject: [Mailman-Users] stripmime.pl References: <20020620212347.7e952800.raquel@thericehouse.net> Message-ID: <3D4EE53F.6030108@kreme.com> Raquel Rice wrote: > On Thu, 20 Jun 2002 22:07:25 -0400 (EDT) > Fuzzy Fuzzy wrote: >>assuming you are not using smrsh that should work > > And if we are using smrsh?? then you need to put wrapper in the smrsh config so sendmail knows it's runable. Can't give specifics, I don't use sendmail. From bills at aa1oc.org Tue Aug 6 00:16:41 2002 From: bills at aa1oc.org (Bill Studley) Date: Mon, 05 Aug 2002 18:16:41 -0400 Subject: [Mailman-Users] Virtual Domain security question Message-ID: <3D4EF949.7090203@aa1oc.org> I want to set up Virtual domains using Apache with the following definitions: ServerName www.virtual.com ServerAdmin webmaster at virtualdomain.com ScriptAlias /mailman/ /var/mailman/cgi-bin/ DocumentRoot /var/mailman/cgi-bin DirectoryIndex mailman/listinfo/test2 Options ExecCGI AllowOverride None Order allow,deny Allow from all Alias /icons /var/www/icons Alias /pipermail "/var/mailman/archives/public/" ErrorLog logs/test2-error_log CustomLog logs/test2-access_log common This works and will load the listinfo page for virtualdomain.com. What I would like is some feedback on the security implications of doing virtual domains this way. What I'm after is to bring up the info page at the virtual domain root directory. The only alternative I see is to redirect visitors from the root page to the listinfo page with a blank index.html Comments? TIA, Bill Studley From thekkumt at uchastings.edu Tue Aug 6 00:14:19 2002 From: thekkumt at uchastings.edu (Sony Z Thekkumthara) Date: Mon, 05 Aug 2002 15:14:19 -0700 Subject: [Mailman-Users] Re-directing mail Message-ID: <3D4E964B.18339.1B0BC1A2@localhost> Hi There, I have just installed mailman and I am having a little problem which you may be able to help me... I installed and configured mailman on a linux system which is within our firewall. We have a dedicated mail server outside the firewall. Once I add users to a new list called test It is sending the confirmation request to the users in the new list "test" and all fine till there. What happens here is mailman system is passing the mail to the main mail server and it again forwarding the mail to the correct email id but sending as, from the mail server. So when ever the user send the confirmation back, the confirmation mail is going to the mail server and since it can't resolve the mail id it fails there. Would you help me by telling what chages need I to be done in my case on the firewall or on the mail server which is outside the firewall to send the mails back to the mailman host. Really appreciate your help Thanx, Zach. Sony Thekkumthara - System Administrator Information Technology Hastings College of The Law 200, McAllister Street, San Francisco, CA 94102 Ph: 415-565-4707 From raquel at thericehouse.net Tue Aug 6 01:04:33 2002 From: raquel at thericehouse.net (Raquel Rice) Date: Mon, 5 Aug 2002 16:04:33 -0700 Subject: [Mailman-Users] Quick and dirty anti-Klez procmail? In-Reply-To: <3D4EE492.9050304@kreme.com> References: <3D4EE492.9050304@kreme.com> Message-ID: <20020805160433.5784a160.raquel@thericehouse.net> On Mon, 05 Aug 2002 14:48:18 -0600 LuKreme wrote: > I don't want to restrict all attahments on one of my lists, but I > do want to stript those x-midi or x-wave klez viruses. > > Does anyone have a quick and dirty procmail recipe to do that? I > tried: Here's what I use ... (watch for line wrapping) ... # -- Klez -- :0 * ^Content-Type:.*(multipart|attachment) { # Klez1 :0B * > 50000 * ^135AAItEjhyJRI8ci0SOGIlEjxiLRI4UiUSPFItEjhCJRI8Qi0SODIlEjwyLRI4IiU SPCItE$ { # Do something with this stuff } # Klez2 :0B * > 50000 * ^Content-Type:[ ]*(audio/x-|application) * 1^0 () Hello. New to the list and i have searched the archive and found my problem and it's solution but it has generted a new one. The issue I had was with having the latest Mailman installed but version 1.5.2 of Python which caused errors and mailman traffic to halt whenever mail hit mailcmd on my server. I upgraded to python2 and it is all working now but I am wondering, since python was installed with an older version and my band-aid for the situation was to move the old python bin files and make ln's to the new ones with the old names, is there an easy way to change where mailman looks for python? I have found /usr/bin/python in Defaults.py but is this the only thing I would need to change to complete this transition to python2 or would a recompile be necessary? Thanks very much for any help... -- ____________________________ Mike Neuharth ADCS Technology Specialist http://www.umn.edu/adcs E-Mail : mjn at umn.edu Page Mail : 6126486512 at page.metrocall.com ____________________________ Recursive: Adj. See Recursive. From listmom at travellercentral.com Tue Aug 6 05:36:47 2002 From: listmom at travellercentral.com (Listmom) Date: Mon, 05 Aug 2002 20:36:47 -0700 Subject: [Mailman-Users] Can't access admin db Message-ID: Greetings. My mailman admin account shows several posts that need approval. The problem is, I can't access the administration interface. It says I found a bug. Here's the error log. Any suggestions? Aug 05 20:32:13 2002 admin(898): @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ admin(898): [----- Mailman Version: 2.0.12 -----] admin(898): [----- Traceback ------] admin(898): Traceback (most recent call last): admin(898): File "/home/mailman/scripts/driver", line 96, in run_main admin(898): main() admin(898): File "../Mailman/Cgi/admindb.py", line 115, in main admin(898): PrintRequests(mlist, doc) admin(898): File "../Mailman/Cgi/admindb.py", line 131, in PrintRequests admin(898): if not mlist.NumRequestsPending(): admin(898): File "/home/mailman/Mailman/ListAdmin.py", line 96, in NumRequestsPending admin(898): self.__opendb() admin(898): File "/home/mailman/Mailman/ListAdmin.py", line 69, in __opendb admin(898): self.__db = marshal.load(fp) admin(898): EOFError: EOF read where object expected admin(898): [----- Python Information -----] admin(898): sys.version = 2.2 (#1, Mar 27 2002, 22:19:17) [GCC 2.95.3 20010315 (release)] admin(898): sys.executable = /usr/local/bin/python admin(898): sys.prefix = /usr/local admin(898): sys.exec_prefix= /usr/local admin(898): sys.path = /usr/local admin(898): sys.platform = sunos5 admin(898): [----- Environment Variables -----] admin(898): HTTP_UA_OS: MacOS admin(898): HTTP_ACCEPT: */* admin(898): HTTP_PRAGMA: no-cache admin(898): CONTENT_TYPE: application/x-www-form-urlencoded admin(898): HTTP_REFERER: http://lists.travellercentral.com/mailman/admindb/tml admin(898): SERVER_SOFTWARE: Apache/1.3.23 (Unix) DAV/1.0.3 PHP/4.1.2 admin(898): PYTHONPATH: /home/mailman admin(898): SCRIPT_FILENAME: /home/mailman/cgi-bin/admindb admin(898): SERVER_ADMIN: webmaster at travellercentral.com admin(898): SCRIPT_NAME: /mailman/admindb admin(898): QUERY_STRING: admin(898): SERVER_SIGNATURE:
Apache/1.3.23 Server at lists.travellercentral.com Port 80
admin(898): HTTP_CONNECTION: Keep-Alive admin(898): HTTP_HOST: lists.travellercentral.com admin(898): PATH_INFO: /tml admin(898): SERVER_PROTOCOL: HTTP/1.1 admin(898): HTTP_EXTENSION: Security/Remote-Passphrase admin(898): HTTP_UA_CPU: PPC admin(898): REQUEST_URI: /mailman/admindb/tml admin(898): CONTENT_LENGTH: 42 admin(898): HTTP_USER_AGENT: Mozilla/4.0 (compatible; MSIE 5.13; Mac_PowerPC) admin(898): TZ: US/Pacific admin(898): HTTP_COOKIE: sid=1093471009 admin(898): SERVER_NAME: lists.travellercentral.com admin(898): REMOTE_ADDR: 192.168.1.253 admin(898): REMOTE_PORT: 49964 admin(898): HTTP_ACCEPT_LANGUAGE: en admin(898): REQUEST_METHOD: POST admin(898): PATH_TRANSLATED: /home/mailman/htdocs/tml admin(898): SERVER_PORT: 80 admin(898): GATEWAY_INTERFACE: CGI/1.1 admin(898): SERVER_ADDR: 209.20.244.115 admin(898): DOCUMENT_ROOT: /home/mailman/htdocs -- listmom at travellercentral.com for list information see http://lists.travellercentral.com From aris.santillan at summitmedia.com.ph Tue Aug 6 11:24:05 2002 From: aris.santillan at summitmedia.com.ph (Aris Santillan) Date: Tue, 6 Aug 2002 17:24:05 +0800 Subject: [Mailman-Users] mailman Message-ID: how can i fix this? Your message To: smartparenting at list.femalenetwork.com Subject: test Sent: Tue, 6 Aug 2002 17:22:31 +0800 did not reach the following recipient(s): smartparenting at list.femalenetwork.com on Tue, 6 Aug 2002 16:52:53 +0800 The e-mail system was unable to deliver the message, but did not report a specific reason. Check the address and try again. If it still fails, contact your system administrator. < list.femalenetwork.com #5.0.0 X-Postfix; Command died with status 2: "/home/mailman/mail/wrapper post smartparenting". Command output: Failure to exec script. WANTED gid 505, GOT gid 99. (Reconfigure to take 99?)> From R.Barrett at ftel.co.uk Tue Aug 6 11:41:19 2002 From: R.Barrett at ftel.co.uk (Richard Barrett) Date: Tue, 06 Aug 2002 10:41:19 +0100 Subject: [Mailman-Users] mailman In-Reply-To: Message-ID: <5.1.0.14.2.20020806103647.00ad2e88@pop.ftel.co.uk> At 17:24 06/08/2002 +0800, Aris Santillan wrote: >how can i fix this? > > >Your message > > To: smartparenting at list.femalenetwork.com > Subject: test > Sent: Tue, 6 Aug 2002 17:22:31 +0800 > >did not reach the following recipient(s): > >smartparenting at list.femalenetwork.com on Tue, 6 Aug 2002 16:52:53 +0800 > The e-mail system was unable to deliver the message, but did not >report a specific reason. Check the address and try again. If it still >fails, contact your system administrator. > < list.femalenetwork.com #5.0.0 X-Postfix; Command died with status >2: "/home/mailman/mail/wrapper post smartparenting". Command output: >Failure to exec script. WANTED gid 505, GOT gid 99. (Reconfigure to >take 99?)> This is telling you that when you configured Mailman the group with the id 505 was assigned as the --with-mail-gid. When your MTA ran it ran with the gid 99. Either reconfigure Mailman with --with-mail-gid=99 or run you MTA with GID 505 From anne at isoc.org Tue Aug 6 15:42:21 2002 From: anne at isoc.org (Anne Shroeder - Internet Society) Date: Tue, 6 Aug 2002 09:42:21 -0400 Subject: [Mailman-Users] Lost admin password for list Message-ID: I have lost the admin password for a list I created recently -- is there any way I can either retrieve or reset it quickly? Anne --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.380 / Virus Database: 213 - Release Date: 7/24/2002 From andy at loukes.com Tue Aug 6 17:51:46 2002 From: andy at loukes.com (Andy Loukes) Date: Tue, 6 Aug 2002 15:51:46 +0000 (GMT) Subject: [Mailman-Users] Strange admin mail problem Message-ID: If I send an email manually to admin-@ it works fine but bounce messages don't seem to arrive. My MTA (exim) says both have been delivered via the mailman list_admin_transport. Any ideas what is going on, or how to debug it. None of the mailman logs say anything is wrong... -- Andy Loukes http://www.loukes.com/andy From claw at kanga.nu Tue Aug 6 18:20:30 2002 From: claw at kanga.nu (J C Lawrence) Date: Tue, 06 Aug 2002 09:20:30 -0700 Subject: [Mailman-Users] Quick and dirty anti-Klez procmail? In-Reply-To: Message from LuKreme of "Mon, 05 Aug 2002 14:48:18 MDT." <3D4EE492.9050304@kreme.com> References: <3D4EE492.9050304@kreme.com> Message-ID: <10331.1028650830@kanga.nu> On Mon, 05 Aug 2002 14:48:18 -0600 kremels wrote: > I don't want to restrict all attahments on one of my lists, but I do > want to stript those x-midi or x-wave klez viruses. Use Mimefilter as previously documented here and configure it for the MIME types you don't want. -- J C Lawrence ---------(*) Satan, oscillate my metallic sonatas. claw at kanga.nu He lived as a devil, eh? http://www.kanga.nu/~claw/ Evil is a name of a foeman, as I live. From claw at kanga.nu Tue Aug 6 18:21:34 2002 From: claw at kanga.nu (J C Lawrence) Date: Tue, 06 Aug 2002 09:21:34 -0700 Subject: [Mailman-Users] mailman In-Reply-To: Message from "Aris Santillan" of "Tue, 06 Aug 2002 17:24:05 +0800." References: Message-ID: <10348.1028650894@kanga.nu> On Tue, 6 Aug 2002 17:24:05 +0800 Aris Santillan wrote: > how can i fix this? Your message Please see the FAQ: http://www.python.org/cgi-bin/faqw-mm.py -- J C Lawrence ---------(*) Satan, oscillate my metallic sonatas. claw at kanga.nu He lived as a devil, eh? http://www.kanga.nu/~claw/ Evil is a name of a foeman, as I live. From vic at vgg.sci.uma.es Tue Aug 6 18:25:09 2002 From: vic at vgg.sci.uma.es (Victoriano Giralt) Date: Tue, 6 Aug 2002 18:25:09 +0200 (CEST) Subject: [Mailman-Users] Lost admin password for list In-Reply-To: References: Message-ID: <35049.62.36.179.152.1028651109.squirrel@vgg.sci.uma.es> > I have lost the admin password for a list I created recently -- is > there any way I can either retrieve or reset it quickly? > It's a FAQ, visit http://www.python.org/cgi-bin/faqw-mm.py?req=all#3.8 -- Victoriano Giralt Systems Manager Central Computing Facility University of Malaga SPAIN From sema.marcelo at telemigcelular.com.br Tue Aug 6 20:00:11 2002 From: sema.marcelo at telemigcelular.com.br (Marcelo Assis) Date: Tue, 6 Aug 2002 15:00:11 -0300 Subject: [Mailman-Users] help, please: Apache cannot restart after installing mailman References: Message-ID: <008701c23d73$1c0aabf0$692d830a@celular.com.br> Folks, a friend of mine is installing and configuring mailman in his server, and he is getting the following error from Apache: [Tue Aug 6 12:40:47 2002] [notice] SIGHUP received. Attempting to restart Syntax error on line 637 of /usr/local/apache/conf/httpd.conf: Invalid command 'Exec', perhaps mis-spelled or defined by a module not included in the server configuration Apache cannot restart afterwards. Running mailman-2.0.13 and Apache/1.3.20 (going 1.3.26 on August 11th) Anyone can help??? thanks!! marcelo From vjl at www.seweb.uci.edu Tue Aug 6 20:20:29 2002 From: vjl at www.seweb.uci.edu (vjl at www.seweb.uci.edu) Date: Tue, 6 Aug 2002 11:20:29 -0700 (PDT) Subject: [Mailman-Users] help, please: Apache cannot restart after installing mailman Message-ID: On Tue, 6 Aug 2002, Marcelo Assis wrote: } [Tue Aug 6 12:40:47 2002] [notice] SIGHUP received. Attempting to restart } Syntax error on line 637 of /usr/local/apache/conf/httpd.conf: } Invalid command 'Exec', perhaps mis-spelled or defined by a module not } included in the server configuration Remove the line in httpd.conf that says: Exec /mailman/* $prefix/cgi-bin/* You don't need that. You *do* need this line though: ScriptAlias /mailman/ $prefix/cgi-bin/ Replace $prefix with the location of your mailman home [usually /home/mailman]. HTH, /vjl/ -- Vince LaMonica UC Irvine, School of Social Ecology W3 Developer <*> 116 Social Ecology I, Irvine, CA 92697 vjl at uci.edu https://www.seweb.uci.edu/~vjl Common sense is the collection of prejudices acquired by age eighteen. -- Albert Einstein From polavarapur at convergent.com Fri Aug 2 21:36:10 2002 From: polavarapur at convergent.com (Raghuveer Polavarapu) Date: Fri, 2 Aug 2002 15:36:10 -0400 Subject: [Mailman-Users] (no subject) In-Reply-To: <5.1.0.14.2.20020801162029.01c1a450@mail.usyd.edu.au> Message-ID: Hi Guys I installed mailman, on redhat linux 7.3 and everything seems to be fine. I have created a new list and then added the aliases to /etc/aliases and ran newaliases script. I am the list admin and I got the email regarding the creation of the new list. Now I go to the user site (where we can subscribe to the list) and then enter my email address and password to subscribe to the list, and it works fine. Then I receive an email asking me to confirm my subscription by replying the message. I send the reply and it seems to go without any problem, but when i look athe maillog on the MTA, I see the following--to="\home/mailman/mail/wrapper mailcmd hunters" ctl-addr= stat= sent hunters is the name of the new list that I created. But when i login to the machine as hunters I don't see any email for the user hunters. Am I supposed to see the email that i sent as a reply to confirm the subscription or do i need to look for this in a separate place? Please let me know what the deal is. Also I try to access the archives for this list and i get an Access Forbidden: You don't have permission to access /pipermail/hunters/ on this server. Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request. Please let me know how to diagnose and resolve this issue. raghu From fohs at atlantabroadband.com Sat Aug 3 23:49:18 2002 From: fohs at atlantabroadband.com (Dusty) Date: Sat, 3 Aug 2002 17:49:18 -0400 Subject: [Mailman-Users] Mailman question Message-ID: <002e01c23b37$9ead6900$02ab1e40@residents.atlantabroadband.com> Hello, Is there a way that my site's visitors can just add themselves to my list directly from my home page? I just want a simple form that lets them add their email address and hit submit. Is there a way to take the form from the admin area and modify it? Thanks in advance. Dusty Fohs besttenders.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/mailman-users/attachments/20020803/c8b29e71/attachment.htm From webmaster at pac-01.com Sun Aug 4 18:28:00 2002 From: webmaster at pac-01.com (Hideki SUNADA) Date: Mon, 05 Aug 2002 01:28:00 +0900 Subject: [Mailman-Users] some wishes Message-ID: <20020805011956.F46C.WEBMASTER@pac-01.com> Hi, I didn't know how to add some requests to the wishlist so here they are. If you can add some buttons or selection to choose the language for the list. Some program (like "urchin") is able to switch to Japanese language by just pushing the buttons. I think it will be much easier for Japanese administrator like me. Regards, ------------------------------------- Hideki SUNADA From siffert at museworld.com Mon Aug 5 12:07:21 2002 From: siffert at museworld.com (Curt Siffert) Date: Mon, 5 Aug 2002 03:07:21 -0700 Subject: [Mailman-Users] qmail, vpopmail, mailman Message-ID: <21F4DB54-A85B-11D6-99DA-000393887F74@museworld.com> Are there any recipes for getting mailman working with qmail+vpopmail ? Basically I want each domain owner to be able to go to theirdomain.com/mailman and be able to create MailmanListName at theirdomain.com . Ideally this would be possible with one installation of mailman, while "linuxfans at domain1.com" could coexist with "linuxfans at domain2.com" . But if the list names have to be unique across multiple domain names I can live with that. I've seen a couple of things like a patch to vpopmail's vdelivermail and some "supplementary-groups" patch for qmail to solve the group problem, but both seem like they are from a while ago and I'm not sure how valid they are, and there doesn't seem to be a guide out there for mailman + qmail+vpopmail. I'll write something up in exchange for some help - anyone want to email me with some pointers? Thanks, Curt From helmutm at cyberconcepts.de Mon Aug 5 13:14:25 2002 From: helmutm at cyberconcepts.de (Helmut Merz) Date: Mon, 5 Aug 2002 13:14:25 +0200 Subject: [Mailman-Users] Mm2.1: Get rid of "The results of your email commands..." upon confirmation? Message-ID: <0208051314251U.20603@merz05> Hello, I got a somewhat annoying problem with Mailman 2.1b2: After sending the confirmation message to -request@ (topic: "confirm 0a3df39...") the new member gets the following message from -bounces@ (in addition to the welcome message): topic: "The results of your email commands" "The results of your email command are provided below. Attached is your original message. - Results: ? ? Confirmation succeeded - Unprocessed: ... - Ignored: ? ? > ? ? confirm 0a3df39ebdfcfb20f8b535a7aff372ed7857bab4 ? ? > - Done. " Such a message might rather confuse users than give them any useful information, so my question: Is there a standard way to prevent Mailman 2.1 from sending this message? I never saw it in Mailman 2.0 and did not get it when subscribing to other Mailman lists. Regards Helmut Merz From aris.santillan at summitmedia.com.ph Mon Aug 5 14:47:02 2002 From: aris.santillan at summitmedia.com.ph (Aris Santillan) Date: Mon, 5 Aug 2002 20:47:02 +0800 Subject: [Mailman-Users] mailman upgrade? Message-ID: how can i upgrade my mailman 2.0.8 into newer version without losing my lists From polavarapur at convergent.com Mon Aug 5 17:18:43 2002 From: polavarapur at convergent.com (Raghuveer Polavarapu) Date: Mon, 5 Aug 2002 11:18:43 -0400 Subject: [Mailman-Users] Error processing the confirmation for subscription to a new list Message-ID: Hi Joe This is raghu Polavarapu from Convergent Media Systems Corporation trying to get in touch with you to see if you could help me with the same problem that I am having (regarding confirmation of subscriptions to a list in mailman) that I noticed you had posted on the usergroup for mailman. I have successfully instaled mailman, created a newlist and then tried to subscribe to the list. I get the email from mailman asking me to confirm the subscription to the list. I send the email to confirm my subscription but it never gets processed and I looked at the $prefix/logs/error and noticed the follwoing error: Aug 05 23:53:01 2002 qrunner(19293): Traceback (innermost last): Aug 05 23:53:01 2002 qrunner(19293): File "/home/mailman/cron/qrunner", line 283, in ? Aug 05 23:53:01 2002 qrunner(19293): kids = main(lock) Aug 05 23:53:01 2002 qrunner(19293): File "/home/mailman/cron/qrunner", line 253, in main Aug 05 23:53:01 2002 qrunner(19293): keepqueued = dispose_message(mlist, msg, msgdata) Aug 05 23:53:01 2002 qrunner(19293): File "/home/mailman/cron/qrunner", line 157, in dispose_message Aug 05 23:53:01 2002 qrunner(19293): mlist.ParseMailCommands(msg) Aug 05 23:53:01 2002 qrunner(19293): File "/home/mailman/Mailman/MailCommandHandler.py", line 123, in ParseMailCommands Aug 05 23:53:01 2002 qrunner(19293): precedence = msg.get('precedence', '').lower() Aug 05 23:53:01 2002 qrunner(19293): AttributeError : 'string' object has no attribute 'lower' I noticed that you had posted a similar error message to the user group last month and am not sure if you fixed this problem. I am hoping that you might have fixed this problem and hence trying to ge t in touch with you to get some help from you regarding this. Could you please help me or provide me with some pointers on how to fix this. Your help is geratly appreciated. thanks raghu From thekkumt at uchastings.edu Mon Aug 5 17:44:45 2002 From: thekkumt at uchastings.edu (Sony Z Thekkumthara) Date: Mon, 05 Aug 2002 08:44:45 -0700 Subject: [Mailman-Users] Re-directing the mails Message-ID: <3D4E3AFD.23484.19A70DA6@localhost> Hi There, I have just installed mailman and I am having a little problem which you may be able to help me... I installed and configured mailman on a linux system which is within our firewall. We have a dedicated mail server outside the firewall. Once I add users to a new list called test It is sending the confirmation request to the users in the new list "test" and all fine till there. What happens here is mailman system is passing the mail to the main mail server and it again forwarding the mail to the correct email id but sending as, from the mail server. So when ever the user send the confirmation back, the confirmation mail is going to the mail server and since it can't resolve the mail id it fails there. Would you help me by telling what chages need I to be done in my case on the firewall or on the mail server which is outside the firewall to send the mails back to the mailman host. Really appreciate your help Thanx, Zach. Sony Thekkumthara - System Administrator Information Technology Hastings College of The Law 200, McAllister Street, San Francisco, CA 94102 Ph: 415-565-4707 From paul.e.brabson at lmco.com Tue Aug 6 18:17:01 2002 From: paul.e.brabson at lmco.com (Brabson, Paul E) Date: Tue, 06 Aug 2002 10:17:01 -0600 Subject: [Mailman-Users] link update Message-ID: I noticed that the link for Chris Kolar and the list manager documentation is incorrect on page http://www.gnu.org/software/mailman/MM21/mgrs.html. The correct link should be http://staff.imsa.edu/~ckolar/mailman. Paul Brabson From samuelm at dme.sony.co.uk Tue Aug 6 19:52:33 2002 From: samuelm at dme.sony.co.uk (Samuel Masham) Date: Tue, 06 Aug 2002 18:52:33 +0100 Subject: [Mailman-Users] Sendmail.py - Delivery exception: [Errno 32] Broken pipe (fixed) Message-ID: <4.3.2.7.2.20020806184449.01bb11d8@dcdgw> Hi All, Just to put this in the public domain. Error message Aug 06 15:25:04 2002 (5277) Delivery exception: [Errno 32] Broken pipe Aug 06 15:25:04 2002 (5277) Traceback (most recent call last): File ".../Mailman/Handlers/HandlerAPI.py", line 82, in do_pipeline func(mlist, msg, msgdata) File ".../Mailman/Handlers/Sendmail.py", line 86, in process fp.write(msgtext) IOError: [Errno 32] Broken pipe (mailman version 2.0.11 -ish- ) basically just add a replace in the Sendmail.py file around line 86 eg:- # TBD: SECURITY ALERT. This invokes the shell! fp = os.popen(cmd + chunk, 'w') + string.replace(msgtext,"\n.\n","\n. \n"); fp.write(msgtext); status = fp.close() I am just posting this here as when I looked I saw lots of questions but no answers to this one. Samuel ps I am not subscribed so if you want to mail me it will have to be direct. From vjl at uci.edu Tue Aug 6 20:17:46 2002 From: vjl at uci.edu (Vince LaMonica) Date: Tue, 6 Aug 2002 11:17:46 -0700 (PDT) Subject: [Mailman-Users] help, please: Apache cannot restart after installing mailman In-Reply-To: <008701c23d73$1c0aabf0$692d830a@celular.com.br> Message-ID: On Tue, 6 Aug 2002, Marcelo Assis wrote: } [Tue Aug 6 12:40:47 2002] [notice] SIGHUP received. Attempting to restart } Syntax error on line 637 of /usr/local/apache/conf/httpd.conf: } Invalid command 'Exec', perhaps mis-spelled or defined by a module not } included in the server configuration Remove the line in httpd.conf that says: Exec /mailman/* $prefix/cgi-bin/* You don't need that. You *do* need this line though: ScriptAlias /mailman/ $prefix/cgi-bin/ Replace $prefix with the location of your mailman home [usually /home/mailman]. HTH, /vjl/ -- Vince LaMonica UC Irvine, School of Social Ecology W3 Developer <*> 116 Social Ecology I, Irvine, CA 92697 vjl at uci.edu https://www.seweb.uci.edu/~vjl Common sense is the collection of prejudices acquired by age eighteen. -- Albert Einstein From dbowman at ucstrategy.com Tue Aug 6 21:43:44 2002 From: dbowman at ucstrategy.com (David Bowman) Date: Tue, 6 Aug 2002 15:43:44 -0400 Subject: [Mailman-Users] FW: RE: mailman (HW#1473427) Message-ID: <000d01c23d81$94f64c00$6401a8c0@UCSDELL> David Bowman Principal Universal Competitive Strategies DBowman at UCStrategy.com 616/720-5480 -----Original Message----- From: David Bowman [mailto:dbowman at ucstrategy.com] Sent: Tuesday, August 06, 2002 3:41 PM To: 'support at hostway.com' Subject: RE: RE: mailman (HW#1473427) I did get in, thank you. However, I am very confused about the purpose and use of Mailman even (especially?) after going to their website. I currently have an act database of contacts that I use through Outlook to send a periodical newsletter. Outlook then sends me a whole host of undeliverable recipients that I wade through and manually re-send to those that did not receive an e-mail the first time. How do I replace what I am currently doing with Mailman? How do I import/export my current database? And, how do I maintain the confidentiality of my mailing list?- David David Bowman Principal Universal Competitive Strategies DBowman at UCStrategy.com 616/720-5480 -----Original Message----- From: support at hostway.com [mailto:support at hostway.com] Sent: Tuesday, August 06, 2002 1:57 PM To: dbowman at ucstrategy.com Subject: Re: RE: mailman (HW#1473427) To rate the quality of our response, please go to https://sitecontrol.hostway.com/pas/d/SiteControl/Manager/Public/Survey/ SiteSupport?key=206731790084169 Hello David, Make sure you have cleared your cache and refresh the browser. You might have been viewing a cached page. Internet Explorer: 1. Please select Tools | Internet Options 2. Select the General Tab 3. Select Delete Files Option under Temporary Internet Files 4. Select the OK button when prompted. 5. Close the Internet Options window 6. Enter the url that you wish to visit 7. Select REFRESH on the top toolbar of your browser. Netscape: 1. Please select Edit | Preferences 2. Select Advanced | Cache 3. Press the Clear Disk Cache 4. Close the Prefernecs window 5. Enter the url that you wish to visit 6. Select REFRESH on the top toolbar of your browser If the above does not work, please access the MailMan list adminstration panel directly at: http://lists.ucstrategy.com/mailman/admin/perform-habit? OR: http://64.66.154.78/mailman/admin/perform-habit? The Password is: DECuwYCX Please also try using another computer that have not visited MailMan of SiteControl. >I'm still getting an error message that reads lists.ucstrategy.com >cannot be found. I even completely shut down my browser. - David > >David Bowman >Principal >Universal Competitive Strategies >DBowman at UCStrategy.com >616/720-5480 If you have any questions, please do not hesitate to contact us again. Sincerely, Hostway Support Staff On-line Manual: http://help.hostway.com/manual/ _________________________________________________ To rate the quality of our response, please go to https://sitecontrol.hostway.com/pas/d/SiteControl/Manager/Public/Survey/ SiteSupport?key=206731790084169 _________________________________________________ **Hostway Web Control Panel(SiteControl)** -Manage and monitor your domain -View and modify your customer/billing information -Add new features/users to your account -Check your email, web stats and bandwidth Please goto: https://sitecontrol.hostway.com _________________________________________________ Do you need Ecommerce? http://hostway.com/ecommerce From sema.marcelo at telemigcelular.com.br Tue Aug 6 22:04:22 2002 From: sema.marcelo at telemigcelular.com.br (Marcelo Assis) Date: Tue, 6 Aug 2002 17:04:22 -0300 Subject: [Mailman-Users] help again: qmail not working with mailman References: Message-ID: <037601c23d84$74e1aec0$692d830a@celular.com.br> My friend sent this: Thanks a lot for those who helped on the Apache problem!! :-) It worked, allthough there's another glitch now. I cannot seem to get qmail to integrate with mailman. I followed the README.Qmail in the root dir, but it does not work out. Could you please post again to this mailing list? We're running qmail 1.03, I've added the list domain (lists.domain.tld) to /var/qmail/control/virtualdomains and to /var/qmail/control/rcpthosts as well. The script qmail-to-mailman.py is in the Mailman home dir, is set executable, python works, and the file .qmail-default points to it. If I try to mail to a newly added lists a subscribe request, I get back this error: > Sorry. Although I'm listed as a best-preference MX or A for that host, > it isn't in my control/locals file, so I don't treat it as local. (#5.4.6) It is in the virtualdomains filel, as per the README.Qmail! Thanks!! Tsch??, Johannes mailto:j.posel at lordaeron.in-berlin.de From posel at inf.fu-berlin.de Tue Aug 6 22:12:33 2002 From: posel at inf.fu-berlin.de (Johannes Posel) Date: Tue, 6 Aug 2002 22:12:33 +0200 Subject: [Mailman-Users] MailMan with Apache: error "attempt to invoke directory as script" Message-ID: <17740192263.20020806221233@inf.fu-berlin.de> Dear MailMan-Users, I'm currently trying to set up MailMan. I'm stuck with this error message: [Tue Aug 6 22:07:58 2002] [error] [client 217.235.111.92] attempt to invoke directory as script: /usr/local/mailman/cgi-bin Yes, I checked the archives, and yes, I know it is mentionned, but the answers there did not help me out, the problem is still present. This is what I set in httpd.conf: ScriptAlias /mailman/ /usr/local/mailman/cgi-bin/ As well as: AllowOverride None Options ExecCGI AllowOverride None Options ExecCGI These are the permissions: gci:/usr/local/mailman # ls -la total 28 drwxrwsr-x 18 mailman mailman 502 Aug 6 20:53 . drwxr-sr-x 18 root root 360 Aug 6 12:14 .. -rw------- 1 mailman mailman 179 Aug 6 20:53 .bash_history -rw-r--r-- 1 mailman mailman 65 Aug 6 20:58 .qmail-default -rw-r--r-- 1 mailman mailman 23 Aug 6 20:34 .qmail-owner drwxrwsr-x 8 root mailman 1670 Aug 6 21:16 Mailman drwxrwsr-x 4 root mailman 80 Aug 6 12:32 archives drwxrwsr-x 2 root mailman 590 Aug 6 12:32 bin drwxrwsr-x 2 root mailman 247 Aug 6 12:32 cgi-bin drwxrwsr-x 2 root mailman 291 Aug 6 20:28 cron drwxrwsr-x 2 root mailman 133 Aug 6 20:41 data drwxrwsr-x 2 root mailman 61 Aug 6 12:32 filters drwxrwsr-x 2 root mailman 161 Aug 6 12:32 icons drwxrwsr-x 4 root mailman 78 Aug 6 21:17 lists drwxrwsr-x 2 root mailman 35 Aug 6 22:13 locks drwxrwsr-x 2 root mailman 76 Aug 6 20:42 logs drwxrwsr-x 2 root mailman 58 Aug 6 12:32 mail drwxrwsr-x 2 root mailman 35 Aug 6 12:32 qfiles -rwxr-xr-x 1 root mailman 3904 Aug 6 20:51 qmail-to-mailman.py drwxrwsr-x 2 root mailman 186 Aug 6 12:32 scripts drwxrwsr-x 2 root mailman 35 Aug 6 12:32 spam drwxrwsr-x 2 root mailman 841 Aug 6 12:32 templates gci:/usr/local/mailman # Thanks for any head up! Cheers, Johannes mailto:posel at inf.fu-berlin.de -- A candidate is a person who gets money from the rich and votes from the poor to protect them from each other. Winamp now playing: -=[Bon Jovi - It?s My Life.mp3]=- From kleefstr at mcmaster.ca Tue Aug 6 22:11:36 2002 From: kleefstr at mcmaster.ca (Jessie Kleefstra) Date: Tue, 06 Aug 2002 16:11:36 -0400 Subject: [Mailman-Users] unwanted messages Message-ID: If and administrator of a list has set restrict posting privileges to list members only, is there a setting to discard messages that are sent from outside without asking the Administrator? ********************************* Jessie Kleefstra Email:kleefstr at mcmaster.ca Sr.Consultant,Helpdesk Services Phone:905-525-9140 ext.24357 Computing & Information Services Fax:905-528-3773 ABB-132 McMaster University From vjl at www.seweb.uci.edu Tue Aug 6 22:52:48 2002 From: vjl at www.seweb.uci.edu (Vince LaMonica) Date: Tue, 6 Aug 2002 13:52:48 -0700 (PDT) Subject: [Mailman-Users] MailMan with Apache: error "attempt to invoke directory as script" In-Reply-To: <17740192263.20020806221233@inf.fu-berlin.de> Message-ID: On Tue, 6 Aug 2002, Johannes Posel wrote: } [Tue Aug 6 22:07:58 2002] [error] [client 217.235.111.92] attempt to } invoke directory as script: /usr/local/mailman/cgi-bin } } AllowOverride None } Options ExecCGI } You need "FollowSymLinks" as well: AllowOverride None Options ExecCGI FollowSymLinks Order allow,deny Allow from all } } AllowOverride None } Options ExecCGI } I would get rid of the above section. The first one should be enough. /vjl/ -- Vince LaMonica UC Irvine, School of Social Ecology W3 Developer <*> 116 Social Ecology I, Irvine, CA 92697 vjl at uci.edu https://www.seweb.uci.edu/~vjl If Bill Gates had a nickel for every time Windows crashed... ... oh wait, never mind. From posel at inf.fu-berlin.de Tue Aug 6 23:07:27 2002 From: posel at inf.fu-berlin.de (Johannes Posel) Date: Tue, 6 Aug 2002 23:07:27 +0200 Subject: [Mailman-Users] MailMan with Apache: error "attempt to invoke directory as script" In-Reply-To: References: Message-ID: <19443486550.20020806230727@inf.fu-berlin.de> Dear Vince, Thanks very much for your reply! Going back 22:52 06.08.2002... > > AllowOverride None > Options ExecCGI FollowSymLinks > Order allow,deny > Allow from all > Ok, I changed httpd.conf, restarted Apache, but still the same error :& > I would get rid of the above section. The first one should be > enough. Done, didn't change. What could be the culprit? Thank you very much! Johannes mailto:posel at inf.fu-berlin.de -- The 50-50-90 rule: Anytime you have a 50-50 chance of getting something right, there's a 90% probability you'll get it wrong. From vjl at soceco.uci.edu Tue Aug 6 23:25:10 2002 From: vjl at soceco.uci.edu (Vince LaMonica) Date: Tue, 6 Aug 2002 14:25:10 -0700 (PDT) Subject: [Mailman-Users] MailMan with Apache: error "attempt to invoke directory as script" In-Reply-To: Message-ID: On Tue, 6 Aug 2002, Johannes Posel wrote: } Ok, I changed httpd.conf, restarted Apache, but still the same error } :& Ok, make sure you're surfing to: http://www.yourdomain.org/mailman/listinfo or http://www.yourdomain.org/mailman/admin If you don't specify 'listinfo' or 'admin' after '/mailman/' you'll get the error you're seeing. Let me know if that helps, /vjl/ -- Vince LaMonica UC Irvine, School of Social Ecology W3 Developer <*> 116 Social Ecology I, Irvine, CA 92697 vjl at uci.edu https://www.seweb.uci.edu/~vjl _____________________________________________ _ _____ ) Across the clouds I see my shadow fly )_ _ _(vj\____o /_/_ | ) Out of the corner of my watering eye. [PF] ) >-----._/_/__]> )_____________________________________________) `0 | From levine at cs.unm.edu Tue Aug 6 23:32:21 2002 From: levine at cs.unm.edu (Scott Levine) Date: Tue, 6 Aug 2002 15:32:21 -0600 (MDT) Subject: [Mailman-Users] Archive Trouble. Message-ID: Hi, everyone, I just upgraded to mailman 2.0.11, and just about everything seems to be working fine. People are happily joining and posting to lists just fine. However, since I've upgraded, whenever anyone tries to access the archives, they log in, and go to the archive index. As soon as they click on the any of the "Thread," "author" "subject" or "date" links, they get sent right back to the login screen. This sort of thing loops forever. If I change the address in my browser's location bar, from "http://www/mailman/private/list" to "http://www/cgi-bin/mailman/private/list/ it works fine, and they can access the archives great, like there's no problem. I'm using mailman with apache, and as far as I can tell, I have all the apache config stuff done right, but it's possible I've missed something. I've tried adding a symlink from my html root directory for "mailman" that points over to the "cgi-bin/mailman" directory, and even vice versa, but still, no dice. has anyone seen this sort of thing before? any ideas on how to fix it? Thanks everyone. --Scott. -- Scott Levine University of New Mexico, Department of Computer Science 505 277 2921 levine at cs.unm.edu From posel at inf.fu-berlin.de Tue Aug 6 23:50:15 2002 From: posel at inf.fu-berlin.de (Johannes Posel) Date: Tue, 6 Aug 2002 23:50:15 +0200 Subject: [Mailman-Users] MailMan with Apache: error "attempt to invoke directory as script" In-Reply-To: References: Message-ID: <11946052319.20020806235015@inf.fu-berlin.de> Dear Vince, Going back 23:25 06.08.2002... > If you don't specify 'listinfo' or 'admin' after '/mailman/' you'll get > the error you're seeing. > Let me know if that helps, Thanks, that was it. /me slaps his head against the table :( Thanks for your help! Cheers, Johannes mailto:posel at inf.fu-berlin.de -- One nice thing about egotists: they don't talk about other people. From posel at inf.fu-berlin.de Wed Aug 7 00:03:14 2002 From: posel at inf.fu-berlin.de (Johannes Posel) Date: Wed, 7 Aug 2002 00:03:14 +0200 Subject: [Mailman-Users] MailMan: Python error? In-Reply-To: <11946052319.20020806235015@inf.fu-berlin.de> References: <11946052319.20020806235015@inf.fu-berlin.de> Message-ID: <3846831089.20020807000314@inf.fu-berlin.de> Dear Vince, Going back 23:50 06.08.2002... > Thanks, that was it. /me slaps his head against the table :( Well, I was a bit too happy. Apache is fine now, but I keep getting these errors now: Traceback (most recent call last): File "/usr/local/mailman/cron/qrunner", line 89, in ? from Mailman.Handlers import HandlerAPI File "/usr/local/mailman/Mailman/Handlers/HandlerAPI.py", line 26, in ? from Mailman.pythonlib.StringIO import StringIO ImportError: No module named pythonlib.StringIO After I add a new list. The list is created fine, but even the owner notification is not sent out? I'm a bit lost there. I'm running Python 2.2.1 Thanks for your help! Cheers, Johannes mailto:posel at inf.fu-berlin.de -- If you think the problem is bad now, just wait until we've solved it. From vjl at soceco.uci.edu Wed Aug 7 01:15:57 2002 From: vjl at soceco.uci.edu (Vince LaMonica) Date: Tue, 6 Aug 2002 16:15:57 -0700 (PDT) Subject: [Mailman-Users] MailMan: Python error? In-Reply-To: <3846831089.20020807000314@inf.fu-berlin.de> Message-ID: On Wed, 7 Aug 2002, Johannes Posel wrote: } After I add a new list. The list is created fine, but even the owner } notification is not sent out? I'm a bit lost there. I'm running } Python 2.2.1 Make sure you've got the cron jobs running, as per the docs on this page: http://list.org/install-final.html Make note of this: % su - mailman % cd $prefix/cron % crontab crontab.in HTH, /vjl/ -- Vince LaMonica UC Irvine, School of Social Ecology W3 Developer <*> 116 Social Ecology I, Irvine, CA 92697 vjl at uci.edu https://www.seweb.uci.edu/~vjl A)bort, R)etry, I)nfluence with large hammer. From lj at mandala-designs.com Wed Aug 7 05:41:29 2002 From: lj at mandala-designs.com (ljacobs ) Date: Tue, 6 Aug 2002 23:41:29 -0400 Subject: [Mailman-Users] compiling & installing Mailman2.1b Message-ID: <200208062341.AA503120048@mandala-designs.com> Near the end of the "make install" on a RH 7.2 system, I get the error message from the bin/update: "Traceback (most recent call last): File "bin/update", line 44, in ? import paths ImportError: No module named paths make: *** [update] Error 1" What are the recommended solutions to this error? Thanks. ________________________________________________________________ Sent via the WebMail system at mandala-designs.com From claw at kanga.nu Wed Aug 7 07:19:31 2002 From: claw at kanga.nu (J C Lawrence) Date: Tue, 06 Aug 2002 22:19:31 -0700 Subject: [Mailman-Users] mailman upgrade? In-Reply-To: Message from "Aris Santillan" of "Mon, 05 Aug 2002 20:47:02 +0800." References: Message-ID: <18784.1028697571@kanga.nu> On Mon, 5 Aug 2002 20:47:02 +0800 Aris Santillan wrote: > how can i upgrade my mailman 2.0.8 into newer version without losing > my lists Please see the FAQ: http://www.python.org/cgi-bin/faqw-mm.py -- J C Lawrence ---------(*) Satan, oscillate my metallic sonatas. claw at kanga.nu He lived as a devil, eh? http://www.kanga.nu/~claw/ Evil is a name of a foeman, as I live. From admin at shellworld.net Wed Aug 7 07:48:42 2002 From: admin at shellworld.net (Ken Scott) Date: Wed, 7 Aug 2002 00:48:42 -0500 (CDT) Subject: [Mailman-Users] Issues with Mailman and Sendmail Message-ID: This question might well be better posted elsewhere, and if that's the case I apologize, however, as the subject is covered briefly in the FAQ, I thought I'd try here first to see if I could get some advice from anyone who might have already dealt with the issue. Specifically, I'm looking for information on how to turn off synchronous DNS resolution for messages originating from the local host in sendmail, as we are having a very difficult time with what I believe to be this problem and, being a mere mortal, I can't figure out how to do it by looking at sendmail.cf. I've looked at the sendmail FAQ, but can't find anything on it there, and the sendmail README supplied with Mailman doesn't address it either, that I can find. Thanks very much in advance for any help. -- Ken Scott, admin at shellworld.net From wash at wananchi.com Wed Aug 7 07:52:51 2002 From: wash at wananchi.com (Odhiambo Washington) Date: Wed, 7 Aug 2002 08:52:51 +0300 Subject: [Mailman-Users] some wishes In-Reply-To: <20020805011956.F46C.WEBMASTER@pac-01.com> References: <20020805011956.F46C.WEBMASTER@pac-01.com> Message-ID: <20020807055251.GA2215@ns2.wananchi.com> * Hideki SUNADA [20020806 23:58]: wrote: > Hi, > > I didn't know how to add some requests to the wishlist > so here they are. > > If you can add some buttons or selection to choose the > language for the list. Some program (like "urchin") is > able to switch to Japanese language by just pushing the > buttons. I think it will be much easier for Japanese > administrator like me. Hello Hideki, The options you want are in 2.1b2 already. Take a look. PS: I tried to switch to Japanese language and got an error but that could be something to do with the fact that I may not be having the libs in my box. cheers - wash +----------------------------------+-----------------------------------------+ Odhiambo Washington, wash at wananchi.com . WANANCHI ONLINE LTD (Nairobi, KE) | http://ns2.wananchi.com/~wash/ . 1ere Etage, Loita Hse, Loita St., | GSM: (254) 722 743 223 . # 10286, 00100 NAIROBI | +---------------------------------+------------------------------------------+ "Oh My God! They killed init! You Bastards!" --from a /. post ++ ``That Ariel Sharon. Boy, he sure is controversial. Most Western countries would have to have a military coup before they enjoyed a leader of that caliber.'' (Sydney Webb) From wash at wananchi.com Wed Aug 7 08:23:45 2002 From: wash at wananchi.com (Odhiambo Washington) Date: Wed, 7 Aug 2002 09:23:45 +0300 Subject: [Mailman-Users] FW: RE: mailman (HW#1473427) In-Reply-To: <000d01c23d81$94f64c00$6401a8c0@UCSDELL> References: <000d01c23d81$94f64c00$6401a8c0@UCSDELL> Message-ID: <20020807062345.GC2215@ns2.wananchi.com> * David Bowman [20020806 22:57]: wrote: > > > David Bowman > Principal > Universal Competitive Strategies > DBowman at UCStrategy.com > 616/720-5480 > > I did get in, thank you. However, I am very confused about the purpose > and use of Mailman even (especially?) after going to their website. What confusion did you get into after reading their website? > I currently have an act database of contacts that I use through Outlook > to send a periodical newsletter. That is the bad way ... tsk I hate it. > Outlook then sends me a whole host of undeliverable recipients that I > wade through and manually re-send to those that did not receive an e-mail > the first time. I don't understand. If M$ Lookout! failed to deliver them, how do you (as a human) manage to deliver them? You modify the addresses?? > How do I replace what I am currently doing with Mailman? How do I > import/export my current database? I took the pain to see how you can do this (I don't use any Microsoft products): In Outlook Express v5.x, the following clicks will do: File-->Export-->Addressbook Choose the opition for Text File (comma separated values), you get a screen that asks the filename to export to (Save File As), there is a button for Browse. There you select the file extension/Location, Choose the extension TXT, click save, click Next then **Deselect** all fields that will be displayed, leaving only the field for e-mail address. This will give you a file (I'll call it addressbook.txt) with all the e-mail addresses listed ONE PER LINE. Edit the file to make sure _only_ e-mail addresses appear and nothing else. Export the file to your unix box (somehow). Now you can run the command to add them to your list $prefix/mailman/bin/add_members -n /path/to/addressbook.txt -w y listname ps: You have to know the options you want on that command. > And, how do I maintain the confidentiality of my mailing list? 1. Don't advertise the list (see the Privacy Options) from the web UI. 2. Restrict posting to Members Only 3. Restrict the people who can view the members list to Members Only 4. Restrict the archives access to Members Only (or just don't archive) Have you looked at mailman's list options on the web interface?? Cheers! -Wash -- Odhiambo Washington "The box said 'Requires Wananchi Online Ltd. www.wananchi.com Windows 95, NT, or better,' Tel: 254 2 313985-9 Fax: 254 2 313922 so I installed FreeBSD." GSM: 254 72 743 223 GSM: 254 733 744 121 This sig is McQ! :-) Unnamed Law: If it happens, it must be possible. From tal at whatexit.org Wed Aug 7 08:42:12 2002 From: tal at whatexit.org (Tom Limoncelli) Date: Wed, 7 Aug 2002 02:42:12 -0400 Subject: [Mailman-Users] How to debug mailman problems? Message-ID: <20020807024212.A21927@joisey.whatexit.org> Posting has stopped working for my mailman site. It was working for years and suddenly things have halted. (Web access and other functions work). python 1.6, mailman 2.0beta6, Solaris 2.7, latest apache, latest postfix. (Yes, I know I should upgrade but the last time I did the master password stoppped working so I reverted) Here's the problem I'm having right now: When I post a mesage, I see from /var/log/maillog that the message is getting to the system. 262E29E: to=, relay=local, delay=9, status=sent ("|/opt/mailman/mail/wrapper post udi-tech") The new .db and .msg files appear in the qfiles directory. However, the message never gets sent and the qfiles directory seems to grow larger and larger. I don't see anyplace where a methodological system for debugging mailman problems is documented. This is extremely frustrating. Can someone point me in the right direction? I'm traveling right now and its very frustrating to know that back home, 14 timezones away, I have more than a dozen mailing lists that aren't working. Visiting down under, --tal -- Tom Limoncelli -- tal at whatexit.org http://whatexit.org/tal http://www.EverythingSysadmin.com From chuqui at plaidworks.com Wed Aug 7 09:25:15 2002 From: chuqui at plaidworks.com (Chuq Von Rospach) Date: Wed, 07 Aug 2002 00:25:15 -0700 Subject: [Mailman-Users] How to debug mailman problems? In-Reply-To: <20020807024212.A21927@joisey.whatexit.org> Message-ID: On 8/6/02 11:42 PM, "Tom Limoncelli" wrote: > mailman 2.0beta6, Bad juju. Lotsa known problems with that beta, including stuff that could be causing your problems. You need to upgrade before we can even think of debugging a problem at this point, it's almost guaranteed fixed in the current 2.0 release. > I know I should upgrade but the last time I did > the master password stoppped working so I reverted) Did you read the readme for the upgrade? Security bug. Had to change the crypt functions. Which means the old crypted passwords stopped working. Bit of a hassle, but by staying at b6, you not only left yourself with buggy software, you're wide open to various cross scripting bugs AND some crypt hacks. So you'll need to upgrade, then reset the site password with the password tool. > I'm traveling right now and its very frustrating to know that > back home, 14 timezones away, I have more than a dozen mailing > lists that aren't working. It is almost guaranteed a problem caused by still running beta 6. I know, not what you wanted to hear, but reality sucks sometimes. -- Chuq Von Rospach, Architech chuqui at plaidworks.com -- http://www.chuqui.com/ The Cliff's Notes Cliff's Notes on Hamlet: And they all died happily ever after From sema.marcelo at telemigcelular.com.br Wed Aug 7 15:20:56 2002 From: sema.marcelo at telemigcelular.com.br (Marcelo Assis) Date: Wed, 7 Aug 2002 10:20:56 -0300 Subject: [Mailman-Users] Two questions about message archiving References: Message-ID: <00b801c23e15$43be8570$692d830a@celular.com.br> Hi folks, I got two questions about message archiving: 1- How do i import the old messages to the list i?m creating on v2.1b2, so mailman can create the html files for them??? The file is a standard mbox; 2- Is it possible to make mailman number each message like Yahoo Groups does, so i when i browse thru the web archives i can atually see how many messages the list generated so far, and also on the main archiving screen, where you choose which month and which indexing u wanna see, i can also see the amount of messages of that specific month?? Thanks for any help! marcelo From nielsene at MIT.EDU Wed Aug 7 19:07:52 2002 From: nielsene at MIT.EDU (Eric D Nielsen) Date: Wed, 07 Aug 2002 13:07:52 -0400 Subject: [Mailman-Users] Looping authentication in private archive... Message-ID: <200208071707.NAA20115@cathedral-seven.mit.edu> This appears to be commonly reported in the archive without any replies.. Everything works on my installation, except access to private archives. List admin access to the admin pages works. Public archives work. Private archives continually ask for authentication and on successful authentication displays the list archive index. selecting any link brings you back to the authentication page, and returns you to the index. Never letting you access the private archive. I've tried with Mozilla, Netscape, MSIE. I've tried starting a new browser in case the admin cookie was confusing it. I'm not seeing anything in the logs. Does anyone know what causes this or how to fix it? Eric From jeffp at generalist.org Wed Aug 7 19:36:48 2002 From: jeffp at generalist.org (Jeff Poretsky) Date: Wed, 7 Aug 2002 13:36:48 -0400 Subject: [Mailman-Users] problems with new install Message-ID: <20020807173648.GA29636@generalist.org> should i just give up and re-install from scratch? the message from check_perms is [root at reweb1]# ./check_perms Traceback (innermost last): File "./check_perms", line 50, in ? MAILMAN_GRPNAME = grp.getgrgid(MAILMAN_GID)[0] TypeError: illegal argument type for built-in operation This is on a RedHat 7.1, kernel 2.4.9-31 Thanks Jeff Poretsky From fredb86 at hotmail.com Wed Aug 7 20:37:39 2002 From: fredb86 at hotmail.com (Fred B) Date: Wed, 07 Aug 2002 13:37:39 -0500 Subject: [Mailman-Users] Installing Mailman without root privileges? Message-ID: I have an account on a hosting service that runs FreeBSD and Qmail. They do not have Mailman installed. However, they do have Apache and Python installed. I can also compile sources using GNU C. The Mailman installation directions suggest that I need root privileges for some initial setup, but I'm just wondering if it's possible to do it without root privileges since I'm just using it with my account. Thanks! FB _________________________________________________________________ Join the world?s largest e-mail service with MSN Hotmail. http://www.hotmail.com From bronto at csd-bes.net Wed Aug 7 20:44:24 2002 From: bronto at csd-bes.net (bronto) Date: Wed, 7 Aug 2002 11:44:24 -0700 Subject: [Mailman-Users] MM2.1b2: Mailman/Cron error Message-ID: I installed mailman v2.1b2 on my server last month. Everything seems to be working fine. On Aug 1st I got an email: --------------------------------------------------------------- Subject: Cron /usr/bin/python2 -S /usr/local/mailman/cron/mailpasswds Date: Thu, 1 Aug 2002 05:00:02 -0700 (PDT) Site list is missing: mailman --------------------------------------------------------------- This obviously has to do with the automatic mailing of passwords & such at the beginning of every month, but what do I do about it? I didn't get any password notifications this morning like I would have expected. I haven't asked any subscribers but I imagine not. Thanks From jonc at haht.com Wed Aug 7 21:32:10 2002 From: jonc at haht.com (Jon Carnes) Date: Wed, 7 Aug 2002 15:32:10 -0400 Subject: [Mailman-Users] Installing Mailman without root privileges? In-Reply-To: Message-ID: <000b01c23e49$2038c000$0b04010a@JCARNES> No. You need root. You can get by without root to simply install the files/applications (in your home area - the apps would run as you instead of the user "mailman"), but you need to have root access to modify the system's mail aliases file so that mail actually makes it to your lists - and to modify the webserver's config file so that the Mailman CGI area is setup properly. Jon Carnes -----Original Message----- From: Fred B [mailto:fredb86 at hotmail.com] Sent: Wednesday, August 07, 2002 2:38 PM To: mailman-users at python.org Subject: [Mailman-Users] Installing Mailman without root privileges? I have an account on a hosting service that runs FreeBSD and Qmail. They do not have Mailman installed. However, they do have Apache and Python installed. I can also compile sources using GNU C. The Mailman installation directions suggest that I need root privileges for some initial setup, but I'm just wondering if it's possible to do it without root privileges since I'm just using it with my account. Thanks! FB _________________________________________________________________ Join the world?s largest e-mail service with MSN Hotmail. http://www.hotmail.com ------------------------------------------------------ Mailman-Users mailing list Mailman-Users at python.org 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/ From sema.marcelo at telemigcelular.com.br Wed Aug 7 23:15:19 2002 From: sema.marcelo at telemigcelular.com.br (Marcelo Assis) Date: Wed, 7 Aug 2002 18:15:19 -0300 Subject: [Mailman-Users] Message archiving question References: <00b801c23e15$43be8570$692d830a@celular.com.br> Message-ID: <01b601c23e57$88deb9d0$692d830a@celular.com.br> I was checking this list?s message archives, and i noticed we have messages ranging from April 2024, June 2013, etc, to january and december 1970. I would like to know: - the archives date indexes are built from serves internal date and time or from subscribers date and time time included in message headers? - is it possible to "number" the messages like Yahoo Groups does?? Thanks! marcelo ----- Original Message ----- From: "Marcelo Assis" Cc: <> Sent: Wednesday, August 07, 2002 10:20 AM Subject: [Mailman-Users] Two questions about message archiving > Hi folks, > > I got two questions about message archiving: > > 1- How do i import the old messages to the list i?m creating on v2.1b2, so > mailman can create the html files for them??? The file is a standard mbox; > > 2- Is it possible to make mailman number each message like Yahoo Groups > does, so i when i browse thru the web archives i can atually see how many > messages the list generated so far, and also on the main archiving screen, > where you choose which month and which indexing u wanna see, i can also see > the amount of messages of that specific month?? > > Thanks for any help! > > marcelo > > > > > ------------------------------------------------------ > Mailman-Users mailing list > Mailman-Users at python.org > 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/ From dhomsdairy at psbnewton.com Thu Aug 8 02:04:23 2002 From: dhomsdairy at psbnewton.com (Andrew Dhom) Date: Wed, 07 Aug 2002 17:04:23 -0700 Subject: [Mailman-Users] Re: Wernsing-Eimann Genealogy Message-ID: <3D51B587.BFEF85E4@psbnewton.com> Hi I've been reading the e-mail letters for some time now and have not read anything concerning the Wernsing or Eimann families in Hannover so I will send this and hope for a response. I am searching for: Hermann Henrich WERNSING born ca. 1804-1807 in the old kingdom of Hannover. Married to : Maria Katharina EIMANN born 1 May 1807 also in the old kingdom of Hannover. The marriage took place probably in Germany before this couple emigrated to America. They were in Cincinnati, Ohio by 1836. Possible ports of entry were New York or New Orleans (I think this couple may have emigrated without permission of the government). Hermann was a member of the German Land Company of Cincinnati, Ohio which was established in 1839 for the purpose of establishing the town of Teutopolis, Illinois. Hermann died 14 April 1874 in Teutopolis, Illinois. Maria Katharina died 11 October 1863 in Teutopolis, Illinois, and the family was Roman Catholic. The couple had the following children: 1) Franz, born 16 Dec 1839 in Cincinnati, Ohio, and married Anna Gerding. 2) Mary Elizabeth, born 23 Aug 1841 in Cincinnati, married Henry Althoff. 3) John Henry Hermann, born 23 Nov 1846 in Teutopolis, married Mary Catherine Kroeger. 4) J. Hermann, born 18 March 1848 in Teutopolis, married Elizabeth Kroeger. 5) Mary Catherine, born 20 July 1853 in Teutopolis, married George Overbeck. 6) Mary Anna (birth date unknown), married Henrich Habing. I have searched for this family for about 15 years and most recently have employed Falk Liebezeit to help me in my research, and so far we have not been able to establish the villages from where they came. If anyone has any information concerning these people, I would greatly appreciate hearing from you. Most Sincerely, Sharon Dhom email: dhomsdairy at psbnewton.com From wolf at wolfstream.net Thu Aug 8 02:53:15 2002 From: wolf at wolfstream.net (Tom Whiting) Date: Wed, 7 Aug 2002 19:53:15 -0500 Subject: [Mailman-Users] Installing Mailman without root privileges? In-Reply-To: References: Message-ID: <200208071953.15566.wolf@wolfstream.net> Anytime you have to add a user, you need to have root access. Anytime you modify mail settings (aliases, filters, etc), you need to have root access. Any time you have to modify http settings, you need to have root access In short, yes, you need root access to install Mailman From martin at eipye.com Thu Aug 8 03:25:04 2002 From: martin at eipye.com (Martin Davis) Date: Wed, 07 Aug 2002 18:25:04 -0700 Subject: [Mailman-Users] majordomo legacy archives Message-ID: <5.1.0.14.2.20020807182126.01747728@mail.eipye.com> I am about to become the moderator of a list that currently runs under majordomo. The legay archive will need to be moved to a new site where mailman is the preferred list manager. Information would be appreciated about the feasibility of moving such a list to mailman. Thanks, Martin Martin Davis Visiting Scholar UC Berkeley Professor Emeritus, NYU martin at eipye.com (Add 1 and get 0) http://www.eipye.com From rlw at rlw.best.vwh.net Thu Aug 8 05:03:21 2002 From: rlw at rlw.best.vwh.net (Bob Weissman) Date: Wed, 07 Aug 2002 20:03:21 -0700 Subject: [Mailman-Users] Installing Mailman without root privileges? In-Reply-To: <000b01c23e49$2038c000$0b04010a@JCARNES> References: Message-ID: <5.1.1.6.0.20020807195918.00a30cb0@rlw.best.vwh.net> At 12:32 PM 8/7/02, Jon Carnes wrote: >No. You need root. Not exactly. I have successfully installed Mailman 2.0.x without root privileges. >You can get by without root to simply install the files/applications (in >your home area - the apps would run as you instead of the user "mailman"), >but you need to have root access to modify the system's mail aliases file so >that mail actually makes it to your lists - and to modify the webserver's >config file so that the Mailman CGI area is setup properly. >Jon Carnes This is all true and correct. But it doesn't imply you need root. My ISP (Interland) provides enough Unix-group-type privileges that I can accomplish everything I need without root. I.e., I can edit /etc/mail/aliases and the Apache *.conf files without being root. Of course, this requires an enlightened ISP which can provide you with just enough rope not to hang yourself. - Bob From aris.santillan at summitmedia.com.ph Thu Aug 8 06:09:52 2002 From: aris.santillan at summitmedia.com.ph (Aris Santillan) Date: Thu, 8 Aug 2002 12:09:52 +0800 Subject: [Mailman-Users] mailman Message-ID: hello guys why is it my mailman is binded to localhost.localdomain ? how can i change it to my real domain? From wolf at wolfstream.net Thu Aug 8 06:19:36 2002 From: wolf at wolfstream.net (Tom Whiting) Date: Wed, 7 Aug 2002 23:19:36 -0500 Subject: [Mailman-Users] mailman In-Reply-To: References: Message-ID: <200208072319.36996.wolf@wolfstream.net> This is a case of RTFM (Read the &*^##%^ manual). This is all covered there. Make sure that sendmail (or your MTA) is pointing to yourhost.com and will accept mail for yourhost.com however On Wednesday 07 August 2002 11:09 pm, Aris Santillan wrote: > hello guys > > why is it my mailman is binded to > localhost.localdomain ? > how can i change it to my real > domain? > > > > ------------------------------------------------------ > Mailman-Users mailing list > Mailman-Users at python.org > 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/ From wolf at wolfstream.net Thu Aug 8 06:26:57 2002 From: wolf at wolfstream.net (Tom Whiting) Date: Wed, 7 Aug 2002 23:26:57 -0500 Subject: [Mailman-Users] Installing Mailman without root privileges? In-Reply-To: <5.1.1.6.0.20020807195918.00a30cb0@rlw.best.vwh.net> References: <5.1.1.6.0.20020807195918.00a30cb0@rlw.best.vwh.net> Message-ID: <200208072326.57229.wolf@wolfstream.net> > Of course, this requires an enlightened ISP which can provide you with just > enough rope not to hang yourself. Or an ISP with no clue. that's all well and good, until you run into the individuals that will abuse that power and priviledge to do so, and corrupt quite a few things. I've seen it done more than once, but that's beyond the point of the discussion. In short: You need ROOT access (generally) to modify things such as cgi aliases, pointing directly to your list. You need ROOT access to create the mailman user (though this CAN be done as your regular user I believe... It's just not a good idea). You need ROOT access to create the aliases for mailman. You need ROOT access to restart apache so that your cgi-bin aliases will work From tal at whatexit.org Thu Aug 8 07:03:41 2002 From: tal at whatexit.org (Tom Limoncelli) Date: Thu, 8 Aug 2002 01:03:41 -0400 Subject: [Mailman-Users] How to debug mailman problems? In-Reply-To: ; from chuqui@plaidworks.com on Wed, Aug 07, 2002 at 12:25:15AM -0700 References: <20020807024212.A21927@joisey.whatexit.org> Message-ID: <20020808010341.A16859@joisey.whatexit.org> After much recommendation, I've upgraded to 2.0.12. However, I'm still having the same problem. Email gets to the "wrapper post" mechanism, the .msg and .db files appear in the qfiles directory, but no messages go out. The file logs/error gets this line appended to it: Aug 08 00:58:05 2002 (17824) Could not acquire qrunner lock Permissions on the locks directory are: drwxrwsr-x 2 mailman mailman 512 Aug 8 01:00 . Any suggestions? Possibly unrelated question: The old qfiles directory had 3000 files in it. I moved them to a temporary directory for the time being. When I get all this up and running can I move the files back into place and expect them to be processed or is there a side-database of files to be processed? Also, someone suggested that they had seen similar problems when the mbox files started to get "too large". How might I rotate them? Thanks, --tal P.S. The 2.0.12 configure script doesn't run using Solaris sh or bash. "ksh configure" worked. -- Tom Limoncelli -- tal at whatexit.org BiZone's regional conference: http://whatexit.org/tal "ENDLESS POSSIBILITIES" http://www.EverythingSysadmin.com November 15-17, 2002, Princeton, NJ http://www.BiZone.org/con2002 From chuqui at plaidworks.com Thu Aug 8 07:18:55 2002 From: chuqui at plaidworks.com (Chuq Von Rospach) Date: Wed, 07 Aug 2002 22:18:55 -0700 Subject: [Mailman-Users] How to debug mailman problems? In-Reply-To: <20020808010341.A16859@joisey.whatexit.org> Message-ID: On 8/7/02 10:03 PM, "Tom Limoncelli" wrote: > The file logs/error gets this line appended to it: > > Aug 08 00:58:05 2002 (17824) Could not acquire qrunner lock That's normal. Mailman spawns qrunner once a minute from cron. If qrunner is already running, there's a lock set and the new qrunner exits with that error. The locks are in ~mailman/qrunner. Check ps to see if there's a qrunner process running. If not, you can blow away those locks and clear the deadlock on the qrunner process (but in theory, it should time out and unlock itself, too) > Permissions on the locks directory are: > drwxrwsr-x 2 mailman mailman 512 Aug 8 01:00 . Make sure everything is clean by running ~mailman/bin/check_perms. Fix with check_perms -f until it runs clean. > Possibly unrelated question: The old qfiles directory had 3000 files > in it. I moved them to a temporary directory for the time being. When > I get all this up and running can I move the files back into place and > expect them to be processed or is there a side-database of files to be > processed? That should work. > P.S. The 2.0.12 configure script doesn't run using Solaris sh or > bash. "ksh configure" worked. Known problem, I believe. One of the reasons Barry rolled 13. (hey, you're already downrev! snicker) -- Chuq Von Rospach, Architech chuqui at plaidworks.com -- http://www.chuqui.com/ Yes, I am an agent of Satan, but my duties are largely ceremonial. From irwin at taranto.com Thu Aug 8 07:30:06 2002 From: irwin at taranto.com (irwin) Date: Wed, 7 Aug 2002 22:30:06 -0700 Subject: [Mailman-Users] How to debug mailman problems? In-Reply-To: <20020808010341.A16859@joisey.whatexit.org> References: <20020807024212.A21927@joisey.whatexit.org> <20020808010341.A16859@joisey.whatexit.org> Message-ID: <200208080530.g785U6A09404@taranto.com> On Wednesday 07 August 2002 10:03 pm, you wrote: > After much recommendation, I've upgraded to 2.0.12. However, I'm still > having the same problem. Email gets to the "wrapper post" mechanism, > the .msg and .db files appear in the qfiles directory, but no messages > go out. > > The file logs/error gets this line appended to it: > > Aug 08 00:58:05 2002 (17824) Could not acquire qrunner lock > > Permissions on the locks directory are: > drwxrwsr-x 2 mailman mailman 512 Aug 8 01:00 . > > Any suggestions? Go to 2.0.13. I had similar problem with 2.0.12 Irwin From tal at whatexit.org Thu Aug 8 08:01:15 2002 From: tal at whatexit.org (Tom Limoncelli) Date: Thu, 8 Aug 2002 02:01:15 -0400 Subject: [Mailman-Users] How to debug mailman problems? In-Reply-To: ; from chuqui@plaidworks.com on Wed, Aug 07, 2002 at 10:18:55PM -0700 References: <20020808010341.A16859@joisey.whatexit.org> Message-ID: <20020808020115.A19100@joisey.whatexit.org> Luckily I happen to be at SAGE-AU right now, and someone here was able to help with some real-time debugging. (It's good to be a speaker... everyone wants to help out) The problem turned out to be quite odd and something unique to this site, which makes it nearly a waste to describe here. There was a file that was a symbolic link to a place that didn't exit and mailman wasn't handling the error properly. The files in the "public" directory are symbolic links to the actual files in "private". The links are not relative links. Previously mailman was installed at /opt/mailman-$VERSION but since the upgrade process doesn't work that way, my newer installation had been /opt/mailman instead (and I moved things around to maintain the old archives). However, ~mailman/public still included symbolic links pointing to /opt/mailman-$VERSION. When I deleted /opt/mailman-$VERSION (that release wasn't used anymore) the system stopped working. I don't know what to suggest to improve things. The links could be relative, instead of absolute. That, of course, has other trade-offs. check_perms should at least check to make sure that symbolic links point to someplace that exists and complain otherwise. Either way... thanks to everyone that emailed me (privately and publicly) with suggestions. I know understand the internals of mailman a bit more, and will have less difficulties debugging problems in the future. --tal -- Tom Limoncelli -- tal at whatexit.org BiZone's regional conference: http://whatexit.org/tal "ENDLESS POSSIBILITIES" http://www.EverythingSysadmin.com November 15-17, 2002, Princeton, NJ http://www.BiZone.org/con2002 From chuqui at plaidworks.com Thu Aug 8 08:17:02 2002 From: chuqui at plaidworks.com (Chuq Von Rospach) Date: Wed, 07 Aug 2002 23:17:02 -0700 Subject: [Mailman-Users] How to debug mailman problems? In-Reply-To: <20020808020115.A19100@joisey.whatexit.org> Message-ID: On 8/7/02 11:01 PM, "Tom Limoncelli" wrote: > The files in the "public" directory are symbolic links to the actual > files in "private". The links are not relative links. Previously > mailman was installed at /opt/mailman-$VERSION but since the upgrade > process doesn't work that way, my newer installation had been > /opt/mailman instead (and I moved things around to maintain the old > archives). However, ~mailman/public still included symbolic links > pointing to /opt/mailman-$VERSION. When I deleted > /opt/mailman-$VERSION (that release wasn't used anymore) the system > stopped working. > > I don't know what to suggest to improve things. I believe if you fun ~mailman/bin/move_list, it fixes those things. It's supposed to be run on any list that's relocated or moved from system to system to re-tweak all of the pointers... -- Chuq Von Rospach, Architech chuqui at plaidworks.com -- http://www.chuqui.com/ Stress is when you wake up screaming and you realize you haven't fallen asleep yet. From list-mailman at bridges.org Thu Aug 8 12:31:13 2002 From: list-mailman at bridges.org (philipp) Date: Thu, 08 Aug 2002 12:31:13 +0200 Subject: [Mailman-Users] setting up mailman to subscribe other lists Message-ID: <5.1.0.14.0.20020808122323.019399a8@pop.1und1.de> Hello, Is there a reason why this option would not work: Web-Interface > Privacy Options Hide the sender of a message .... - YES/NO I have tried setting it to YES, but msg still contain the From header with the poster's address. I am running Mailman 2.0.9 on a Virtual Private Server hosted at Verio. Thanks! Philipp From maddoc at maddoc.net Thu Aug 8 18:33:58 2002 From: maddoc at maddoc.net (Doc Schneider) Date: Thu, 08 Aug 2002 11:33:58 -0500 Subject: [Mailman-Users] Bounces?? Message-ID: <200208081633.g78GXwq31830@mail.maddoc.com> Where do the actual bounce messages go? I've looked through the FAQ's and all the documentation I can find on Mailman but can't find anywhere to set where to send the bounces for various lists. I understand how they are handled by Mailman but would like to see the actual bounced messages. Thanks for any help! -- -Doc --- MomNDoc Online Consultants http://www.maddoc.net/ maddoc at maddoc.net From rlw at rlw.best.vwh.net Thu Aug 8 18:45:31 2002 From: rlw at rlw.best.vwh.net (Bob Weissman) Date: Thu, 08 Aug 2002 09:45:31 -0700 Subject: [Mailman-Users] Installing Mailman without root privileges? In-Reply-To: <200208072326.57229.wolf@wolfstream.net> References: <5.1.1.6.0.20020807195918.00a30cb0@rlw.best.vwh.net> <5.1.1.6.0.20020807195918.00a30cb0@rlw.best.vwh.net> Message-ID: <5.1.1.6.0.20020808093852.00a49a50@rlw.best.vwh.net> At 09:26 PM 8/7/02, Tom Whiting wrote: >You need ROOT access (generally) to modify things such as cgi aliases, >pointing directly to your list. No you don't, you just need write access to the configuration files. >You need ROOT access to create the mailman user (though this CAN be done as >your regular user I believe... It's just not a good idea). No you don't, you just need an appropriate interface which uses root behind the scenes. >You need ROOT access to create the aliases for mailman. No you don't, you just need write access to the aliases file and execute access to newaliases or a similar program, which can be setuid root. >You need ROOT access to restart apache so that your cgi-bin aliases will work No you don't, you just need execute access to the apacherestart or apachectl program, which can be setuid root. I don't want to seem overly pedantic. But all of this is possible depending on your ISP. My ISP charges extra for root access, so I don't have it. But I have enough privileges so that I can fully administer Mailman without ever needing root. - Bob From paul at paulsfunhouse.com Thu Aug 8 20:02:39 2002 From: paul at paulsfunhouse.com (Paul Croft) Date: Thu, 08 Aug 2002 13:02:39 -0500 Subject: [Mailman-Users] mailman In-Reply-To: <200208072319.36996.wolf@wolfstream.net> References: Message-ID: <5.1.0.14.0.20020808130058.02a325c0@mail.paulsfunhouse.com> Maybe that is the case Tom...but I think your reply was a little bit harsh....have you NEVER asked a "stupid" question in your life? Maybe NOT everyone is as intelligent as you are! To the moderators...if this is an acceptable reply to a question on this list...then I will now be taking my leave of this list and finding an alternative! Paul At 11:19 PM 07/08/02, Tom Whiting wrote: >This is a case of RTFM (Read the &*^##%^ manual). >This is all covered there. >Make sure that sendmail (or your MTA) is pointing to yourhost.com and will >accept mail for yourhost.com however >On Wednesday 07 August 2002 11:09 pm, Aris Santillan wrote: > > hello guys > > > > why is it my mailman is binded to > > localhost.localdomain ? > > how can i change it to my real > > domain? > > From lists.ASkwar at email-server.info Thu Aug 8 20:07:46 2002 From: lists.ASkwar at email-server.info (Alexander Skwar) Date: Thu, 8 Aug 2002 20:07:46 +0200 Subject: [Mailman-Users] 2.1b2: Moderated lists? Message-ID: <20020808180746.GB31335@teich.Garten.DigitalProjects.com> Hi! I'm running Mailman 2.1b2 on my server. How do I setup a list, so that it is moderated for every member but a few (mainly my own)? In 2.0.x I would've set this at the privacy page, but I can't find where I'd set this in 2.1b2. Thanks, Alexander Skwar -- How to quote: http://learn.to/quote (german) http://quote.6x.to (english) Homepage: http://www.iso-top.biz | Jabber: askwar at a-message.de iso-top.biz - Die g?nstige Art an Linux Distributionen zu kommen Uptime: 2 days 12 hours 46 minutes From cprg at cprg.net Thu Aug 8 22:00:58 2002 From: cprg at cprg.net (Support Desk) Date: Thu, 8 Aug 2002 16:00:58 -0400 Subject: [Mailman-Users] mailman References: <5.1.0.14.0.20020808130058.02a325c0@mail.paulsfunhouse.com> Message-ID: <005201c23f16$522e6d80$0100007f@vineln01.nj.comcast.net> Ha! You self-righteous hippo-crit! http://PaulsFunHouse.com/ initiates a pop-up for "adult" lists "Pure-Humor".. And carries links for "adult humor"? Give us a break! Yeah, maybe Tom's reply was little tough, maybe Tom was having a bad day, but sounds like the pot calling the kettle black, pal. You really think anyone here will miss you? You think you are depriving us of anything by leaving? Certainly no monetary loss, since Mailman is open source. BTW: list is not moderated, it's one of those values in the USA called freedom of speech! Don't let the CD-ROM door hit your behind on your way out. SD ----- Original Message ----- From: "Paul Croft" To: Sent: Thursday, August 08, 2002 2:02 PM Subject: Re: [Mailman-Users] mailman | Maybe that is the case Tom...but I think your reply was a little bit | harsh....have you NEVER asked a "stupid" question in your life? Maybe NOT | everyone is as intelligent as you are! | | To the moderators...if this is an acceptable reply to a question on this | list...then I will now be taking my leave of this list and finding an | alternative! | | Paul | | At 11:19 PM 07/08/02, Tom Whiting wrote: | >This is a case of RTFM (Read the &*^##%^ manual). | >This is all covered there. | >Make sure that sendmail (or your MTA) is pointing to yourhost.com and will | >accept mail for yourhost.com however | >On Wednesday 07 August 2002 11:09 pm, Aris Santillan wrote: | > > hello guys | > > | > > why is it my mailman is binded to | > > localhost.localdomain ? | > > how can i change it to my real | > > domain? | > > From jimpop at rocketship.com Thu Aug 8 22:18:30 2002 From: jimpop at rocketship.com (Jim Popovitch) Date: Thu, 8 Aug 2002 16:18:30 -0400 Subject: [Mailman-Users] mailman In-Reply-To: <005201c23f16$522e6d80$0100007f@vineln01.nj.comcast.net> Message-ID: OK, If that is a acceptable reply to anyone on the list than I may consider leaving. Isn't everyone here an adult? Please people, think before you post. -Jim P. > -----Original Message----- > From: mailman-users-admin at python.org > [mailto:mailman-users-admin at python.org]On Behalf Of Support Desk > Sent: Thursday, August 08, 2002 4:01 PM > To: stringy at mb.sympatico.ca > Cc: mailman-users at python.org > Subject: Re: [Mailman-Users] mailman > > > > Ha! You self-righteous hippo-crit! http://PaulsFunHouse.com/ initiates a > pop-up for "adult" lists "Pure-Humor".. And carries links for > "adult humor"? > Give us a break! Yeah, maybe Tom's reply was little tough, maybe Tom > was having a bad day, but sounds like the pot calling the kettle > black, pal. > > You really think anyone here will miss you? You think you are depriving > us of anything by leaving? Certainly no monetary loss, since Mailman > is open source. > > BTW: list is not moderated, it's one of those values in the USA called > freedom of speech! Don't let the CD-ROM door hit your behind on your > way out. > > SD > > > ----- Original Message ----- > From: "Paul Croft" > To: > Sent: Thursday, August 08, 2002 2:02 PM > Subject: Re: [Mailman-Users] mailman > > > | Maybe that is the case Tom...but I think your reply was a little bit > | harsh....have you NEVER asked a "stupid" question in your life? > Maybe NOT > | everyone is as intelligent as you are! > | > | To the moderators...if this is an acceptable reply to a question on this > | list...then I will now be taking my leave of this list and finding an > | alternative! > | > | Paul > | > | At 11:19 PM 07/08/02, Tom Whiting wrote: > | >This is a case of RTFM (Read the &*^##%^ manual). > | >This is all covered there. > | >Make sure that sendmail (or your MTA) is pointing to yourhost.com and > will > | >accept mail for yourhost.com however > | >On Wednesday 07 August 2002 11:09 pm, Aris Santillan wrote: > | > > hello guys > | > > > | > > why is it my mailman is binded to > | > > localhost.localdomain ? > | > > how can i change it to my real > | > > domain? > | > > > > > ------------------------------------------------------ > Mailman-Users mailing list > Mailman-Users at python.org > 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/ From raquel at thericehouse.net Thu Aug 8 23:01:50 2002 From: raquel at thericehouse.net (Raquel Rice) Date: Thu, 8 Aug 2002 14:01:50 -0700 Subject: [Mailman-Users] mailman In-Reply-To: <005201c23f16$522e6d80$0100007f@vineln01.nj.comcast.net> References: <5.1.0.14.0.20020808130058.02a325c0@mail.paulsfunhouse.com> <005201c23f16$522e6d80$0100007f@vineln01.nj.comcast.net> Message-ID: <20020808140150.5f9d3550.raquel@thericehouse.net> On Thu, 8 Aug 2002 16:00:58 -0400 "Support Desk" wrote: > > Ha! You self-righteous hippo-crit! http://PaulsFunHouse.com/ > initiates a pop-up for "adult" lists "Pure-Humor".. And carries > links for "adult humor"? Give us a break! Yeah, maybe Tom's reply > was little tough, maybe Tom was having a bad day, but sounds like > the pot calling the kettle black, pal. > > You really think anyone here will miss you? You think you are > depriving us of anything by leaving? Certainly no monetary loss, > since Mailman is open source. > > BTW: list is not moderated, it's one of those values in the USA > called freedom of speech! Don't let the CD-ROM door hit your > behind on your way out. > > SD I'm likely to catch hell over this ... but isn't "free speech" a sad excuse for being rude? -- Raquel ============================================================ Much unhappiness has come into the world because of bewilderment and things left unsaid. --Fyodor Dostoyevsky From wolf at wolfstream.net Thu Aug 8 23:03:11 2002 From: wolf at wolfstream.net (Tom Whiting) Date: Thu, 8 Aug 2002 16:03:11 -0500 Subject: [Mailman-Users] mailman In-Reply-To: References: Message-ID: <200208081603.11629.wolf@wolfstream.net> There was NOTHING wrong with the reply whatsoever. Telling someone to RTFM is a rather generous reply, given the question itself. In fact it is a rather NICE reply, compared to some I've seen. Threatening to leave the list? What on earth for? Because someone wrote a reply you didn't like or understand? I simply told him to read the %$W#^ manual. Hell, I GAVE 'im the support and whatnot he needed to solve the problem, as WELL as telling him to read the manual, which is MORE than I've seen most do. Instead of threatening to leave the list because you got yourself offended, and starting a flame war that could go on and on and on forever, why not just leave. Or better yet, STAY and help out. Either way, one user, to a list of (probably) hundreds makes little difference, unless that user is an active poster. Do I make stupid statements, ask stupid questions? I've been using linux/various mta's for going on 7 years (not meant as a bragging statement, it just is a fact). In that time, I've found that rather than actually do the work to help themselves (utilizing search engines, reading manuals, etc), individuals would rather post problems such as the one that was posted, then run to a community supported list, crying, because they failed to read the manual, or do a little legwork and find out the solution to their problem. When I encounter a problem that has NOT been publicly solved, or can not be solved through searching the vast library of the internet, THEN I post something, requesting help. It's REALLY not that hard to do the same thing. In short, most (if not all) problems can be solved by searching various search engines, FAQ's, utilizing the RTFM principle. Failing to do so simply wastes more of the community's time. On Thursday 08 August 2002 03:18 pm, Jim Popovitch wrote: > OK, If that is a acceptable reply to anyone on the list than I may consider > leaving. Isn't everyone here an adult? > > Please people, think before you post. > > -Jim P. > > > -----Original Message----- > > From: mailman-users-admin at python.org > > [mailto:mailman-users-admin at python.org]On Behalf Of Support Desk > > Sent: Thursday, August 08, 2002 4:01 PM > > To: stringy at mb.sympatico.ca > > Cc: mailman-users at python.org > > Subject: Re: [Mailman-Users] mailman > > > > > > > > Ha! You self-righteous hippo-crit! http://PaulsFunHouse.com/ initiates a > > pop-up for "adult" lists "Pure-Humor".. And carries links for > > "adult humor"? > > Give us a break! Yeah, maybe Tom's reply was little tough, maybe Tom > > was having a bad day, but sounds like the pot calling the kettle > > black, pal. > > > > You really think anyone here will miss you? You think you are depriving > > us of anything by leaving? Certainly no monetary loss, since Mailman > > is open source. > > > > BTW: list is not moderated, it's one of those values in the USA called > > freedom of speech! Don't let the CD-ROM door hit your behind on your > > way out. > > > > SD > > > > > > ----- Original Message ----- > > From: "Paul Croft" > > To: > > Sent: Thursday, August 08, 2002 2:02 PM > > Subject: Re: [Mailman-Users] mailman > > > > | Maybe that is the case Tom...but I think your reply was a little bit > > | harsh....have you NEVER asked a "stupid" question in your life? > > > > Maybe NOT > > > > | everyone is as intelligent as you are! > > | > > | To the moderators...if this is an acceptable reply to a question on > > | this list...then I will now be taking my leave of this list and finding > > | an alternative! > > | > > | Paul > > | > > | At 11:19 PM 07/08/02, Tom Whiting wrote: > > | >This is a case of RTFM (Read the &*^##%^ manual). > > | >This is all covered there. > > | >Make sure that sendmail (or your MTA) is pointing to yourhost.com and > > > > will > > > > | >accept mail for yourhost.com however > > | > > > | >On Wednesday 07 August 2002 11:09 pm, Aris Santillan wrote: > > | > > hello guys > > | > > > > | > > why is it my mailman is binded to > > | > > localhost.localdomain ? > > | > > how can i change it to my real > > | > > domain? > > > > ------------------------------------------------------ > > Mailman-Users mailing list > > Mailman-Users at python.org > > 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 mailing list > Mailman-Users at python.org > 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/ -- ---------------------------------------------------- TJW: Head tech, Dreamless Realms Mud: http://dreamless.wolfstream.net Snippets http://dreamless.wolfstream.net/ Telnet dreamless.wolfstream.net:9275 The OLC Pages http://olc.wolfstream.net ---------------------------------------------------- From andrew at qnps.com Thu Aug 8 23:06:54 2002 From: andrew at qnps.com (Andrew Thompson) Date: Thu, 8 Aug 2002 22:06:54 +0100 Subject: [Mailman-Users] mailman In-Reply-To: <200208081603.11629.wolf@wolfstream.net> Message-ID: <000601c23f1f$876d79b0$0601a8c0@ttnetworks.net> Hi, This is now getting out of hand. Could all messages to the list about this subject now cease. If you wish to continue this discussion, please do so in private. Thank You Andrew Thompson -----Original Message----- From: mailman-users-admin at python.org [mailto:mailman-users-admin at python.org] On Behalf Of Tom Whiting Sent: 08 August 2002 22:03 To: mailman-users at python.org Subject: Re: [Mailman-Users] mailman There was NOTHING wrong with the reply whatsoever. Telling someone to RTFM is a rather generous reply, given the question itself. In fact it is a rather NICE reply, compared to some I've seen. Threatening to leave the list? What on earth for? Because someone wrote a reply you didn't like or understand? I simply told him to read the %$W#^ manual. Hell, I GAVE 'im the support and whatnot he needed to solve the problem, as WELL as telling him to read the manual, which is MORE than I've seen most do. Instead of threatening to leave the list because you got yourself offended, and starting a flame war that could go on and on and on forever, why not just leave. Or better yet, STAY and help out. Either way, one user, to a list of (probably) hundreds makes little difference, unless that user is an active poster. Do I make stupid statements, ask stupid questions? I've been using linux/various mta's for going on 7 years (not meant as a bragging statement, it just is a fact). In that time, I've found that rather than actually do the work to help themselves (utilizing search engines, reading manuals, etc), individuals would rather post problems such as the one that was posted, then run to a community supported list, crying, because they failed to read the manual, or do a little legwork and find out the solution to their problem. When I encounter a problem that has NOT been publicly solved, or can not be solved through searching the vast library of the internet, THEN I post something, requesting help. It's REALLY not that hard to do the same thing. In short, most (if not all) problems can be solved by searching various search engines, FAQ's, utilizing the RTFM principle. Failing to do so simply wastes more of the community's time. On Thursday 08 August 2002 03:18 pm, Jim Popovitch wrote: > OK, If that is a acceptable reply to anyone on the list than I may > consider leaving. Isn't everyone here an adult? > > Please people, think before you post. > > -Jim P. > > > -----Original Message----- > > From: mailman-users-admin at python.org > > [mailto:mailman-users-admin at python.org]On Behalf Of Support Desk > > Sent: Thursday, August 08, 2002 4:01 PM > > To: stringy at mb.sympatico.ca > > Cc: mailman-users at python.org > > Subject: Re: [Mailman-Users] mailman > > > > > > > > Ha! You self-righteous hippo-crit! http://PaulsFunHouse.com/ > > initiates a pop-up for "adult" lists "Pure-Humor".. And carries > > links for "adult humor"? Give us a break! Yeah, maybe Tom's reply > > was little tough, maybe Tom was having a bad day, but sounds like > > the pot calling the kettle black, pal. > > > > You really think anyone here will miss you? You think you are > > depriving us of anything by leaving? Certainly no monetary loss, > > since Mailman is open source. > > > > BTW: list is not moderated, it's one of those values in the USA > > called freedom of speech! Don't let the CD-ROM door hit your behind > > on your way out. > > > > SD > > > > > > ----- Original Message ----- > > From: "Paul Croft" > > To: > > Sent: Thursday, August 08, 2002 2:02 PM > > Subject: Re: [Mailman-Users] mailman > > > > | Maybe that is the case Tom...but I think your reply was a little > > | bit harsh....have you NEVER asked a "stupid" question in your > > | life? > > > > Maybe NOT > > > > | everyone is as intelligent as you are! > > | > > | To the moderators...if this is an acceptable reply to a question > > | on this list...then I will now be taking my leave of this list and > > | finding an alternative! > > | > > | Paul > > | > > | At 11:19 PM 07/08/02, Tom Whiting wrote: > > | >This is a case of RTFM (Read the &*^##%^ manual). > > | >This is all covered there. > > | >Make sure that sendmail (or your MTA) is pointing to yourhost.com > > | >and > > > > will > > > > | >accept mail for yourhost.com however > > | > > > | >On Wednesday 07 August 2002 11:09 pm, Aris Santillan wrote: > > | > > hello guys > > | > > > > | > > why is it my mailman is binded to localhost.localdomain ? > > | > > how can i change it to my real > > | > > domain? > > > > ------------------------------------------------------ > > Mailman-Users mailing list > > Mailman-Users at python.org > > 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 mailing list > Mailman-Users at python.org > 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/ -- ---------------------------------------------------- TJW: Head tech, Dreamless Realms Mud: http://dreamless.wolfstream.net Snippets http://dreamless.wolfstream.net/ Telnet dreamless.wolfstream.net:9275 The OLC Pages http://olc.wolfstream.net ---------------------------------------------------- ------------------------------------------------------ Mailman-Users mailing list Mailman-Users at python.org 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/ From chuqui at plaidworks.com Thu Aug 8 23:17:00 2002 From: chuqui at plaidworks.com (Chuq Von Rospach) Date: Thu, 08 Aug 2002 14:17:00 -0700 Subject: [Mailman-Users] mailman In-Reply-To: <20020808140150.5f9d3550.raquel@thericehouse.net> Message-ID: On 8/8/02 2:01 PM, "Raquel Rice" wrote: > I'm likely to catch hell over this ... but isn't "free speech" a sad > excuse for being rude? First, "free speech" has nothing to do with your context. This is Barry's list. He says what is and isn't allowed here. Your "free speech" stops at his door. You're welcome to say what you want -- Barry's under no obligation to let YOU use HIS list to say it in. Go set up your own list to say it in. Second, unfortunately, to many who don't have a clue what the term "free speech" REALLY means,it's turned into "I have the right to tell you to shut up". It merely means they feel they can do anything, and you can't tell them not to. Of course, by saying you can't tell them to not do it, they impinge on your free speech (if you accept their definition), but since that affects you, not them, that doesn't really matter. To them. -- Chuq Von Rospach, Architech chuqui at plaidworks.com -- http://www.chuqui.com/ Very funny, Scotty. Now beam my clothes down here, will you? From nathan at lakesidepress.org Thu Aug 8 23:27:41 2002 From: nathan at lakesidepress.org (Nathan A. McQuillen) Date: Thu, 08 Aug 2002 16:27:41 -0500 Subject: [Mailman-Users] Postfix help Message-ID: Hey all. Seems I've stepped into the middle of some sort of sniping match -- I assume it's all right to ask a simple question? I've been attempting to set up Mailman with Postfix, and things are not going well. Typical gid problems, and alias issues. Is there, anywhere on the entire Web, a FAQ or HOWTO about doing this? I do not have a README.Mailman file in my installation directory, and via Google, I can only seem to find cryptic references to the existence of such a file in list archives, not the actual text. I am downloading the 2.1b sources, but I don't know as I'll be able to run 2.1 without a massive system overhaul. If there's anyone out there willing to walk me through this installation, I'd be eternally grateful, and I will, I SWEAR, write up a Postfix-Mailman-newbie-HOWTO, if only for the assistance of others working with me on this project. Here are my needs: 1. Determining the *real* necessary GID for the --with-mail-gid flag. I get one GID reported by Postfix in the maillog error message, and another entirely when I run the Python query code reported elsewhere. They're one digit off, incidentally... I have read that Postfix does not need the Mailman wrapper, but have found no coherent instructions on how to disable it without hand-editing the aliases file with every list added. 2. Installing so that new lists are automatically aliased. I am the only person who will be working on this system who even knows how to log into the server. It would be very nice not to have to edit the alias file and run newaliases by hand with every list modification. 3. Adding lists via the Web. Is the Webmin Mailman module usable? Any tips? 4. Any other tips on making adding and administering lists as simple and transparent as possible. It is bright but technically illiterate folks who will be doing most of the administration, and the easier I can make it for them, the less frustration everyone will feel. Speaking of frustration, this whole system feels like a house of cards -- I build it up to the point where it seems like it will work, then suddenly get a GID error, or alias error, or something, and I'm back to make clean. I would RTFM, but in this case, it seems like TANFM. Please help. - Nathan McQuillen Erstwhile System Administrator prodane.org From chuqui at plaidworks.com Thu Aug 8 23:18:07 2002 From: chuqui at plaidworks.com (Chuq Von Rospach) Date: Thu, 08 Aug 2002 14:18:07 -0700 Subject: [Mailman-Users] mailman In-Reply-To: <000601c23f1f$876d79b0$0601a8c0@ttnetworks.net> Message-ID: On 8/8/02 2:06 PM, "Andrew Thompson" wrote: > Hi, > > This is now getting out of hand. > > Could all messages to the list about this subject now cease. You can't do that! you're trying to take away my free speech! -- Chuq Von Rospach, Architech chuqui at plaidworks.com -- http://www.chuqui.com/ He doesn't have ulcers, but he's a carrier. From sema.marcelo at telemigcelular.com.br Thu Aug 8 23:35:26 2002 From: sema.marcelo at telemigcelular.com.br (Marcelo Assis) Date: Thu, 8 Aug 2002 18:35:26 -0300 Subject: [Mailman-Users] Message archiving question II Message-ID: <017901c23f23$82be25a0$692d830a@celular.com.br> Well, i posted this earlier this week, but since noone replied, and i kind of need the information, i thought i should give it a shot again.... I was checking this list?s message archives, and i noticed we have messages ranging from April 2024, June 2013, etc, to january and december 1970!!!! Is there a way to avoid this??? The archives date indexes are built from serves internal date and time or from subscribers date and time time included in message headers? Is it possible to "number" the messages like Yahoo Groups does?? Thanks! marcelo From jimpop at rocketship.com Thu Aug 8 23:40:21 2002 From: jimpop at rocketship.com (Jim Popovitch) Date: Thu, 8 Aug 2002 17:40:21 -0400 Subject: [Mailman-Users] mailman In-Reply-To: <200208081603.11629.wolf@wolfstream.net> Message-ID: Hi Tom, The email you replied to was addressing someone else's comments, not yours. -Jim P. > -----Original Message----- > From: Tom Whiting > > > There was NOTHING wrong with the reply whatsoever. Telling > someone to RTFM is > a rather generous reply, given the question itself. In fact it is > a rather > NICE reply, compared to some I've seen. > > Threatening to leave the list? What on earth for? Because someone wrote a > reply you didn't like or understand? I simply told him to read the %$W#^ > manual. Hell, I GAVE 'im the support and whatnot he needed to solve the > problem, as WELL as telling him to read the manual, which is MORE > than I've > seen most do. > > Instead of threatening to leave the list because you got yourself > offended, > and starting a flame war that could go on and on and on forever, > why not just > leave. Or better yet, STAY and help out. Either way, one user, to > a list of > (probably) hundreds makes little difference, unless that user is > an active > poster. > > Do I make stupid statements, ask stupid questions? I've been using > linux/various mta's for going on 7 years (not meant as a bragging > statement, > it just is a fact). In that time, I've found that rather than > actually do the > work to help themselves (utilizing search engines, reading manuals, etc), > individuals would rather post problems such as the one that was > posted, then > run to a community supported list, crying, because they failed to > read the > manual, or do a little legwork and find out the solution to their problem. > > When I encounter a problem that has NOT been publicly solved, or > can not be > solved through searching the vast library of the internet, THEN I post > something, requesting help. It's REALLY not that hard to do the > same thing. > > In short, most (if not all) problems can be solved by searching > various search > engines, FAQ's, utilizing the RTFM principle. Failing to do so > simply wastes > more of the community's time. > > > On Thursday 08 August 2002 03:18 pm, Jim Popovitch wrote: > > OK, If that is a acceptable reply to anyone on the list than I > > may consider leaving. Isn't everyone here an adult? > > > > Please people, think before you post. > > > > -Jim P. > > From jonc at haht.com Thu Aug 8 23:45:22 2002 From: jonc at haht.com (Jon Carnes) Date: Thu, 8 Aug 2002 17:45:22 -0400 Subject: [Mailman-Users] mailman In-Reply-To: Message-ID: <001601c23f24$e642df70$0b04010a@JCARNES> Chuq! How come you've suddenly changed your ISP! ... and just for this message. Oh man! You really fooled me. I really thought it was Chuq being the childish ass-hole, but then of course, he's actually an adult in more than just age... ===Header info from bogus message attempting to emulate Chuq Von Rospach=== Received: from lists.apple.com ([17.254.0.151]) by mail.python.org with esmtp (Exim 4.05) id 17cuga-0000GK-00 for mailman-users at python.org; Thu, 08 Aug 2002 17:19:12 -0400 Received: from [17.216.34.150] (A17-216-34-150.apple.com [17.216.34.150]) by lists.apple.com (8.11.6/8.11.6) with ESMTP id g78LI8s11512; Thu, 8 Aug 2002 14:18:08 -0700 (PDT) === Jon Carnes -----Original Message----- From: Chuq Von Rospach [mailto:chuqui at plaidworks.com] Sent: Thursday, August 08, 2002 5:18 PM To: andrew at qnps.com; mailman-users at python.org Subject: Re: [Mailman-Users] mailman Importance: High On 8/8/02 2:06 PM, "Andrew Thompson" wrote: > Hi, > > This is now getting out of hand. > > Could all messages to the list about this subject now cease. You can't do that! you're trying to take away my free speech! -- Chuq Von Rospach, Architech chuqui at plaidworks.com -- http://www.chuqui.com/ He doesn't have ulcers, but he's a carrier. ------------------------------------------------------ Mailman-Users mailing list Mailman-Users at python.org 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/ From paul at paulsfunhouse.com Thu Aug 8 23:45:31 2002 From: paul at paulsfunhouse.com (Paul Croft) Date: Thu, 08 Aug 2002 16:45:31 -0500 Subject: [Mailman-Users] Good Bye! In-Reply-To: <000601c23f1f$876d79b0$0601a8c0@ttnetworks.net> References: <200208081603.11629.wolf@wolfstream.net> Message-ID: <5.1.0.14.0.20020808161827.00ac98d0@mail.paulsfunhouse.com> Well Come to the defense of the innocent and you get your name dragged through the mud! Thanks for the attempted support to those that supported me! I won't make any further comments to those of you that trashed me ... I have replied to you in private! Just for everyone's knowledge (as I leave the list)...I have extensive (about 7 yrs) internet experience...and about 12 to 14 yrs computer experience. I have been managing lists for a number of those years. Currently I either own, moderate or contribute to approximately 7 help lists on various servers for list management. On ANY of those lists if I or any other moderator had seen the RTFM comment...it would have resulted in an immediate booting of that member! THAT is why I made the comment I did! I know of what I speak...and don't appreciate being dragged through the mud because of it! What the content of my website and/or my lists had to do with the discussion ... I will never know! YES I run adult HUMOUR lists and YES I have links in those lists that link to porn sites...them porn site owners pay really well to advertise for them...and if you want to get the link to them...email me and I will pass it along! I am very proud of my list accomplishments and don't really care what anyone thinks of the content...I don't force anyone to read or subscribe...so why should anyone complain about them? Thanks to all that have offered help in the past....I am out of here! Paul From jonc at haht.com Thu Aug 8 23:48:44 2002 From: jonc at haht.com (Jon Carnes) Date: Thu, 8 Aug 2002 17:48:44 -0400 Subject: [Mailman-Users] Message archiving question II In-Reply-To: <017901c23f23$82be25a0$692d830a@celular.com.br> Message-ID: <001701c23f25$5eeceb00$0b04010a@JCARNES> The default is to use the date and time on the email message. As you've discovered this can be wildly off. If you look at the ~mailman/Mailman/Defaults.py file you will see there is a section that lets you change this so that you use the received date and time (as always... do not change anything in Defaults.py but copy the section to mm_cfg.py and edit it there!). Good Luck, Jon Carnes -----Original Message----- From: Marcelo Assis [mailto:sema.marcelo at telemigcelular.com.br] Sent: Thursday, August 08, 2002 5:35 PM To: Mailman-Users at python.org Subject: [Mailman-Users] Message archiving question II Well, i posted this earlier this week, but since noone replied, and i kind of need the information, i thought i should give it a shot again.... I was checking this list?s message archives, and i noticed we have messages ranging from April 2024, June 2013, etc, to january and december 1970!!!! Is there a way to avoid this??? The archives date indexes are built from serves internal date and time or from subscribers date and time time included in message headers? Is it possible to "number" the messages like Yahoo Groups does?? Thanks! marcelo ------------------------------------------------------ Mailman-Users mailing list Mailman-Users at python.org 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/ From jimpop at rocketship.com Fri Aug 9 02:25:44 2002 From: jimpop at rocketship.com (Jim Popovitch) Date: Thu, 8 Aug 2002 20:25:44 -0400 Subject: [Mailman-Users] Good Bye! In-Reply-To: <5.1.0.14.0.20020808161827.00ac98d0@mail.paulsfunhouse.com> Message-ID: > -----Original Message----- > From: Paul Croft > > Thanks to all that have offered help in the past....I am out of here! > You're not taking all the p0rn with you... are you...? ;) ....Please come back... please... pretty please..... pretty, pretty, please. ...oh, nevermind... be gone. -Jim P. From aris.santillan at summitmedia.com.ph Fri Aug 9 06:19:28 2002 From: aris.santillan at summitmedia.com.ph (Aris Santillan) Date: Fri, 9 Aug 2002 12:19:28 +0800 Subject: [Mailman-Users] (no subject) Message-ID: hello guys how can i make automatic execution on ./list_members -o mail.list mail i need this to be able update the # of subscribers From wash at wananchi.com Fri Aug 9 07:49:09 2002 From: wash at wananchi.com (Odhiambo Washington) Date: Fri, 9 Aug 2002 08:49:09 +0300 Subject: [Mailman-Users] (no subject) In-Reply-To: Message-ID: <20020809054425.GB9108@ns2.wananchi.com> * Aris Santillan [20020809 07:13]: wrote: > hello guys > > how can i make automatic execution on > > ./list_members -o mail.list mail > #!/usr/local/bin/bash UPDATE=/usr/local/mailman/bin SOURCE=/path/to/mail.list for i in `cat $SOURCE`; do $UPDATE -o $SOURCE mail done Then run that throug a cron as often as you like. I wonder how mail.list is made.... what if some address goes in there 2X ?? cheers - wash +----------------------------------+-----------------------------------------+ Odhiambo Washington, wash at wananchi.com . WANANCHI ONLINE LTD (Nairobi, KE) | http://ns2.wananchi.com/~wash/ . 1ere Etage, Loita Hse, Loita St., | GSM: (254) 722 743 223 . # 10286, 00100 NAIROBI | +---------------------------------+------------------------------------------+ "Oh My God! They killed init! You Bastards!" --from a /. post ++ ``That Ariel Sharon. Boy, he sure is controversial. Most Western countries would have to have a military coup before they enjoyed a leader of that caliber.'' (Sydney Webb) From claw at kanga.nu Fri Aug 9 08:27:08 2002 From: claw at kanga.nu (J C Lawrence) Date: Thu, 08 Aug 2002 23:27:08 -0700 Subject: [Mailman-Users] Postfix help In-Reply-To: Message from "Nathan A. McQuillen" of "Thu, 08 Aug 2002 16:27:41 CDT." References: Message-ID: <16685.1028874428@kanga.nu> On Thu, 08 Aug 2002 16:27:41 -0500 Nathan A McQuillen wrote: > Hey all. Seems I've stepped into the middle of some sort of sniping > match -- I assume it's all right to ask a simple question? Sure. We're merely suffering an attach of the clue free. > I've been attempting to set up Mailman with Postfix, and things are > not going well. Typical gid problems, and alias issues. Mailman under Postfix is one of the simpler installs. > Is there, anywhere on the entire Web, a FAQ or HOWTO about doing this? README.postfix in your Mailman tarball is one place the start. Its largely not needed tho. > 1. Determining the *real* necessary GID for the --with-mail-gid > flag. I get one GID reported by Postfix in the maillog error message, > and another entirely when I run the Python query code reported > elsewhere. They're one digit off, incidentally... I have read that > Postfix does not need the Mailman wrapper, but have found no coherent > instructions on how to disable it without hand-editing the aliases > file with every list added. Setting up Mailman under Postfix to not need an alias file can be done, but is an inelegant process thru the vhost setups of Postfix. In the general case, and especially in your case, I'd recommend against the effort. Unless you are going to be creating and removing significant quantities of lists the change in work load is quite negligible. Now, on the reported desired GID variation: not worth worrying about now. Its curious, even odd, but incidental. The GID reported to the MTA is the one we're interested in as its the one that's failing. You should be able to just pick that up, rebuild, and move forward successfully. Use the FAQ as your guide: http://www.python.org/cgi-bin/faqw-mm.py?req=home > 2. Installing so that new lists are automatically aliased. I am the > only person who will be working on this system who even knows how to > log into the server. It would be very nice not to have to edit the > alias file and run newaliases by hand with every list modification. First get the system working, then worry about spiffy features like no alias files. > 3. Adding lists via the Web. Is the Webmin Mailman module usable? Any > tips? No idea. Again, unless you are going to be adding and removing significant numbers of lists I wouldn't bother with this. Get it working first under v2.0, then, when 2,1 goes gold you can pick up the automatic list maintenance for free. > Speaking of frustration, this whole system feels like a house of cards > -- I build it up to the point where it seems like it will work, then > suddenly get a GID error, or alias error, or something, and I'm back > to make clean. I'd wager that you are unfamiliar with and uncomfortable with mail systems in general. This is not to say that mail systems, or even Mailman are fragile as you describe, they're not, but that they can and frequently do seem peculiarly fragile when you're not familiar with them. Mailman is quite stable, quite predictable, quite well written software. General advice: 1) Get Mailman working under your MTa with no fancy features or integration first. 2) Make sure it also works under your web server second. 3) Re-test everything, pat yourself on the back and have a beer. Acknowledging accomplishment is frequently overlooked. 4) Work on training your list moderators. I can't point at much in the way of resources I'm afraid; good list moderators are made, not born, and the crucible tends to be empirical practice and observation rather than received learning. This is not to say it can't be taught, just that its not easy to teach, and is a field full of (seemingly) special cases. 5) Run the system for a while, keep it humming. Watch, observe, take notes twice as often if not more than you fiddle. Get comfortable. Mail systems are not hard as a problem class, but they do take learning and it takes a while to learn the patterns of this field. 6) On a test system WHICH IS DIFFERENT THAN YOUR PRODUCTION SYSTEM, investigate with the integration features you want, returning to step 5 as you detect weaknesses in your understanding. -- J C Lawrence ---------(*) Satan, oscillate my metallic sonatas. claw at kanga.nu He lived as a devil, eh? http://www.kanga.nu/~claw/ Evil is a name of a foeman, as I live. From claw at kanga.nu Fri Aug 9 08:28:16 2002 From: claw at kanga.nu (J C Lawrence) Date: Thu, 08 Aug 2002 23:28:16 -0700 Subject: [Mailman-Users] mailman In-Reply-To: Message from Chuq Von Rospach of "Thu, 08 Aug 2002 14:18:07 PDT." References: Message-ID: <16702.1028874496@kanga.nu> On Thu, 08 Aug 2002 14:18:07 -0700 Chuq Von Rospach wrote: > You can't do that! you're trying to take away my free speech! You're using the electrons on my system! I never gave you permission to do that, I want my money back! <> -- J C Lawrence ---------(*) Satan, oscillate my metallic sonatas. claw at kanga.nu He lived as a devil, eh? http://www.kanga.nu/~claw/ Evil is a name of a foeman, as I live. From claw at kanga.nu Fri Aug 9 08:29:12 2002 From: claw at kanga.nu (J C Lawrence) Date: Thu, 08 Aug 2002 23:29:12 -0700 Subject: [Mailman-Users] Message archiving question II In-Reply-To: Message from "Marcelo Assis" of "Thu, 08 Aug 2002 18:35:26 -0300." <017901c23f23$82be25a0$692d830a@celular.com.br> References: <017901c23f23$82be25a0$692d830a@celular.com.br> Message-ID: <16731.1028874552@kanga.nu> On Thu, 8 Aug 2002 18:35:26 -0300 Marcelo Assis wrote: > I was checking this list?s message archives, and i noticed we have > messages ranging from April 2024, June 2013, etc, to january and > december 1970!!!! > Is there a way to avoid this??? Yes. Configure the archiver to archive as of the time of receipt and not trust the senders applied Date header. > The archives date indexes are built from serves internal date and time > or from subscribers date and time time included in message headers? They default to the Date header supplied in the messages. > Is it possible to "number" the messages like Yahoo Groups does?? Currently, no. -- J C Lawrence ---------(*) Satan, oscillate my metallic sonatas. claw at kanga.nu He lived as a devil, eh? http://www.kanga.nu/~claw/ Evil is a name of a foeman, as I live. From wash at wananchi.com Fri Aug 9 08:41:10 2002 From: wash at wananchi.com (Odhiambo Washington) Date: Fri, 9 Aug 2002 09:41:10 +0300 Subject: [Mailman-Users] (no subject) In-Reply-To: References: <20020809054425.GB9108@ns2.wananchi.com> Message-ID: <20020809064110.GG9108@ns2.wananchi.com> * Aris Santillan [20020809 09:09]: wrote: PS: Please use an e-mail address we can reply to!! > well > this is how it goes > > /var/mailman/bin/list_members -o (textfile) (listname) > /var/mailman/bin/(textfile) > > textfile contains the email addresses of (listname) subscribers > > i wnt to execute it automatically to update the contents of if..... what?? > > example: #!/usr/local/bin/bash # Where is our work directory? DIR=/var/mailman/bin # Let's output the list of members NEWLIST=`/var/mailman/bin/list_members -o (textfile) (listname)` # What do we use to update a list? UPDATE=/usr/local/mailman/bin/add_members # Where is the file containing new members? That is the output on NEWLIST. SOURCE=$NEWLIST # Okay, let's update for i in `cat $SOURCE`; do $UPDATE -o $SOURCE mail done #Untested. # I am not responsible if you blow it all away. I've only given you enough rope to begin hanging yourself ;-) cheers - wash +----------------------------------+-----------------------------------------+ Odhiambo Washington, wash at wananchi.com . WANANCHI ONLINE LTD (Nairobi, KE) | http://ns2.wananchi.com/~wash/ . 1ere Etage, Loita Hse, Loita St., | GSM: (254) 722 743 223 . # 10286, 00100 NAIROBI | +---------------------------------+------------------------------------------+ "Oh My God! They killed init! You Bastards!" --from a /. post ++ ``That Ariel Sharon. Boy, he sure is controversial. Most Western countries would have to have a military coup before they enjoyed a leader of that caliber.'' (Sydney Webb) From nathan at lakesidepress.org Fri Aug 9 20:42:40 2002 From: nathan at lakesidepress.org (Nathan A. McQuillen) Date: Fri, 09 Aug 2002 13:42:40 -0500 Subject: [Mailman-Users] Postfix help In-Reply-To: <16685.1028874428@kanga.nu> Message-ID: OK, update on my various postfix/mailman issues: got the 2.1b Mailman release and it's great. Easy config, and the web based features are exactly what I need. Integration with Postfix was actually documented in the 2.1 tarball (huzzah!) and works as advertised. Thanks for the help anyway - no doubt there will be other issues as we begin moving traffic on the lists. - Nathan From mary.y.wang at boeing.com Fri Aug 9 21:26:08 2002 From: mary.y.wang at boeing.com (Wang, Mary Y) Date: Fri, 9 Aug 2002 12:26:08 -0700 Subject: [Mailman-Users] How to migrate existing Mailman to a new server Message-ID: <9C2F3AD0B86DC94B987EC4FB97C7A32405EEAC03@XCH-SW-08.sw.nos.boeing.com> Hi, How do I migrate existing Mailman lists to a new server (the target paths name are also different) ? Thanks in advance. Mary From webguru at vsnl.net Fri Aug 9 22:34:47 2002 From: webguru at vsnl.net (Madhu Menon) Date: Sat, 10 Aug 2002 02:04:47 +0530 Subject: [Mailman-Users] Checking body for words Message-ID: <5.1.0.14.2.20020810020327.01e29a90@203.197.12.4> Hello. I was wondering if someone could help me with this problem. What I want to do is block any mail that has the word "viagra" in it in the body (or any other phrase I specify). Is there some way to do this through the mailman admin interface? Any help appreciated. Regards, Madhu <<< * >>> Madhu Menon User Experience Consultant e-mail: webguru at vsnl.net From eric at interactive-ms.com Fri Aug 9 22:36:11 2002 From: eric at interactive-ms.com (Eric Hake) Date: Fri, 09 Aug 2002 13:36:11 -0700 Subject: [Mailman-Users] Two Questions Message-ID: I'm having the following two problems: 1) How do I set up the pipermail feature? I have a /pipermail folder in my root, but I'm missing something, because when I try to view archives, it says it's not available... How do I generate the archives so their viewable from the /pipermail folder? 2) I had a user complain today that my new list generated 154 of the same messages in one day to the same user! I imported the list from my old Majordomo list en masse, and it turns out that one of the subscribers email account doesn't exist, so I got a ton of cron job emails in my inbox when I woke up today... Could this be causing the message to be resent 154 times? Thanks! Eric From barry at python.org Sat Aug 10 06:44:55 2002 From: barry at python.org (Barry A. Warsaw) Date: Sat, 10 Aug 2002 00:44:55 -0400 Subject: [Mailman-Users] RELEASED Mailman 2.1 beta 3 Message-ID: <15700.39495.95222.780717@anthem.wooz.org> I've released Mailman 2.1 beta 3; see below for a list of changes since version 2.1 beta 2. There have been lots of bug fixes, two new languages (Dutch and Brazilian Portuguese), and a couple of minor new features. Remember that discussions about version 2.1 are still preferred on mailman-developers. I plan on moving the remaining Mailman discussion lists (mailman-users, mailman-announce, mailman-i18n, mailman-docs, and mailman-checkins) over to the new version later this weekend. Enjoy, -Barry -------------------- snip snip -------------------- 2.1 beta 3 (09-Aug-2002) The usual assortment of bug fixes and language updates. - New languages: Dutch, Portuguese (Brazil) - New configure script options: --with-mailhost, --with-urlhost, --without-permcheck. See ./configure --help for details. - The encoding of Subject: prefixes is controlled by a new list option encode_ascii_prefixes. This is useful for languages with character sets other than us-ascii. See the Languages admin page for details. - A new list option news_prefix_subject_too controls whether postings gated from mail to news should have the subject prefix added to their Subject: header. - The algorithm for upgrading the moderation controls for a Mailman 2.0.x list has changed. The change should be transparent, but you'll want to double check the moderation controls after upgrading from MM2.0.x. This should have no effect for upgrades from a previous MM2.1 beta. See the UPGRADING file for details. - On the Mass Subscribe admin page, a text box has been added so that the admin can add a custom message to be prepended to the welcome/invite notification. - On the admindb page, a link is included to more easily reload the page. - The Sendmail.py delivery module is sabotaged so that it can't be used naively. You need to read the comments in the file and edit the code to use this unsafe module. - When a member sends a `help' command to the request address, the url to their options page is included in the response. - Autoresponses, -request command responses, and posting hold notifications are inhibited for any message that has a Precedence: {bulk|list|junk} header. This is to avoid mail loops between email 'bots. If the original message has an X-Ack: yes header, the response is sent. Responses are also limited to a maximum number per day, as defined in the site variable MAX_AUTORESPONSES_PER_DAY. This is another guard against 'bot loops, and it defaults to 10. - When a Reply-To: header is munged to include both the original and the list address, the list address is always added last. - The cron/mailpasswds script has grown a -l/--listname option. - The cron/disabled script has grown options to send out notifications for reasons other than bounce-disabled. It has also grown a -f/--force option. See cron/disabled --help for details. - The bin/dumpdb script has grown a -n/--noprint option. - An experimental new mechanism for processing incoming messages has been added. If you can configure your MTA to do qmail-style Maildir delivery, Mailman now has a MaildirRunner qrunner. This may turn out to be much more efficient and scalable, but for MM2.1, it will not be officially supported. See Defaults.py.in and Mailman/Queue/MaildirRunner.py for details. From philippe.rasquinet at skynet.be Sat Aug 10 08:06:31 2002 From: philippe.rasquinet at skynet.be (Philippe Rasquinet) Date: Sat, 10 Aug 2002 08:06:31 +0200 Subject: [Mailman-Users] how to unsubscribe In-Reply-To: <20020809064110.GG9108@ns2.wananchi.com> References: Message-ID: <3D54C987.9236.14FF4870@localhost> from this mailing list? From kremels at kreme.com Sat Aug 10 22:50:33 2002 From: kremels at kreme.com (LuKreme) Date: Sat, 10 Aug 2002 14:50:33 -0600 Subject: [Mailman-Users] Message archiving question II References: <017901c23f23$82be25a0$692d830a@celular.com.br> Message-ID: <3D557C99.2020304@kreme.com> Marcelo Assis wrote: > Well, i posted this earlier this week, but since noone replied, and i kind > of need the information, i thought i should give it a shot again.... > > I was checking this list?s message archives, and i noticed we have messages > ranging from April 2024, June 2013, etc, to january and december 1970!!!! > > Is there a way to avoid this??? > > The archives date indexes are built from serves internal date and time or > from subscribers date and time time included in message headers? Seems pretty obvious that it's built from the subscribers date info. I would like to see this changed tot he Mailing list date info, since FAR too many people have dates that are absurdly wrong, (so even do this intentionally... > Is it possible to "number" the messages like Yahoo Groups does?? ick. Received: from mail.telemigcelular.com.br ([200.192.226.23] helo=ajuda.celular.com.br) by mail.python.org with smtp (Exim 4.05) id 17cuzF-0003pO-00 for Mailman-Users at python.org; Thu, 08 Aug 2002 17:38:29 -0400 That's when the mailing list's server received the email, and ThAT is the the data that I would like to see be used for archiving. From postnet at dragas.dyndns.org Sun Aug 11 01:13:42 2002 From: postnet at dragas.dyndns.org (postnet at dragas.dyndns.org) Date: Sun, 11 Aug 2002 01:13:42 +0200 Subject: [Mailman-Users] Slow to send emails Message-ID: <20020810231342.GA9285@dragas.dyndns.org> Hello everybody. I've got a Debian Woody stable working with postfix and that used to manage mailing lists with smartlist without any trouble. It all was fast and reliable. Now I've decided to install Mailman, because of its wonderful web interface and its options, but I've got a trouble. Any mail sent to the list takes a lot of time (one minute or more) to be sent to the others. I mean...I've tried creating a mailing list with 3 subscribers. I send the message and nothing happens. After one minute (more or less) the system starts processing it and sending. When a user subscribe, for example, the confirmation is sent immediately. The other emails are slow. I've read in the faq that this can be a problem of my postfix configuration, but...I can't find how to fix it, expecially because my postfix is running fine (even with smartlist). What can I do? Any suggestion? Thanks a lot. P.S.: Is there any way to show the web interface in Italian? Stefano From wolf at wolfstream.net Sun Aug 11 01:32:41 2002 From: wolf at wolfstream.net (Tom Whiting) Date: Sat, 10 Aug 2002 18:32:41 -0500 Subject: [Mailman-Users] Slow to send emails In-Reply-To: <20020810231342.GA9285@dragas.dyndns.org> References: <20020810231342.GA9285@dragas.dyndns.org> Message-ID: <200208101832.41216.wolf@wolfstream.net> >I've tried creating a mailing list with 3 > subscribers. I send the message and nothing happens. After one minute > (more or less) the system starts processing it and sending. When a user > subscribe, for example, the confirmation is sent immediately. IF all it's waiting is a minute, Ireally wouldn't complain too much. That's nothing at all. Then again, it could be falling back to this in crontab too # Retry failed deliveries once per minute. * * * * * /usr//bin/python -S /home/mailman/cron/qrunner 1 minute of wait won't kill anyone. Nor will two or three. You can't change that entry in cron tomake it go any FASTER (once a minute's about as fast as you want to process an application). -- ---------------------------------------------------- TJW: Head tech, Dreamless Realms Mud: http://dreamless.wolfstream.net Snippets http://dreamless.wolfstream.net/ Telnet dreamless.wolfstream.net:9275 The OLC Pages http://olc.wolfstream.net ---------------------------------------------------- From postnet at dragas.dyndns.org Sun Aug 11 01:40:00 2002 From: postnet at dragas.dyndns.org (postnet at dragas.dyndns.org) Date: Sun, 11 Aug 2002 01:40:00 +0200 Subject: [Mailman-Users] Slow to send emails In-Reply-To: <200208101832.41216.wolf@wolfstream.net> References: <20020810231342.GA9285@dragas.dyndns.org> <200208101832.41216.wolf@wolfstream.net> Message-ID: <20020810234000.GA9987@dragas.dyndns.org> On Sat, Aug 10, 2002 at 06:32:41PM -0500, Tom Whiting wrote: > Then again, it could be falling back to this in crontab too > # Retry failed deliveries once per minute. > * * * * * /usr//bin/python -S /home/mailman/cron/qrunner Oh...so the list is processed using a crontab event...I didn't know it! > 1 minute of wait won't kill anyone. Nor will two or three. You can't change > that entry in cron tomake it go any FASTER (once a minute's about as fast as > you want to process an application). Of course not...I just didn't know it was driven by a crontab event... now I know and think that it's all working fine. Thanks a lot! Stefano From romaniuc at nib.unicamp.br Mon Aug 12 06:18:03 2002 From: romaniuc at nib.unicamp.br (Alan Roberto Romaniuc) Date: Mon, 12 Aug 2002 01:18:03 -0300 (EST) Subject: [Mailman-Users] Mailman+postfix+wrapper Message-ID: Hi Im using mailman 2.0.11 with postfix on a redhat 7.3. I created a list called test, but when I send a message to test-request at myserver, I get no awnser. My error log is OK (empty....), and postfix log (maillog) says that the message was delivered to destination: E36AB75334: to=, relay=local, delay=1, status=sent ("| /home/mailman/mail/wrapper mailcmd test") What is the probleam here??? -- ________________________________________ Alan Roberto Romaniuc Estagiario em Administracao de Redes NIB - N?cleo de inform?tica Biom?dica From aris.santillan at summitmedia.com.ph Mon Aug 12 07:00:28 2002 From: aris.santillan at summitmedia.com.ph (Aris Santillan) Date: Mon, 12 Aug 2002 13:00:28 +0800 Subject: [Mailman-Users] post approval Message-ID: hello guys i set my mailing list on which posters should get approval from the admin .... but when i approve it no one recieves the posting....? From R.Barrett at ftel.co.uk Mon Aug 12 12:18:17 2002 From: R.Barrett at ftel.co.uk (Richard Barrett) Date: Mon, 12 Aug 2002 11:18:17 +0100 Subject: [Mailman-Users] Checking body for words In-Reply-To: <5.1.0.14.2.20020810020327.01e29a90@203.197.12.4> Message-ID: <5.1.0.14.2.20020812110904.046dd9e8@pop.ftel.co.uk> At 02:04 10/08/2002 +0530, Madhu Menon wrote: >Hello. > >I was wondering if someone could help me with this problem. > >What I want to do is block any mail that has the word "viagra" in it in >the body (or any other phrase I specify). Is there some way to do this >through the mailman admin interface? I think you would be better off considering use of something like Spam Assassin (http://spamassassin.org/) to stop junk mail getting as far as your mail list handler rather than expecting Mailman to provide that type of mail filtering in addition to its normal functions. >Any help appreciated. > >Regards, > >Madhu > ><<< * >>> >Madhu Menon >User Experience Consultant >e-mail: webguru at vsnl.net From romaniuc at nib.unicamp.br Mon Aug 12 14:02:26 2002 From: romaniuc at nib.unicamp.br (Alan Roberto Romaniuc) Date: Mon, 12 Aug 2002 09:02:26 -0300 (EST) Subject: [Mailman-Users] Mailman+postfix+wrapper Message-ID: Hi Im using mailman 2.0.11 with postfix on a redhat 7.3. I created a list called test, but when I send a message to test-request at myserver, I get no awnser. My error log is OK (empty....), and postfix log (maillog) says that the message was delivered to destination: E36AB75334: to=, relay=local, delay=1, status=sent ("| /home/mailman/mail/wrapper mailcmd test") The aliases file are correct (I can see that because of the log.... it says status-sent("| /home/mailman/mail....... ") . What is the probleam here???. ny sigestions -- ________________________________________ Alan Roberto Romaniuc Estagiario em Administracao de Redes NIB - N?cleo de inform?tica Biom?dica ------------------------------------------------------ Mailman-Users mailing list Mailman-Users at python.org 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/ From wolf at wolfstream.net Mon Aug 12 14:13:42 2002 From: wolf at wolfstream.net (Tom Whiting) Date: Mon, 12 Aug 2002 07:13:42 -0500 Subject: [Mailman-Users] Mailman+postfix+wrapper In-Reply-To: References: Message-ID: <200208120713.42734.wolf@wolfstream.net> > > What is the probleam here???. ny sigestions Check that your cron files are in place. Check your $mailmandir/qfiles don't actually HAVE the message still waiting. Check that you have subscribed yourself to the list. Check that you don't have issues with the options (suid) on whichever drive you called mailman your home at. Go into the archives. Did it post to the archives? -- ---------------------------------------------------- TJW: Head tech, Dreamless Realms Mud: http://dreamless.wolfstream.net Snippets http://dreamless.wolfstream.net/ Telnet dreamless.wolfstream.net:9275 The OLC Pages http://olc.wolfstream.net ---------------------------------------------------- From webguru at vsnl.net Mon Aug 12 14:42:23 2002 From: webguru at vsnl.net (Madhu Menon) Date: Mon, 12 Aug 2002 18:12:23 +0530 Subject: [Mailman-Users] Checking body for words In-Reply-To: <5.1.0.14.2.20020812110904.046dd9e8@pop.ftel.co.uk> References: <5.1.0.14.2.20020810020327.01e29a90@203.197.12.4> Message-ID: <5.1.0.14.2.20020812160140.085af4b8@203.197.12.4> At 03:48 PM 12-08-02, Richard Barrett wrote: >I think you would be better off considering use of something like Spam >Assassin (http://spamassassin.org/) to stop junk mail getting as far as >your mail list handler rather than expecting Mailman to provide that type >of mail filtering in addition to its normal functions. Richard, I appreciate your point of view. The word I used was just an example. What I really want to do is check for the presence of the list's footer in the mail. This is to encourage people to quote selectively and trim their list mail. For example, our list has a footer like: --- For list options, visit http://www.example.com If somebody's message has "For list options, visit http://www.example.com" in it, I want it to be held for approval. It's not intended to prevent spam. So, now that my purpose is clearer, is there a way to make it happen? Regards, Madhu <<< * >>> Madhu Menon User Experience Consultant e-mail: webguru at vsnl.net From venum at rediffmail.com Mon Aug 12 15:07:48 2002 From: venum at rediffmail.com (Venu) Date: 12 Aug 2002 13:07:48 -0000 Subject: [Mailman-Users] Mail List Not Working Message-ID: <20020812130748.21427.qmail@mailFA11.rediffmail.com> An embedded and charset-unspecified text was scrubbed... Name: not available Url: http://mail.python.org/pipermail/mailman-users/attachments/20020812/847e3075/attachment.asc From R.Barrett at ftel.co.uk Mon Aug 12 15:17:31 2002 From: R.Barrett at ftel.co.uk (Richard Barrett) Date: Mon, 12 Aug 2002 14:17:31 +0100 Subject: [Mailman-Users] Mail List Not Working In-Reply-To: <20020812130748.21427.qmail@mailFA11.rediffmail.com> Message-ID: <5.1.0.14.2.20020812141615.044506d0@pop.ftel.co.uk> At 13:07 12/08/2002 +0000, Venu wrote: >Hi, > >I have configured mailman on my Linux system. Using the newlist command i >have created a list and added one user through the web interface. > >When i send a mail to this list it bounces back > >error is " unknown user: "testlist" " > >testlist is the list name. > >Am i missing anything in the configuration > >TIA > >Venu Looks like this is coming from the MTA on your system; Sendmail ??? Have you added the list's mail aliases to your MTA aliases file or such. From detlef.neubauer at charite.de Mon Aug 12 15:31:13 2002 From: detlef.neubauer at charite.de (Detlef Neubauer) Date: 12 Aug 2002 15:31:13 +0200 Subject: [Mailman-Users] how to unsubscribe In-Reply-To: "Philippe Rasquinet"'s message of "Sat, 10 Aug 2002 08:06:31 +0200" References: <3D54C987.9236.14FF4870@localhost> Message-ID: "Philippe Rasquinet" writes: > from this mailing list? Take a look at http://mail.python.org/mailman/listinfo/mailman-users or look in your mail headers. Please send no Cc. I answer only via the list. Detlef Neubauer -- .oO GnuPG Key auf http://www.keyserver.net/ Oo. From lists at openunix.de Mon Aug 12 15:35:33 2002 From: lists at openunix.de (Franz Georg =?iso-8859-15?Q?K=F6hler?=) Date: Mon, 12 Aug 2002 15:35:33 +0200 Subject: [Mailman-Users] queue runner keeps crashing Message-ID: <20020812133533.GA19285@fgk.bofh.hanau.net> All of the sudden, Mailman V. 2.0.11 stopped working, I'm getting those messages in the log file: Aug 12 15:17:03 2002 qrunner(453): Traceback (innermost last): Aug 12 15:17:03 2002 qrunner(453): File "/usr/lib/mailman/cron/qrunner", line 283, in ? Aug 12 15:17:03 2002 qrunner(453): kids = main(lock) Aug 12 15:17:03 2002 qrunner(453): File "/usr/lib/mailman/cron/qrunner", line 253, in main Aug 12 15:17:03 2002 qrunner(453): keepqueued = dispose_message(mlist, msg, msgdata) Aug 12 15:17:03 2002 qrunner(453): File "/usr/lib/mailman/cron/qrunner", line 157, in dispose_message Aug 12 15:17:03 2002 qrunner(453): mlist.ParseMailCommands(msg) Aug 12 15:17:03 2002 qrunner(453): File "/usr/lib/mailman/Mailman/MailCommandHandler.py", line 123, in ParseMailComAug 12 15:17:03 2002 qrunner(453): precedence = msg.get('precedence', '').lower() Aug 12 15:17:03 2002 qrunner(453): AttributeError : 'string' object has no attribute 'lower' Aug 12 15:18:01 2002 qrunner(687): Traceback (innermost last): Aug 12 15:18:01 2002 qrunner(687): File "/usr/lib/mailman/cron/qrunner", line 283, in ? Aug 12 15:18:01 2002 qrunner(687): kids = main(lock) Aug 12 15:18:01 2002 qrunner(687): File "/usr/lib/mailman/cron/qrunner", line 253, in main Aug 12 15:18:01 2002 qrunner(687): keepqueued = dispose_message(mlist, msg, msgdata) Aug 12 15:18:01 2002 qrunner(687): File "/usr/lib/mailman/cron/qrunner", line 157, in dispose_message Aug 12 15:18:01 2002 qrunner(687): mlist.ParseMailCommands(msg) Aug 12 15:18:01 2002 qrunner(687): File "/usr/lib/mailman/Mailman/MailCommandHandler.py", line 123, in ParseMailComAug 12 15:18:01 2002 qrunner(687): precedence = msg.get('precedence', '').lower() Aug 12 15:18:01 2002 qrunner(687): AttributeError : 'string' object has no attribute 'lower' Mailman successfully receives mail but is unable to re-distribute it. update: I just upgraded to V. 2.0.12 with a slight hope this could solve my problem, however, it still exists. I'll be grateful for all hints that might lead to solving this. From R.Barrett at ftel.co.uk Mon Aug 12 17:12:49 2002 From: R.Barrett at ftel.co.uk (Richard Barrett) Date: Mon, 12 Aug 2002 16:12:49 +0100 Subject: [Mailman-Users] queue runner keeps crashing In-Reply-To: <20020812133533.GA19285@fgk.bofh.hanau.net> Message-ID: <5.1.0.14.2.20020812160349.046dd9e8@pop.ftel.co.uk> At 15:35 12/08/2002 +0200, Franz Georg =?iso-8859-15?Q?K=F6hler?= wrote: >All of the sudden, Mailman V. 2.0.11 stopped working, I'm getting those >messages in the log file: > > >Aug 12 15:17:03 2002 qrunner(453): Traceback (innermost last): >Aug 12 15:17:03 2002 qrunner(453): File "/usr/lib/mailman/cron/qrunner", >line 283, in ? >Aug 12 15:17:03 2002 qrunner(453): kids = main(lock) >Aug 12 15:17:03 2002 qrunner(453): File "/usr/lib/mailman/cron/qrunner", >line 253, in main >Aug 12 15:17:03 2002 qrunner(453): keepqueued = >dispose_message(mlist, msg, msgdata) >Aug 12 15:17:03 2002 qrunner(453): File "/usr/lib/mailman/cron/qrunner", >line 157, in dispose_message >Aug 12 15:17:03 2002 qrunner(453): mlist.ParseMailCommands(msg) >Aug 12 15:17:03 2002 qrunner(453): File >"/usr/lib/mailman/Mailman/MailCommandHandler.py", line 123, in >ParseMailComAug 12 15:17:03 2002 qrunner(453): precedence = >msg.get('precedence', '').lower() >Aug 12 15:17:03 2002 qrunner(453): AttributeError : 'string' object has >no attribute 'lower' >Aug 12 15:18:01 2002 qrunner(687): Traceback (innermost last): >Aug 12 15:18:01 2002 qrunner(687): File "/usr/lib/mailman/cron/qrunner", >line 283, in ? >Aug 12 15:18:01 2002 qrunner(687): kids = main(lock) >Aug 12 15:18:01 2002 qrunner(687): File "/usr/lib/mailman/cron/qrunner", >line 253, in main >Aug 12 15:18:01 2002 qrunner(687): keepqueued = >dispose_message(mlist, msg, msgdata) >Aug 12 15:18:01 2002 qrunner(687): File "/usr/lib/mailman/cron/qrunner", >line 157, in dispose_message >Aug 12 15:18:01 2002 qrunner(687): mlist.ParseMailCommands(msg) >Aug 12 15:18:01 2002 qrunner(687): File >"/usr/lib/mailman/Mailman/MailCommandHandler.py", line 123, in >ParseMailComAug 12 15:18:01 2002 qrunner(687): precedence = >msg.get('precedence', '').lower() >Aug 12 15:18:01 2002 qrunner(687): AttributeError : 'string' object has >no attribute 'lower' > > >Mailman successfully receives mail but is unable to re-distribute it. > > > >update: >I just upgraded to V. 2.0.12 with a slight hope this could solve >my problem, however, it still exists. > > >I'll be grateful for all hints that might lead to solving this. Upgrade to MM 2.0.13 which, amongst other things, cures this leakage of Python 2.x functionality into code that should be Python 1.x compatible or upgrade your Python installation to 2.1 or 2.2. fyi the problem is that various functions from the string module became member functions of string objects in Python 2.0 and above. The usage causing the problem: msg.get('precedence', '').lower should have been coded as follows to be Python 1.x compatible: string.lower(msg.get('precedence', '')) I believe MM 2.0.13 fixes these glitches that appeared post 2.0.8 if I recollect correctly; the one you've stumbled on was not alone. From lists at openunix.de Mon Aug 12 18:53:19 2002 From: lists at openunix.de (Franz Georg =?iso-8859-15?Q?K=F6hler?=) Date: Mon, 12 Aug 2002 18:53:19 +0200 Subject: [Mailman-Users] queue runner keeps crashing In-Reply-To: <5.1.0.14.2.20020812160349.046dd9e8@pop.ftel.co.uk> References: <20020812133533.GA19285@fgk.bofh.hanau.net> <5.1.0.14.2.20020812160349.046dd9e8@pop.ftel.co.uk> Message-ID: <20020812165319.GA19689@fgk.bofh.hanau.net> On Mon, Aug 12, 2002 at 04:12:49PM +0100, Richard Barrett wrote: > At 15:35 12/08/2002 +0200, Franz Georg =?iso-8859-15?Q?K=F6hler?= wrote: >>All of the sudden, Mailman V. 2.0.11 stopped working, I'm getting those >>messages in the log file: >> >> [...] >> >>Mailman successfully receives mail but is unable to re-distribute it. >> >> >> >>update: >>I just upgraded to V. 2.0.12 with a slight hope this could solve >>my problem, however, it still exists. >> >> >>I'll be grateful for all hints that might lead to solving this. > > Upgrade to MM 2.0.13 which, amongst other things, cures this leakage of > Python 2.x functionality into code that should be Python 1.x compatible or > upgrade your Python installation to 2.1 or 2.2. > > fyi the problem is that various functions from the string module became > member functions of string objects in Python 2.0 and above. The usage > causing the problem: > > msg.get('precedence', '').lower > > should have been coded as follows to be Python 1.x compatible: > > string.lower(msg.get('precedence', '')) > > I believe MM 2.0.13 fixes these glitches that appeared post 2.0.8 if I > recollect correctly; the one you've stumbled on was not alone. I upgraded to python 2.1: # dpkg --list |grep pytho ii python 2.1.3-3 An interactive object-oriented scripting lan ii python2.1 2.1.3-3 An interactive object-oriented scripting lan and, as proposed, mail delivery is working now. However, I now do have some strange messages in my log, which indicate an error related to the web-interface: Aug 12 18:43:14 2002 admin(13967): @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ admin(13967): [----- Mailman Version: 2.0.12 -----] admin(13967): [----- Traceback ------] admin(13967): Traceback (most recent call last): admin(13967): File "/var/lib/mailman/scripts/driver", line 98, in run_main admin(13967): main() admin(13967): File "../Mailman/Cgi/admin.py", line 154, in main admin(13967): ChangeOptions(mlist, category, cgidata, doc) admin(13967): File "../Mailman/Cgi/admin.py", line 855, in ChangeOptions admin(13967): value = GetValidValue(mlist, property, kind, val, deps) admin(13967): File "../Mailman/Cgi/admin.py", line 749, in GetValidValue admin(13967): map(string.strip, string.split(val, '\n'))) admin(13967): File "../Mailman/Cgi/admin.py", line 743, in SafeValidAddr admin(13967): Utils.ValidateEmail(addr) admin(13967): File "../Mailman/Utils.py", line 160, in ValidateEmail admin(13967): realname,str = rfc822.parseaddress(str) admin(13967): AttributeError: 'rfc822' module has no attribute 'parseaddress' admin(13967): [----- Python Information -----] admin(13967): sys.version = 2.1.3 (#1, Apr 20 2002, 10:14:34) [GCC 2.95.4 20011002 (Debian prerelease)] admin(13967): sys.executable = /usr/bin/python admin(13967): sys.prefix = /usr admin(13967): sys.exec_prefix= /usr admin(13967): sys.path = /usr admin(13967): sys.platform = linux2 admin(13967): [----- Environment Variables -----] admin(13967): DOCUMENT_ROOT: /var/www/lists.velia.net admin(13967): SERVER_ADDR: 213.221.81.17 admin(13967): HTTP_ACCEPT_ENCODING: gzip, deflate, compress;q=0.9 admin(13967): CONTENT_LENGTH: 516 admin(13967): HTTP_CLIENT_IP: 62.155.178.41 admin(13967): GATEWAY_INTERFACE: CGI/1.1 admin(13967): CONTENT_TYPE: application/x-www-form-urlencoded admin(13967): PATH_TRANSLATED: /var/www/lists.velia.net/fi-wvs admin(13967): REMOTE_ADDR: 62.225.252.23 admin(13967): SERVER_SOFTWARE: Apache/1.3.26 (Unix) Debian GNU/Linux mod_gzip/1.3.19.1a admin(13967): HTTP_VIA: 1.1 orion.bofh.hanau.net:3128 (Squid/2.4.STABLE6), HTTP/1.0 spcss45. (IBM-PROXY-WTE-US) admin(13967): HTTP_COOKIE: fi-wvs:admin=28020000006992e5573d732800000033396139663166343932623665393431663063353333303538383763393134333231343936656530 admin(13967): UNIQUE_ID: PVflotXdUREAACXMNV8 admin(13967): HTTP_ACCEPT_LANGUAGE: de-de, de;q=0.75, en-us;q=0.50, en;q=0.25 admin(13967): HTTP_X_FORWARDED_FOR: 172.20.1.10 admin(13967): REMOTE_PORT: 44932 admin(13967): SERVER_NAME: lists.velia.net admin(13967): HTTP_CONNECTION: Keep-Alive, TE admin(13967): HTTP_USER_AGENT: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.0) Gecko/20020615 Debian/1.0.0-3 admin(13967): HTTP_ACCEPT_CHARSET: ISO-8859-15, utf-8;q=0.66, *;q=0.66 admin(13967): HTTP_ACCEPT: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,video/x-mng,image/png,image/jpeg,image/gif;q=0.2,text/css,*/*;q=0.1 admin(13967): REQUEST_URI: /mailman/admin/fi-wvs admin(13967): HTTP_CACHE_CONTROL: max-age=259200 admin(13967): HTTP_TE: chunked admin(13967): QUERY_STRING: admin(13967): SERVER_PROTOCOL: HTTP/1.1 admin(13967): SERVER_PORT: 80 admin(13967): PATH_INFO: /fi-wvs admin(13967): HTTP_HOST: lists.velia.net admin(13967): REQUEST_METHOD: POST admin(13967): SERVER_SIGNATURE:
Apache/1.3.26 Server at lists.velia.net Port 80
admin(13967): SCRIPT_NAME: /mailman/admin admin(13967): SERVER_ADMIN: info at velia.net admin(13967): SCRIPT_FILENAME: /usr/lib/mailman/cgi-bin/admin admin(13967): PYTHONPATH: /var/lib/mailman admin(13967): HTTP_REFERER: http://lists.velia.net/mailman/admin/fi-wvs -- Warning: You are not root -- nmap V. 2.54BETA31 From R.Barrett at ftel.co.uk Mon Aug 12 19:06:59 2002 From: R.Barrett at ftel.co.uk (Richard Barrett) Date: Mon, 12 Aug 2002 18:06:59 +0100 Subject: [Mailman-Users] /etc/aliases in sendmail Message-ID: <5.1.0.14.2.20020812174320.04451d00@pop.ftel.co.uk> Further to what I said on 2nd Aug, I have now adapted the 2.1b2 contrib mm-handler to work with MM 2.0.x and I'm now using it instead of an aliases file in conjunction with Sendmail on our mailing list server. Works OK and will put me in better shape for the switchover to MM 2.1. In addition to changes in the Perl mailer I also had to make some changes in the m4 macros used to generate the sendmail.cf to get the mailertable to work as planned. This may just be an artifact of the sendmail m4 files installed by Suse 7.3 that I'm running on the machine. Or it could be due to my limited knowledge of Sendmail and its configuration and hence be a stupid change. If, having looked at the 2.1b2 contrib mm-handler and in particular perused the readme for it, anybody is interested in a copy of the Perl mailer code changes I made so that it will work with 2.0.x or the Sendmail m4 macro hacks then just ask. Its definitely not rocket science and comes with no warranty but it might save you some time. -------on 2nd Aug 2002 I originally said: As a possible alternative, there is a contribution in the contrib folder of the MM 2.1b2 release ($build/contrib/mm-handler) whose use obviates extending Sendmail's aliases database every time a new Mailman list is added or an old one removed. It is a Sendmail Mailer (its a Perl script) which calls the Mailman programs to handoff mail from Sendmail to Mailman. It is "driven" Mailman's list "database". Hence it dynamically starts delivery to new lists and stops delivery to removed lists without any need to maintain a separate Sendmail aliases database. I cannot see any reason why this should work just as well with MM 2.0.x as with MM 2.1.x; indeed I'm going to switch over to using it on my production MM 2.0.13 installation if I can first install it successfully on my test 2.1b2 installation. At 15:39 01/08/2002 -0700, Gary Verhulp wrote: >newlist -o /etc/aliases : newaliases > >I think this is what you are asking for > >Gary > > >Larry Guest wrote: > >>Is there a better way to handle the mailman aliases instead of just editing >>my /etc/aliases file and running newaliases. >>When I get to over 200 lists its going to be a nightmare file. >> >>Thanks From woodie at webfoot.net Mon Aug 12 20:07:42 2002 From: woodie at webfoot.net (Woodie Sayles) Date: Mon, 12 Aug 2002 14:07:42 -0400 Subject: [Mailman-Users] Phantom subscriber Message-ID: I have a list where someone had subscribed, and then unsubscribed. Now, every time a post goes out to the list, I get an error message saying that his email address was not found in the Public Name & Address list. Of course he's not, because he has unsubscribed. ? I've tried to subscribe and unsubscribe him again, but no luck. I still get the error message when a post goes out. Has anyone had this same problem? Woodie Sayles Webfoot.Net woodie at webfoot.net (727) 442-5770 (727) 442-3380 - fax Fast, friendly, professional web design and hosting. Visit our site at http://www.webfoot.net to see what we can do for you! ? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/mailman-users/attachments/20020812/b9ebd943/attachment.htm From woodie at webfoot.net Mon Aug 12 20:50:21 2002 From: woodie at webfoot.net (Woodie Sayles) Date: Mon, 12 Aug 2002 14:50:21 -0400 Subject: [Mailman-Users] Phantom subscriber In-Reply-To: Message-ID: I believe that is what's happening because I did see a different email address in the header. What exactly is going on though? Thanks for your quick reply on my first question. Woodie Sayles Webfoot.Net woodie at webfoot.net (727) 442-5770 (727) 442-3380 - fax Fast, friendly, professional web design and hosting. Visit our site at http://www.webfoot.net to see what we can do for you! -----Original Message----- From: Chuq Von Rospach [mailto:chuqui at plaidworks.com] Sent: Monday, August 12, 2002 2:22 PM To: Woodie Sayles Subject: Re: [Mailman-Users] Phantom subscriber My first thought is he has some OTHER address subscribed that's forwarding to his dead address. Check the mail headers to see what's really going on. On 8/12/02 11:07 AM, "Woodie Sayles" wrote: > I have a list where someone had subscribed, and then unsubscribed. Now, every > time a post goes out to the list, I get an error message saying that his email > address was not found in the Public Name & Address list. Of course he's not, > because he has unsubscribed. > > -- Chuq Von Rospach, Architech chuqui at plaidworks.com -- http://www.chuqui.com/ The Cliff's Notes Cliff's Notes on Hamlet: And they all died happily ever after From polethiopia at yahoo.com Mon Aug 12 21:33:01 2002 From: polethiopia at yahoo.com (Political Ethiopia) Date: Mon, 12 Aug 2002 12:33:01 -0700 (PDT) Subject: [Mailman-Users] Bug problem Message-ID: <20020812193301.29937.qmail@web11706.mail.yahoo.com> Dear Sirs, I have been running pol.ethiopia mail list for some years now. These days however, I have been blocked acess by the following message: "Bug in Mailman version 2.0.8 We're sorry, we hit a bug! Please inform the webmaster for this site of this problem. Printing of traceback and other system information has been explicitly inhibitd, but the webmaster can find this information in the Mialman errir logs. " Can you please look into this matter and help me resolve the problem so that thew list can function? Thanking you in advance, Yours, Dawit Yohannes List owner of Pol.Ethiopia. __________________________________________________ Do You Yahoo!? HotJobs - Search Thousands of New Jobs http://www.hotjobs.com From support at iquest.ucsb.edu Mon Aug 12 22:28:31 2002 From: support at iquest.ucsb.edu (Support) Date: 12 Aug 2002 13:28:31 -0700 Subject: [Mailman-Users] Failure to exec script. WANTED gid 0, GOT gid 12. (Reconfigure to take 12?) Message-ID: <1029184111.2740.40.camel@chirpy-boy.iquest.ucsb.edu> Hi, I set up mailman 2.0.12 on RH7.3 running sendmail.(sendmail running as root, apache as nobody,mailman running as mailman) i created a list, allowed FollowSymLinks in pipermail alias in apache, added the appropriate aliases in the /etc/aliases file, and added a symlink /etc/smrsh/wrapper -> /home/mailman/mail/wrapper When i try to subscribe a test user to the list I get a subscribe notice, I reply, then I get an email with this error. ###----------------- The original message was received at Mon, 12 Aug 2002 12:29:20 -0700 from imo-r07.mx.aol.com [152.163.225.103] ----- The following addresses had permanent fatal errors ----- "|/home/mailman/mail/wrapper mailcmd testlist" (reason: 2) (expanded from: ) ----- Transcript of session follows ----- Failure to exec script. WANTED gid 0, GOT gid 12. (Reconfigure to take 12?) 554 5.3.0 unknown mailer error 2 Final-Recipient: RFC822; testlist-request at myserver.mydomain.dom X-Actual-Recipient: X-Unix; |/home/mailman/mail/wrapper mailcmd testlist Action: failed Status: 5.0.0 Diagnostic-Code: X-Unix; 2 Last-Attempt-Date: Mon, 12 Aug 2002 12:29:23 -0700 ###------------------------- I looked this up in the mailman archive and they say that it's a postfix problem where postfix executes the wrapper as the owner of the aliase file(root)and the remedy is to change the owner to mailman but, 1- im not running postfix 2- is changing the owner of /etc/aliases to mailman a good idea? is there another way of solving this???? thanx, From wolf at wolfstream.net Mon Aug 12 23:12:17 2002 From: wolf at wolfstream.net (Tom Whiting) Date: Mon, 12 Aug 2002 16:12:17 -0500 Subject: [Mailman-Users] Failure to exec script. WANTED gid 0, GOT gid 12. (Reconfigure to take 12?) In-Reply-To: <1029184111.2740.40.camel@chirpy-boy.iquest.ucsb.edu> References: <1029184111.2740.40.camel@chirpy-boy.iquest.ucsb.edu> Message-ID: <200208121612.17462.wolf@wolfstream.net> On Monday 12 August 2002 03:28 pm, Support wrote: > ----- Transcript of session follows ----- > Failure to exec script. WANTED gid 0, GOT gid 12. (Reconfigure to take > 12?) > 554 5.3.0 unknown mailer error 2 > Imagine that, it even told you how to fix the error. Try reading docs next time before you send mails to the list eh? " TAKE SPECIAL NOTE OF THE --with-mail-gid AND --with-cgi-gid OPTIONS BELOW. YOU WILL PROBABLY NEED TO USE THESE! " So, reconfigure with the correct gid. ---------------------------------------------------- TJW: Head tech, Dreamless Realms Mud: http://dreamless.wolfstream.net Snippets http://dreamless.wolfstream.net/ Telnet dreamless.wolfstream.net:9275 The OLC Pages http://olc.wolfstream.net ---------------------------------------------------- From vjl at uci.edu Tue Aug 6 23:18:28 2002 From: vjl at uci.edu (Vince LaMonica) Date: Tue, 6 Aug 2002 14:18:28 -0700 (PDT) Subject: [Mailman-Users] MailMan with Apache: error "attempt to invoke directory as script" In-Reply-To: <19443486550.20020806230727@inf.fu-berlin.de> Message-ID: On Tue, 6 Aug 2002, Johannes Posel wrote: } Ok, I changed httpd.conf, restarted Apache, but still the same error } :& Ok, make sure you're surfing to: http://www.yourdomain.org/mailman/listinfo or http://www.yourdomain.org/mailman/admin If you don't specify 'listinfo' or 'admin' after '/mailman/' you'll get the error you're seeing. Let me know if that helps, /vjl/ -- Vince LaMonica UC Irvine, School of Social Ecology W3 Developer <*> 116 Social Ecology I, Irvine, CA 92697 vjl at uci.edu https://www.seweb.uci.edu/~vjl _____________________________________________ _ _____ ) Across the clouds I see my shadow fly )_ _ _(vj\____o /_/_ | ) Out of the corner of my watering eye. [PF] ) >-----._/_/__]> )_____________________________________________) `0 | From barry at python.org Wed Aug 7 14:38:59 2002 From: barry at python.org (Barry A. Warsaw) Date: Wed, 7 Aug 2002 08:38:59 -0400 Subject: [Mailman-Users] link update References: Message-ID: <15697.5347.651829.438564@anthem.wooz.org> >>>>> "PEB" == Paul E Brabson writes: PEB> I noticed that the link for Chris Kolar and the list manager PEB> documentation is incorrect on page PEB> http://www.gnu.org/software/mailman/MM21/mgrs.html. The PEB> correct link should be http://staff.imsa.edu/~ckolar/mailman. Fixed, thanks. -Barry From iamglt at optushome.com.au Wed Aug 7 14:51:22 2002 From: iamglt at optushome.com.au (Geoff Taylor) Date: Wed, 7 Aug 2002 22:51:22 +1000 Subject: [Mailman-Users] Hello Message-ID: <002501c23e11$228a99b0$4c1c31d2@p4pc> Hi, Can i use this mailman thing via windows XP? I tried to send an email to via MS Outlook but got a response saying my mail message was invalid... Would appreciate your assistance... Thanks, Geoff. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/mailman-users/attachments/20020807/92186fd1/attachment.html From zeek at sparklehouse.com Wed Aug 7 21:16:21 2002 From: zeek at sparklehouse.com (zeek) Date: Wed, 7 Aug 2002 15:16:21 -0400 Subject: [Mailman-Users] subscribe requests Message-ID: Nowhere have I found a way to answer "subscribe" requests automagically w/Mailman. Does anyone have an add-on or patch for this? Cheers, -zeek From CheySophal at ez2www.com Thu Aug 8 05:57:54 2002 From: CheySophal at ez2www.com (Sophal Chey) Date: Wed, 7 Aug 2002 20:57:54 -0700 (PDT) Subject: [Mailman-Users] I have problem on configuration of mailman. Message-ID: <20020808035754.7F23B394D@sitemail.everyone.net> An embedded and charset-unspecified text was scrubbed... Name: not available Url: http://mail.python.org/pipermail/mailman-users/attachments/20020807/6194fdb7/attachment.pot From barry at python.org Thu Aug 8 19:06:39 2002 From: barry at python.org (Barry A. Warsaw) Date: Thu, 8 Aug 2002 13:06:39 -0400 Subject: [Mailman-Users] Unofficial patches pages Message-ID: <15698.42271.601936.718975@yyz.zope.com> I've created a couple of pages off the Mailman wiki: http://www.zope.org/Members/bwarsaw/MailmanDesignNotes/FrontPage for collecting unofficial patches. SourceForge's patch manager is fine for managing the patches (uploading, updating, describing, commenting on, etc.), but really lousy for collecting them. I need to start closing patches which clearly aren't under consideration, either because they're against MM2.0.x, or because I'm pushing them back to a future release. The wiki pages should be used to describe the patch, and may include a link to the SF patch manager, or to some other location containing the patch (you could also add the patch to a sub-wiki page). SourceForge links will be fine even if the patch itself is closed. Anybody can add patch summaries to this page, although I may go back later and edit them. Please do /not/ add patches to the wiki in-line, that'll just make for an unreadable wiki. Please /do/ include an email address that users of your patch can contact you with. I've seeded the pages with a link to Richard Barrett's ht://Dig patch, for which he's included both a MM2.0.x and an MM2.1 patch. Questions, comments? -Barry From chrisw at ti.com Thu Aug 8 21:42:40 2002 From: chrisw at ti.com (Chris Winterrowd) Date: Thu, 8 Aug 2002 14:42:40 -0500 Subject: [Mailman-Users] Re: Mailman mailing lists - GNU Project - Free Software Foundation (FSF) Message-ID: How well does Mailman scale, and what's the largest number of lists that anyone has reported having? I'm looking to replace majordomo which just crossed 18,000 lists and the growth is increasing exponentially. Any success stories or horror stories are welcome! Thanks, Chris Winterrowd chrisw at ti.com From roelf.schreurs at imc.nl Fri Aug 9 08:58:55 2002 From: roelf.schreurs at imc.nl (Roelf Schreurs) Date: Fri, 09 Aug 2002 08:58:55 +0200 Subject: [Mailman-Users] nightly htdig cron job errors Message-ID: <3D53682F.5080907@imc.nl> Hi I have the following error when running the nightly htdig cronjob. Anybody know why? [root at dmx cron]# ./nightly_htdig ./nightly_htdig:63: SyntaxWarning: import * only allowed at module level def main(): ./nightly_htdig:211: SyntaxWarning: import * only allowed at module level def main(): ./nightly_htdig:359: SyntaxWarning: import * only allowed at module level def main(): [root at dmx cron]# -- Roelf From jpelorat at yahoo.com Fri Aug 9 01:39:40 2002 From: jpelorat at yahoo.com (=?iso-8859-1?Q?Sigifredo_A._Gonz=E1lez_Alvarado?=) Date: Thu, 8 Aug 2002 16:39:40 -0700 Subject: [Mailman-Users] Compiling CGI-Wrappers Message-ID: <00cf01c23f34$e1747430$7100a8c0@BLISS> Hello, I'm triying to create some CGI-Wrappers from some python files, how do i compile them? and How do i compile the python files on Mailman/Cgi into the cgi-bin directory? Thanks, Janov... -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/mailman-users/attachments/20020808/0989f233/attachment.html From barry at python.org Fri Aug 9 18:14:17 2002 From: barry at python.org (Barry A. Warsaw) Date: Fri, 9 Aug 2002 12:14:17 -0400 Subject: [Mailman-Users] Good Bye! References: <200208081603.11629.wolf@wolfstream.net> <5.1.0.14.0.20020808161827.00ac98d0@mail.paulsfunhouse.com> Message-ID: <15699.59993.715538.433524@anthem.wooz.org> >>>>> "PC" == Paul Croft writes: PC> Come to the defense of the innocent and you get your name PC> dragged through the mud! Thanks for the attempted support to PC> those that supported me! I won't make any further comments to PC> those of you that trashed me ... I have replied to you in PC> private! I missed the thread that got us to this point, but I really hope that this list can be conducted in a polite and helpful manner, and I'm sure it usually is. I know that can be a lot to expect in today's big bad internet, especially on a list that tries to be as open as possible, but this list does exist primarily so that folks can get help with their Mailman problems. Often we forgot how much we know and how long it took to learn it. What makes sense to us will definitely not make sense to everyone, and newbies need our help. Chuq likes to point out too, that no one is obligated to help: if you're feeling burned out or frustrated, take a break and let someone else give assistance. I'm sorry to see anybody get dissed off this list. diplomatical-ly y'rs, -Barry From atmadude at ftml.net Sat Aug 10 00:34:12 2002 From: atmadude at ftml.net (Rajesh Patel) Date: Fri, 9 Aug 2002 18:34:12 -0400 Subject: [Mailman-Users] Wishlist Items Message-ID: <006301c23ff4$e9e1e1a0$70646464@rajesh> Dear Sir I hope this is going to the right place. I would like to request the following two features: (1) On subscription, the email sent out requires the user to ACTIVATE the mailing request before they actually get added to the list. This is to address an issue where people are sometimes registered without their consent! (2) A feature that allows a user to register someone else (a friend) with an Introduction ADDED to the subscription email that is sent. So I could subscribe a friend and add a personal messge so they know I sent this to them ... Last of all I have a general question which I do not see addressed in the FAQ - how is a request like this handled and is there any feedback so I can tell if this request is going anywhere anytime soon? Kind regards Rajesh. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/mailman-users/attachments/20020809/4adc4f40/attachment.htm From aris at list.femalenetwork.com Mon Aug 12 06:56:39 2002 From: aris at list.femalenetwork.com (arislist) Date: Mon, 12 Aug 2002 12:56:39 +0800 Subject: [Mailman-Users] post approval Message-ID: i set my mailman on which posters messege should be approved by the admin before sending it why is it when i approve the message for posting.. no ones recieve it? please help me asap From gvsmony at inapp.com Mon Aug 12 12:50:40 2002 From: gvsmony at inapp.com (V.S.Mony) Date: Mon, 12 Aug 2002 16:20:40 +0530 Subject: [Mailman-Users] CGI problem References: <20011105111908.A8606@corona.cs.utk.edu> <20011105112841.A5979@mems-exchange.org> Message-ID: <003d01c241ee$194688b0$2101a8c0@Danube> Hi, had installed mailman. I am having rpm installation of apache. The gid of mail is 12 and gid of nobody is 99. I gave the nobody gid for the cgi-gid. Then i got the following error Can you help me out. Thanks Venkat Mailman CGI error!!! The expected gid of the Mailman CGI wrapper did not match the gid as set by the Web server. The most likely cause is that Mailman was configured and installed incorrectly. Please read the INSTALL instructions again, paying close attention to the --with-cgi-gid configure option. This entry is being stored in your syslog: Failure to exec script. WANTED gid 99, GOT gid 48. (Reconfigure to take 48?) From rosc at imc.nl Mon Aug 12 15:57:16 2002 From: rosc at imc.nl (Roelf Schreurs) Date: Mon, 12 Aug 2002 15:57:16 +0200 Subject: [Mailman-Users] GID (again but archives don't help) Message-ID: <3D57BEBC.2060008@imc.nl> Hi I just installed mailman 2.1b3 uid=1086(mailman) gid=1086(mailman) groups=1086(mailman) ./configure --prefix=/opt/mailman --with-username=1086 --with-groupname=1086 su-2.05a$ ls -l -rwxr-sr-x 1 mailman mailman 18005 Aug 12 15:37 mailman : Command died with status 2: "/opt/mailman/mail/mailman post mailman". Command output: Failure to exec script. WANTED gid 1086, GOT gid 65534. (Reconfigure to take 65534?) uid=1001(postfix) gid=1002(postfix) groups=1002(postfix) running postfix I recompiled with gid 65534 but that still didn't work. Any help please? -- Roelf S Chaos reigns within. Reflect, repent, and reboot. Order shall return. From yusufg at outblaze.com Mon Aug 12 17:22:50 2002 From: yusufg at outblaze.com (Yusuf Goolamabbas) Date: Mon, 12 Aug 2002 23:22:50 +0800 Subject: [Mailman-Users] Is it possible to have 2 lists of the same name under diff virtual domains Message-ID: <20020812152250.GA5287@outblaze.com> Hi, I am a Mailman newbie though I know a bit about MTA's such a sendmail/postfix. Whilst playing with Mailman 2.1b2 and Postfix 1.1.11, I saw that if I created a list 'list at dom1.ain', I would not be able to create a second list 'list at dom2.ain' where dom1.ain is in mydestination and dom2.ain is a postfix style virtual domain. This is primarily due to bin/newlist writing information about a list in data/virtual-mailman as well as data/aliases Is this a correct observation ? If so, how do people go about creating 'announce' type lists on different virtual domains ? Regards, Yusuf -- Yusuf Goolamabbas yusufg at outblaze.com From syo at uoguelph.ca Mon Aug 12 22:48:09 2002 From: syo at uoguelph.ca (Sean Yo) Date: Mon, 12 Aug 2002 16:48:09 -0400 Subject: [Mailman-Users] Patches and Version # Message-ID: <3D581F09.40703@uoguelph.ca> Hello, I've recently installed Mailman under Mandrake 8.0 (Python 2.0) and I just finished patching from 2.0.10 to 2.0.13 - it worked without a hitch. (As far as I can tell...) However, when I run the version script in /home/mailman/bin it is still reporting 2.0.10. Is this a problem? I assume Mailman.mm_cfg.VERSION just hasn't updated yet. Am I correct in thinking there is nothing to restart, since Mailman gets fired up as mail arrives? Thanks! Cheers Sean Yo University of Guelph From ashley at pcraft.com Tue Aug 13 00:04:19 2002 From: ashley at pcraft.com (Ashley M. Kirchner) Date: Mon, 12 Aug 2002 16:04:19 -0600 Subject: [Mailman-Users] CGI problem References: <20011105111908.A8606@corona.cs.utk.edu> <20011105112841.A5979@mems-exchange.org> <003d01c241ee$194688b0$2101a8c0@Danube> Message-ID: <3D5830E3.F89443EE@pcraft.com> "V.S.Mony" wrote: > Failure to exec script. WANTED gid 99, GOT gid 48. (Reconfigure to take > 48?) Seems your cgi-gid is 48, not 99. -- W | I haven't lost my mind; it's backed up on tape somewhere. +-------------------------------------------------------------------- Ashley M. Kirchner . 303.442.6410 x130 IT Director / SysAdmin / WebSmith . 800.441.3873 x130 Photo Craft Laboratories, Inc. . 3550 Arapahoe Ave. #6 http://www.pcraft.com ..... . . . Boulder, CO 80303, U.S.A. From ashley at pcraft.com Tue Aug 13 00:10:33 2002 From: ashley at pcraft.com (Ashley M. Kirchner) Date: Mon, 12 Aug 2002 16:10:33 -0600 Subject: [Mailman-Users] Wishlist Items References: <006301c23ff4$e9e1e1a0$70646464@rajesh> Message-ID: <3D583259.D2F2E1D@pcraft.com> Kind request: Do not post in HTML. ---------- Rajesh Patel wrote: > (1) On subscription, the email sent out requires the user to ACTIVATE the > mailing request before they actually get added to the list. This is to > address an issue where people are sometimes registered without their consent! This already exists. The default setting is for every subscription to be confirmed by the person whose e-mail was submitted. The other options are to require list manager approval (with no confirmation) or to require both list manager approval and e-mail confirmation. If your list behaves in any other matter than these three, then you have a custom setup and there's nothing we can do about that. > (2) A feature that allows a user to register someone else (a friend) with an > Introduction ADDED to the subscription email that is sent. So I could > subscribe a friend and add a personal messge so they know I sent this to them > ... Don't you think this defeats question (1) ? Having it open for anyone to subscribe anyone else does exactly the opposite from what you want to happen in question (1). -- W | I haven't lost my mind; it's backed up on tape somewhere. +-------------------------------------------------------------------- Ashley M. Kirchner . 303.442.6410 x130 IT Director / SysAdmin / WebSmith . 800.441.3873 x130 Photo Craft Laboratories, Inc. . 3550 Arapahoe Ave. #6 http://www.pcraft.com ..... . . . Boulder, CO 80303, U.S.A. From ashley at pcraft.com Tue Aug 13 00:11:42 2002 From: ashley at pcraft.com (Ashley M. Kirchner) Date: Mon, 12 Aug 2002 16:11:42 -0600 Subject: [Mailman-Users] post approval References: Message-ID: <3D58329E.CDE6C43F@pcraft.com> arislist wrote: > why is it when i approve the message for > posting.. no ones recieve it? Did you install the qrunner cron task? No message gets delivered to list members if the crontask isn't running. Read your INSTALL file again and follow the steps to install the crontask for your installation. -- W | I haven't lost my mind; it's backed up on tape somewhere. +-------------------------------------------------------------------- Ashley M. Kirchner . 303.442.6410 x130 IT Director / SysAdmin / WebSmith . 800.441.3873 x130 Photo Craft Laboratories, Inc. . 3550 Arapahoe Ave. #6 http://www.pcraft.com ..... . . . Boulder, CO 80303, U.S.A. From ashley at pcraft.com Tue Aug 13 00:14:11 2002 From: ashley at pcraft.com (Ashley M. Kirchner) Date: Mon, 12 Aug 2002 16:14:11 -0600 Subject: [Mailman-Users] Compiling CGI-Wrappers References: <00cf01c23f34$e1747430$7100a8c0@BLISS> Message-ID: <3D583333.5AD04945@pcraft.com> Kind request: Please do not post in HTML. ---------- "Sigifredo A. Gonz?lez Alvarado" wrote: > I'm triying to create some CGI-Wrappers from some python files, how do i > compile them? and How do i compile the python files on Mailman/Cgi into the > cgi-bin directory? Mailman takes care of its own Python files (notice how there are .py and .pyc files in the folder Mailman). Every time you change something on a .py file, the next time Mailman runs, it will recompile that file into a .pyc file. So you don't have to worry about that. -- W | I haven't lost my mind; it's backed up on tape somewhere. +-------------------------------------------------------------------- Ashley M. Kirchner . 303.442.6410 x130 IT Director / SysAdmin / WebSmith . 800.441.3873 x130 Photo Craft Laboratories, Inc. . 3550 Arapahoe Ave. #6 http://www.pcraft.com ..... . . . Boulder, CO 80303, U.S.A. From wolf at wolfstream.net Tue Aug 13 00:16:45 2002 From: wolf at wolfstream.net (Tom Whiting) Date: Mon, 12 Aug 2002 17:16:45 -0500 Subject: [Mailman-Users] Wishlist Items In-Reply-To: <006301c23ff4$e9e1e1a0$70646464@rajesh> References: <006301c23ff4$e9e1e1a0$70646464@rajesh> Message-ID: <200208121716.45225.wolf@wolfstream.net> > (1) On subscription, the email sent out requires the user to ACTIVATE the > mailing request before they actually get added to the list. This is to > address an issue where people are sometimes registered without their > consent! If you'll go into the mailing list options, I believe there is a setting (for your individual list) where subscription will be one of three choices: A> admin approval B> confirmation (you reply via email before you're subscribed) C> confirmation + admin approval D> Open subscription. I know, that was four (and maybe I'm wrong.. I don't have access to the mailman cgi-bin right now, as I'm re-installing OS related stuff). So I can't count. However, I am 99.9999999% positive those are there. Browse your web interface to the list a bit for those. > > (2) A feature that allows a user to register someone else (a friend) with > an Introduction ADDED to the subscription email that is sent. So I could > subscribe a friend and add a personal messge so they know I sent this to > them ... VERY VERY not good idea (though that's just me). If someone subscribed me to a list, I'd seriously be upset. Why? because it's generally rude to subscribe someone else to a mailing list that is (generally) just spam. Who says X person is interested in Y mailing list anyways? > > Last of all I have a general question which I do not see addressed in the > FAQ - how is a request like this handled and is there any feedback so I can > tell if this request is going anywhere anytime soon? > THAT is a good question, one I haven't found out the answer to myself yet. As someone already suggested, posting in HTML is considered rather, well, obnoxious and rude. Thankfully my email client can translate html to plaintext, but some can't.. Might want to consider changing your posting style. :) > > Kind regards > > > Rajesh. ---------------------------------------------------- TJW: Head tech, Dreamless Realms Mud: http://dreamless.wolfstream.net Snippets http://dreamless.wolfstream.net/ Telnet dreamless.wolfstream.net:9275 The OLC Pages http://olc.wolfstream.net ---------------------------------------------------- From barry at python.org Tue Aug 13 00:41:06 2002 From: barry at python.org (Barry A. Warsaw) Date: Mon, 12 Aug 2002 18:41:06 -0400 Subject: [Mailman-Users] Wishlist Items References: <006301c23ff4$e9e1e1a0$70646464@rajesh> Message-ID: <15704.14722.881896.191968@anthem.wooz.org> >>>>> "RP" == Rajesh Patel writes: RP> Last of all I have a general question which I do not see RP> addressed in the FAQ - how is a request like this handled and RP> is there any feedback so I can tell if this request is going RP> anywhere anytime soon? Mailman 2.1's in beta testing, and hence feature freeze so the best place to put feature requests at the moment is in the SourceForge feature request tracker: http://sourceforge.net/tracker/?atid=350103&group_id=103&func=browse Cheers, -Barry From ashley at pcraft.com Tue Aug 13 00:44:19 2002 From: ashley at pcraft.com (Ashley M. Kirchner) Date: Mon, 12 Aug 2002 16:44:19 -0600 Subject: [Mailman-Users] subscribe requests References: Message-ID: <3D583A43.AE2B4198@pcraft.com> zeek wrote: > Nowhere have I found a way to answer "subscribe" requests automagically > w/Mailman. Does anyone have an add-on or patch for this? The only way I've been able to make this work is to disable passwords all together. Note that this applies to the 2.0.x stable version of Mailman. From the Mailman FAQ (http://www.python.org/cgi-bin/faqw-mm.py): ---------- 1.5. How do I turn off passwords completely? This is an upcoming feature and may be available in a current alpha or beta release. Try http://satya.virtualave.net/download.html#mailmanw in the meantime. ---------- -- W | I haven't lost my mind; it's backed up on tape somewhere. +-------------------------------------------------------------------- Ashley M. Kirchner . 303.442.6410 x130 IT Director / SysAdmin / WebSmith . 800.441.3873 x130 Photo Craft Laboratories, Inc. . 3550 Arapahoe Ave. #6 http://www.pcraft.com ..... . . . Boulder, CO 80303, U.S.A. From wolf at wolfstream.net Tue Aug 13 00:48:38 2002 From: wolf at wolfstream.net (Tom Whiting) Date: Mon, 12 Aug 2002 17:48:38 -0500 Subject: [Mailman-Users] I have problem on configuration of mailman. In-Reply-To: <20020808035754.7F23B394D@sitemail.everyone.net> References: <20020808035754.7F23B394D@sitemail.everyone.net> Message-ID: <200208121748.38715.wolf@wolfstream.net> On Wednesday 07 August 2002 10:57 pm, Sophal Chey wrote: > Dear sir, > My name's Sophal Chey. I live in Cambodia. I'm a man 22. > I would like you to aid me to install+configure of mailman to work with > qmail. My server's OS is Redhat Linux 7.2. I've already installed and > configured qmail and python work properly. But the mailman is not yet. I've > tried 2 months on mailman but i can't get anything from it cost it > difficult to understand as well my English is quite poor too. Here are the > points int the install file int the mailman directory that I would like to > ask you: > There's a README.QMAIL If you follow the instructions in there, you should have no problem (I've followed 'em and it seems to work rather well for me). -- ---------------------------------------------------- TJW: Head tech, Dreamless Realms Mud: http://dreamless.wolfstream.net Snippets http://dreamless.wolfstream.net/ Telnet dreamless.wolfstream.net:9275 The OLC Pages http://olc.wolfstream.net ---------------------------------------------------- From ashley at pcraft.com Tue Aug 13 00:40:14 2002 From: ashley at pcraft.com (Ashley M. Kirchner) Date: Mon, 12 Aug 2002 16:40:14 -0600 Subject: [Mailman-Users] Re: Mailman mailing lists - GNU Project - Free Software Foundation (FSF) References: Message-ID: <3D58394E.CF16480B@pcraft.com> Chris Winterrowd wrote: > How well does Mailman scale, and what's the largest number of lists that > anyone has reported having? I'm looking to replace majordomo which just > crossed 18,000 lists and the growth is increasing exponentially. Any > success stories or horror stories are welcome! Eh, 18,000 lists, or 18,000 subscribers? Please note that performance is mostly based on the hardware you're using. However, as many on here will also vouch for, having the right combination of software also helps a great deal. While Sendmail is the default MTA on many platforms (I said many, not all), it's not exactly the best one suited for large mailing lists. There are faster ones, Postfix, Qmail and Exim to mention a few. I have several large (10,000+ subscribers per list) lists running on a (cramped) 200MHz RISC machine with 512Mb of RAM, and while it's not the fastest one on the farm, it does the job quite nicely. -- W | I haven't lost my mind; it's backed up on tape somewhere. +-------------------------------------------------------------------- Ashley M. Kirchner . 303.442.6410 x130 IT Director / SysAdmin / WebSmith . 800.441.3873 x130 Photo Craft Laboratories, Inc. . 3550 Arapahoe Ave. #6 http://www.pcraft.com ..... . . . Boulder, CO 80303, U.S.A. From vanhorn at whidbey.com Tue Aug 13 00:57:44 2002 From: vanhorn at whidbey.com (G. Armour Van Horn) Date: Mon, 12 Aug 2002 15:57:44 -0700 Subject: [Mailman-Users] Wishlist Items References: <006301c23ff4$e9e1e1a0$70646464@rajesh> <200208121716.45225.wolf@wolfstream.net> Message-ID: <3D583D68.7604068F@whidbey.com> Tom Whiting wrote: > > (2) A feature that allows a user to register someone else (a friend) with > > an Introduction ADDED to the subscription email that is sent. So I could > > subscribe a friend and add a personal messge so they know I sent this to > > them ... > VERY VERY not good idea (though that's just me). If someone subscribed me to a > list, I'd seriously be upset. Why? because it's generally rude to subscribe > someone else to a mailing list that is (generally) just spam. Who says X > person is interested in Y mailing list anyways? Very, very good idea, actually. I certainly know my friends and coworkers well enough that I wouldn't sign them up for somthing that they wouldn't enjoy or benefit from. To join relative strangers to the list is obviously a bad idea. But if the confirmation message included a note *from me*, whom they know, and then offered them the chance to ignore the message and not subscribe, or to reply to be subscribed, this would be a good process. Van -- ---------------------------------------------------------- Sign up now for Quotes of the Day, a handful of quotations on a theme delivered every morning. Enlightenment! Daily, for free! mailto:twisted at whidbey.com?subject=Subscribe_QOTD For web hosting and maintenance, visit Van's home page: http://www.domainvanhorn.com/van/ ---------------------------------------------------------- From chuqui at plaidworks.com Tue Aug 13 01:03:34 2002 From: chuqui at plaidworks.com (Chuq Von Rospach) Date: Mon, 12 Aug 2002 16:03:34 -0700 Subject: [Mailman-Users] Wishlist Items In-Reply-To: <3D583D68.7604068F@whidbey.com> Message-ID: On 8/12/02 3:57 PM, "G. Armour Van Horn" wrote: > But > if the confirmation message included a note *from me*, whom they know, and > then > offered them the chance to ignore the message and not subscribe, or to reply > to be > subscribed, this would be a good process. No, bad idea. Don't ever start a subscription process for someone without their knowing what's going on. But it's close. Good idea: ability to send e-mail to a person saying "hey, you really ought to check out this mail list, I think you'll want to subscribe", with the url pointing to the Listinfo page. But bad idea: sending email saying "I subscribed you to this list, because I think you'll like it", with or without a confirmation for that email. Because many users won't notice that it requires a confirmation, and start screaming at the admins (and anyone else in the neighborhood) to get them the @#$@#$% off the list, whether or not they're on it yet. Point the user to the thing. Don't, whatever you do, do NOT start the process FOR them. -- Chuq Von Rospach, Architech chuqui at plaidworks.com -- http://www.chuqui.com/ IMHO: Jargon. Acronym for In My Humble Opinion. Used to flag as an opinion something that is clearly from context an opinion to everyone except the mentally dense. Opinions flagged by IMHO are actually rarely humble. IMHO. (source: third unabridged dictionary of chuqui-isms). From jwblist at olympus.net Tue Aug 13 01:24:29 2002 From: jwblist at olympus.net (John W Baxter) Date: Mon, 12 Aug 2002 16:24:29 -0700 Subject: [Mailman-Users] Mailman question In-Reply-To: <002e01c23b37$9ead6900$02ab1e40@residents.atlantabroadband.com> References: <002e01c23b37$9ead6900$02ab1e40@residents.atlantabroadband.com> Message-ID: At 17:49 -0400 8/3/2002, Dusty wrote: >Is there a way that my site's visitors can just add themselves to my list >directly from my home page? I just want a simple form that lets them add >their email address and hit submit. Yes...build a form that subscribes them using the email interface, assuming you have the power to create email from your forms. If you want them to be able to unsubscribe from your home page as well, without bothering with a password, give everyone the same password in your subscribe email messages. Yes...that does away with the benefits of the password. It's not suitable for a geekish list for that reason. But it works for kind, gentle, rational people (all six of them left in the world). --John -- John Baxter jwblist at olympus.net Port Ludlow, WA, USA From bear at code-bear.dyndns.org Tue Aug 13 02:58:45 2002 From: bear at code-bear.dyndns.org (bear) Date: Mon, 12 Aug 2002 20:58:45 -0400 Subject: [Mailman-Users] newlist.py error after a debian install Message-ID: <0H0R005JRC3F4K@mtaout06.icomcast.net> I used apt-get to install mailman (2.0.12-2) and when I run newlist I get the following: Traceback (most recent call last): File "/usr/sbin/newlist", line 223, in ? main() File "/usr/sbin/newlist", line 171, in main mlist.Create(listname, owner_mail, pw) File "/usr/lib/mailman/Mailman/MailList.py", line 782, in Create Utils.ValidateEmail(admin) File "/usr/lib/mailman/Mailman/Utils.py", line 160, in ValidateEmail realname,str = rfc822.parseaddress(str) AttributeError: 'rfc822' module has no attribute 'parseaddress' python -V returns 2.13 any idea? I've been thru the README.Debian and also been scanning this list for a couple of days. thanks, mike From yusufg at outblaze.com Tue Aug 13 05:52:25 2002 From: yusufg at outblaze.com (Yusuf Goolamabbas) Date: 13 Aug 2002 03:52:25 -0000 Subject: [Mailman-Users] Trying to get mailman to play well with Postfix virtual domains Message-ID: <20020813035225.12001.qmail@yusufg.portal2.com> Hi, I have setup a a mailman (2.1b3) system alongwith with Postfix 1.1.11 The postfix box is configured as follows myhostname = mail.dom1.ain mydomain = dom1.ain myorigin = $myhostname mailman 2.1b3 was setup by default with URLHOST and EMAILHOST = mail1.dom1.ain I then set up a postfix virtual domain in Mailman/mm_cfg.py add_virtualhost('mail2.dom1.ain','mail2.dom1.ain') POSTFIX_STYLE_VIRTUAL_DOMAINS = ['mail2.dom1.ain'] in /etc/postfix/virtual mail2.dom1.ain IGNORE postmaster at mail2.dom1.ain root at localhost virtual_maps = hash:/etc/postfix/virtual hash:/usr/local/site/mailman/data/virtual-mailman Then I tried to create a list 'test at mail2.dom1.ain' via bin/newlist bin/newlist -q test at mail2.dom1.ain root at localhost foobar This creates entries in data/virtual-mailman as well as data/aliases Thus, it seems like I can't create the same list in 2 virtual domains Then I tried to add a member via add_members echo 'postmaster at outblaze.com' | bin/add_members -r - test at mail2.dom1.ain however, Mailman complained that there is no such list test at mail2.dom1.ain. The following works though echo 'postmaster at outblaze.com' | bin/add_members -r - test Is there something I might have missed Regards, Yusuf -- Yusuf Goolamabbas yusufg at outblaze.com From sshultz at mindspring.com Tue Aug 13 07:23:35 2002 From: sshultz at mindspring.com (Steve Shultz ) Date: Mon, 12 Aug 2002 22:23:35 -0700 Subject: [Mailman-Users] Can I pay for Technical support? re: MailMan? Message-ID: <02a401c24289$95f04720$1282010a@STEVE2> We are downloading Mailman on our Linux box. Is there paid technical support available? Who can tell us what the capacity is on a 1-meg. out dsl line---that is, how many, on the average emails can be sent via Mailman? Are there issues with AOL and other ISP's that we must be aware of-- in order not to be labeled as spam? What experts can we consult with? P.S. Can we use two computers and/or two dsl accounts at the same time, to mail to large mailing lists? Will that work? thanks, Steve Shultz Albany, Oregon I have a list that within weeks will go to 75,000 readers twice each day, but sometimes, on certain days, 5-6 times a day. I want to use a dsl line to do it. whattayathink? Steve From wash at wananchi.com Tue Aug 13 07:37:34 2002 From: wash at wananchi.com (Odhiambo Washington) Date: Tue, 13 Aug 2002 08:37:34 +0300 Subject: [Mailman-Users] GID (again but archives don't help) In-Reply-To: <3D57BEBC.2060008@imc.nl> References: <3D57BEBC.2060008@imc.nl> Message-ID: <20020813053734.GE78399@ns2.wananchi.com> * Roelf Schreurs [20020813 00:36]: wrote: > Hi > > I just installed mailman 2.1b3 > > uid=1086(mailman) gid=1086(mailman) groups=1086(mailman) > > ./configure --prefix=/opt/mailman --with-username=1086 --with-groupname=1086 > > su-2.05a$ ls -l > -rwxr-sr-x 1 mailman mailman 18005 Aug 12 15:37 mailman > > : Command died with status 2: "/opt/mailman/mail/mailman > post > mailman". Command output: Failure to exec script. WANTED gid 1086, > GOT gid > 65534. (Reconfigure to take 65534?) > > uid=1001(postfix) gid=1002(postfix) groups=1002(postfix) > running postfix > > I recompiled with gid 65534 but that still didn't work. > Any help please? While I haven't read any postfix related READMEs, all I had to do was just worry about two things, mail-gid and cgi-gid. Now I know just so well that my MTA (Exim) has a gid=6 and apache has a gid=80 so life was simple because I did not want to tweak the rest. So if I were you, I'd use the following (change 6 and 80 to reflect yours). Group ids are listed in /etc/group for the OSes I know ;-) ./configure --prefix=/opt/mailman --with-mail-gid=6 --with-cgi-gid=80 make install cheers - wash +----------------------------------+-----------------------------------------+ Odhiambo Washington, wash at wananchi.com . WANANCHI ONLINE LTD (Nairobi, KE) | http://ns2.wananchi.com/~wash/ . 1ere Etage, Loita Hse, Loita St., | GSM: (254) 722 743 223 . # 10286, 00100 NAIROBI | +---------------------------------+------------------------------------------+ "Oh My God! They killed init! You Bastards!" --from a /. post ++ ``That Ariel Sharon. Boy, he sure is controversial. Most Western countries would have to have a military coup before they enjoyed a leader of that caliber.'' (Sydney Webb) From quantum at sqf-clan.com Tue Aug 13 08:30:00 2002 From: quantum at sqf-clan.com (Wolfram Knipp) Date: Tue, 13 Aug 2002 14:30:00 +0800 Subject: [Mailman-Users] "relaying prohibited by admin" error Message-ID: hi, I've just completed (I think) configuring my mailman.. now, whenever I try send a mail to a list I've created, I get returned this: ----- The following addresses had permanent fatal errors ----- (reason: 550 relaying to prohibited by administrator) ----- Transcript of session follows ----- ... while talking to m1.dnsix.com.: >>> DATA <<< 550 relaying to prohibited by administrator 550 5.1.1 ... User unknown <<< 503 Valid RCPT TO must precede DATA anyone can assist me with this issue? I've done the necessary modifications to the /etc/aliases file after adding the list, and have also run the "newaliases" command. thanks in advance - Wolfram Knipp From mj2 at percomp.de Tue Aug 13 08:30:21 2002 From: mj2 at percomp.de (Matthias =?iso-8859-1?Q?J=E4nichen?=) Date: Tue, 13 Aug 2002 08:30:21 +0200 Subject: [Mailman-Users] "relaying prohibited by admin" error In-Reply-To: Message-ID: <4.3.2.7.2.20020813082951.00c047b0@> At 14:30 13.08.02 +0800, Wolfram Knipp wrote: > > (reason: 550 relaying to prohibited by >administrator) is lists.mydomain.org a different server or just a virtual domain on the same machine? In that case you should add it to the list of localhosts. For Qmail this would be the file /var/qmail/control/rcpthosts try to send to mylist at mydomain.org and get rid of "lists." Reg. From Nigel.Metheringham at dev.InTechnology.co.uk Tue Aug 13 10:29:05 2002 From: Nigel.Metheringham at dev.InTechnology.co.uk (Nigel Metheringham) Date: 13 Aug 2002 09:29:05 +0100 Subject: [Mailman-Users] Wishlist Items In-Reply-To: <3D583D68.7604068F@whidbey.com> References: <006301c23ff4$e9e1e1a0$70646464@rajesh> <200208121716.45225.wolf@wolfstream.net> <3D583D68.7604068F@whidbey.com> Message-ID: <1029227347.13958.3.camel@gaspode.localnet> On Mon, 2002-08-12 at 23:57, G. Armour Van Horn wrote: > Very, very good idea, actually. I certainly know my friends and coworkers well > enough that I wouldn't sign them up for somthing that they wouldn't enjoy or > benefit from. To join relative strangers to the list is obviously a bad idea. But > if the confirmation message included a note *from me*, whom they know, and then > offered them the chance to ignore the message and not subscribe, or to reply to be > subscribed, this would be a good process. Wonderful. So "Wile E Spammer" of "Evil Spammers Incorporated" writes a little script that does an invite subscribe of a few hundred throusand of his "friends" with an invitation note of whatever crap he is sending out this week. Isn't this basically just another form of open relay? Nigel. -- [ Nigel Metheringham Nigel.Metheringham at InTechnology.co.uk ] [ - Comments in this message are my own and not ITO opinion/policy - ] From wolf at wolfstream.net Tue Aug 13 10:31:08 2002 From: wolf at wolfstream.net (Tom Whiting) Date: Tue, 13 Aug 2002 03:31:08 -0500 Subject: [Mailman-Users] Wishlist Items In-Reply-To: <1029227347.13958.3.camel@gaspode.localnet> References: <006301c23ff4$e9e1e1a0$70646464@rajesh> <3D583D68.7604068F@whidbey.com> <1029227347.13958.3.camel@gaspode.localnet> Message-ID: <200208130331.08811.wolf@wolfstream.net> Wooh, hey, yeah, sounds wonderful.. just tell me one thing.. Who's gonna be held responsible? heh On Tuesday 13 August 2002 03:29 am, Nigel Metheringham wrote: > On Mon, 2002-08-12 at 23:57, G. Armour Van Horn wrote: > > Very, very good idea, actually. I certainly know my friends and coworkers > > well enough that I wouldn't sign them up for somthing that they wouldn't > > enjoy or benefit from. To join relative strangers to the list is > > obviously a bad idea. But if the confirmation message included a note > > *from me*, whom they know, and then offered them the chance to ignore the > > message and not subscribe, or to reply to be subscribed, this would be a > > good process. > > Wonderful. > So "Wile E Spammer" of "Evil Spammers Incorporated" writes a little > script that does an invite subscribe of a few hundred throusand of his > "friends" with an invitation note of whatever crap he is sending out > this week. > > Isn't this basically just another form of open relay? > > Nigel. -- ---------------------------------------------------- TJW: Head tech, Dreamless Realms Mud: http://dreamless.wolfstream.net Snippets http://dreamless.wolfstream.net/ Telnet dreamless.wolfstream.net:9275 The OLC Pages http://olc.wolfstream.net ---------------------------------------------------- From claw at kanga.nu Tue Aug 13 10:55:47 2002 From: claw at kanga.nu (J C Lawrence) Date: Tue, 13 Aug 2002 01:55:47 -0700 Subject: [Mailman-Users] Wishlist Items In-Reply-To: Message from "Rajesh Patel" of "Fri, 09 Aug 2002 18:34:12 EDT." <006301c23ff4$e9e1e1a0$70646464@rajesh> References: <006301c23ff4$e9e1e1a0$70646464@rajesh> Message-ID: <11325.1029228947@kanga.nu> On Fri, 9 Aug 2002 18:34:12 -0400 Rajesh Patel wrote: > Last of all I have a general question which I do not see addressed in > the FAQ - how is a request like this handled and is there any feedback > so I can tell if this request is going anywhere anytime soon? This is Open Source. Loosely, there is no process. You either convince others what a wonderful idea it is and get them interested enough to do the work, go do it yourself. -- J C Lawrence ---------(*) Satan, oscillate my metallic sonatas. claw at kanga.nu He lived as a devil, eh? http://www.kanga.nu/~claw/ Evil is a name of a foeman, as I live. From claw at kanga.nu Tue Aug 13 10:56:47 2002 From: claw at kanga.nu (J C Lawrence) Date: Tue, 13 Aug 2002 01:56:47 -0700 Subject: [Mailman-Users] Re: Mailman mailing lists - GNU Project - Free Software Foundation (FSF) In-Reply-To: Message from Chris Winterrowd of "Thu, 08 Aug 2002 14:42:40 CDT." References: Message-ID: <11349.1029229007@kanga.nu> On Thu, 8 Aug 2002 14:42:40 -0500 Chris Winterrowd wrote: > How well does Mailman scale, and what's the largest number of lists > that anyone has reported having? Please see the FAQ: http://www.python.org/cgi-bin/faqw-mm.py You might also look at SourceForge. -- J C Lawrence ---------(*) Satan, oscillate my metallic sonatas. claw at kanga.nu He lived as a devil, eh? http://www.kanga.nu/~claw/ Evil is a name of a foeman, as I live. From claw at kanga.nu Tue Aug 13 10:57:40 2002 From: claw at kanga.nu (J C Lawrence) Date: Tue, 13 Aug 2002 01:57:40 -0700 Subject: [Mailman-Users] subscribe requests In-Reply-To: Message from "zeek" of "Wed, 07 Aug 2002 15:16:21 EDT." References: Message-ID: <11379.1029229060@kanga.nu> On Wed, 7 Aug 2002 15:16:21 -0400 zeek wrote: > Nowhere have I found a way to answer "subscribe" requests > automagically w/Mailman. Does anyone have an add-on or patch for this? That's what the -request address is for. -- J C Lawrence ---------(*) Satan, oscillate my metallic sonatas. claw at kanga.nu He lived as a devil, eh? http://www.kanga.nu/~claw/ Evil is a name of a foeman, as I live. From claw at kanga.nu Tue Aug 13 11:01:39 2002 From: claw at kanga.nu (J C Lawrence) Date: Tue, 13 Aug 2002 02:01:39 -0700 Subject: [Mailman-Users] Can I pay for Technical support? re: MailMan? In-Reply-To: Message from "Steve Shultz " of "Mon, 12 Aug 2002 22:23:35 PDT." <02a401c24289$95f04720$1282010a@STEVE2> References: <02a401c24289$95f04720$1282010a@STEVE2> Message-ID: <11435.1029229299@kanga.nu> On Mon, 12 Aug 2002 22:23:35 -0700 Steve Shultz <" > wrote: > I have a list that within weeks will go to 75,000 readers twice each > day, but sometimes, on certain days, 5-6 times a day. I want to use a > dsl line to do it. whattayathink? Read the FAQ: http://www.python.org/cgi-bin/faqw-mm.py Your numbers are not unreasonable, but you'll need to pay some attention to performance tuning. -- J C Lawrence ---------(*) Satan, oscillate my metallic sonatas. claw at kanga.nu He lived as a devil, eh? http://www.kanga.nu/~claw/ Evil is a name of a foeman, as I live. From tek at linuxdojo.net Tue Aug 13 11:14:59 2002 From: tek at linuxdojo.net (tek) Date: Tue, 13 Aug 2002 01:14:59 -0800 Subject: [Mailman-Users] all mail to lists generates 550 user not found error Message-ID: <20020813091459.M77498@linuxdojo.net> I am missing something here and would totally appreciate anything anyone could point out that i am obviously not seeing or flat out doing incorrectly. I cannot reply to the confirmation emails coming from my installation of Mailman or send mail into to any of my "test" lists. I/everyone get an error 550: user not found everything else is however finally working. here is the configuration im running -- everything is running over SSL connections -- I have Mailman 2.0.9 running on Postfix-20010228-pl08. Linux with Apache 1.3.23 w/OpenSSL 0.9.6c I have multiple virtual domains,(web and mail) all working and are using a /etc/postfix/virtual table. I also have an alias file that is working for postfix taking care of mapping virtual users to local and nonlocal users. when i create a test list called foobar i add the following to my working /etc/postfix/aliases -----------------snip------------------- ##next list also just for testing purposes foobar: "|/var/www/html/mailman/mail/wrapper post foobar" foobar-admin: "|/var/www/html/mailman/mail/wrapper mailowner foobar" foobar-request: "|/var/www/html/mailman/mail/wrapper mailcmd foobar" foobar-owner: foobar-admin -----------------snip------------------- ***i am running everything out of /var/www/html/mailman cause of security restrictions on the home directories.*** afterwhich i run postalias /etc/postfix/aliases running postconf -n shows ----------/start/------------ [postfix at mail scripts]$ postconf -n alias_maps = hash:/etc/postfix/aliases canonical_maps = hash:/etc/postfix/canonical command_directory = /usr/sbin daemon_directory = /usr/lib/postfix debug_peer_level = 2 default_privs = nobody delay_warning_time = 4 inet_interfaces = all local_recipient_maps = $alias_maps unix:passwd.byname mail_owner = postfix mail_spool_directory = /var/spool/mail mailbox_command = /usr/bin/procmail -Y -a $DOMAIN masquerade_domains = $mydomain mydestination = $myhostname, localhost.$mydomain, $mydomain myhostname = mail.my_real_domainname_was_here.com myorigin = $mydomain queue_directory = /var/spool/postfix smtpd_banner = $myhostname ESMTP $mail_name (Spammers not welcome) smtpd_helo_required = yes smtpd_recipient_restrictions = reject_invalid_hostname, permit_mynetworks, reject_non_fqdn_recipient, check_client_access hash:/etc/postfix/pop-before-smtp, check_relay_domains alias_maps = hash:/etc/postfix/aliases virtual_maps = hash:/etc/postfix/virtual ------------/end/------------- when i add -v to smtpd in master.cf it appears postfix is checking my /etc/postfix/aliases table but is not able to find boofar-request hence the 550 error. so can someone/ANYONE turn on the light and tell me what the hell im overlooking? --standing by, waiting to feel stupid-- TIA Tnt --standing by, waiting to feel stupid-- --------------------------------------- -- Open WebMail Project (http://openwebmail.org) From barry at python.org Tue Aug 13 14:33:49 2002 From: barry at python.org (Barry A. Warsaw) Date: Tue, 13 Aug 2002 08:33:49 -0400 Subject: [Mailman-Users] newlist.py error after a debian install References: <0H0R005JRC3F4K@mtaout06.icomcast.net> Message-ID: <15704.64685.389589.660863@anthem.wooz.org> >>>>> "bear" == writes: bear> I used apt-get to install mailman (2.0.12-2) and when I run bear> newlist I get the following: Looks like there's some custom stuff in that package, because that code doesn't show up at all in the source for ValidateEmail() in Mailman/Utils.py: def ValidateEmail(str): """Verify that the an email address isn't grossly invalid.""" # Pretty minimal, cheesy check. We could do better... if not str: raise Errors.MMBadEmailError if _badchars.search(str) or str[0] == '-': raise Errors.MMHostileAddress if string.find(str, '/') <> -1 and \ os.path.isdir(os.path.split(str)[0]): # then raise Errors.MMHostileAddress user, domain_parts = ParseEmail(str) # this means local, unqualified addresses, are no allowed if not domain_parts: raise Errors.MMBadEmailError if len(domain_parts) < 2: raise Errors.MMBadEmailError I have no idea where that code's coming from. -Barry From cprg at cprg.net Tue Aug 13 14:54:30 2002 From: cprg at cprg.net (Support Desk) Date: Tue, 13 Aug 2002 08:54:30 -0400 Subject: [Mailman-Users] Can I pay for Technical support? re: MailMan? References: <02a401c24289$95f04720$1282010a@STEVE2> Message-ID: <019b01c242c8$9158bf00$0100007f@vineln01.nj.comcast.net> Ha, ha.. This is open source, not microsloth, there is no "paid" support option.. Personally, I find DSL and Cable lines too unreliable. The only "paid" support you can get for Mailman is by hosting your site on one of the thousands of real full time hosting providers who offer Mailman as part of their hosting packages. Many offer accounts for only a few dollars per month, with 99% + uptime. "Access" providers, who "give" you free space with your account, do not guarantee uptime, their "hosted" sites are generally slow, because 98% of their bandwidth is dedicated to "access" not "hosting" . A search for "host mailman" on Google will give you hundreds of hits of hosts that have Mailman installed. SD ----- Original Message ----- From: "Steve Shultz " To: Sent: Tuesday, August 13, 2002 1:23 AM Subject: [Mailman-Users] Can I pay for Technical support? re: MailMan? | We are downloading Mailman on our Linux box. Is there paid technical | support available? | | Who can tell us what the capacity is on a 1-meg. out dsl line---that is, | how many, on the average emails can be sent via Mailman? | | Are there issues with AOL and other ISP's that we must be aware of-- in | order not to be labeled as spam? | | What experts can we consult with? | | P.S. Can we use two computers and/or two dsl accounts at the same time, | to mail to large mailing lists? Will that work? | | thanks, | | Steve Shultz | Albany, Oregon | | I have a list that within weeks will go to 75,000 readers twice each | day, but sometimes, on certain days, 5-6 times a day. I want to use a | dsl line to do it. whattayathink? | | Steve | | | ------------------------------------------------------ | Mailman-Users mailing list | Mailman-Users at python.org | 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/ | | From dbasener at aurora.edu Tue Aug 13 15:17:13 2002 From: dbasener at aurora.edu (Dave Basener) Date: 13 Aug 2002 08:17:13 -0500 Subject: [Mailman-Users] Can I pay for Technical support? re: MailMan? In-Reply-To: <019b01c242c8$9158bf00$0100007f@vineln01.nj.comcast.net> References: <02a401c24289$95f04720$1282010a@STEVE2> <019b01c242c8$9158bf00$0100007f@vineln01.nj.comcast.net> Message-ID: <1029244638.29166.180.camel@virtNotos> To risk sliding into an OT area, it is not unreasonable for someone to offer to pay for support for an open source product. Certainly nothing in the GPL prevents taking payment to provide support for a GPL product. There are even some firms out there that are traded on the NYSE whose business is based nearly entirely on that concept. Dave Basener On Tue, 2002-08-13 at 07:54, Support Desk wrote: > > Ha, ha.. This is open source, not microsloth, there is > no "paid" support option.. > > SD > > ----- Original Message ----- > From: "Steve Shultz " > To: > Sent: Tuesday, August 13, 2002 1:23 AM > Subject: [Mailman-Users] Can I pay for Technical support? re: MailMan? > > > | We are downloading Mailman on our Linux box. Is there paid technical > | support available? > | > | Steve Shultz > | Albany, Oregon From jonc at haht.com Tue Aug 13 16:36:23 2002 From: jonc at haht.com (Jon Carnes) Date: Tue, 13 Aug 2002 10:36:23 -0400 Subject: [Mailman-Users] Can I pay for Technical support? re: MailMan? In-Reply-To: <1029244638.29166.180.camel@virtNotos> Message-ID: <000001c242d6$ccbfed80$0b04010a@JCARNES> There are a lot of excellent consultants that do Mailman support. If you need some contacts, let me know and I'll get you in touch a with a few. Jon Carnes -----Original Message----- From: Dave Basener [mailto:dbasener at aurora.edu] Sent: Tuesday, August 13, 2002 9:17 AM To: Support Desk Cc: Steve Shultz; mailman-users at python.org Subject: Re: [Mailman-Users] Can I pay for Technical support? re: MailMan? To risk sliding into an OT area, it is not unreasonable for someone to offer to pay for support for an open source product. Certainly nothing in the GPL prevents taking payment to provide support for a GPL product. There are even some firms out there that are traded on the NYSE whose business is based nearly entirely on that concept. Dave Basener On Tue, 2002-08-13 at 07:54, Support Desk wrote: > > Ha, ha.. This is open source, not microsloth, there is > no "paid" support option.. > > SD > > ----- Original Message ----- > From: "Steve Shultz " > To: > Sent: Tuesday, August 13, 2002 1:23 AM > Subject: [Mailman-Users] Can I pay for Technical support? re: MailMan? > > > | We are downloading Mailman on our Linux box. Is there paid technical > | support available? > | > | Steve Shultz > | Albany, Oregon From cprg at cprg.net Tue Aug 13 15:58:39 2002 From: cprg at cprg.net (Support Desk) Date: Tue, 13 Aug 2002 09:58:39 -0400 Subject: [Mailman-Users] Can I pay for Technical support? re: MailMan? References: <02a401c24289$95f04720$1282010a@STEVE2> <019b01c242c8$9158bf00$0100007f@vineln01.nj.comcast.net> <1029244638.29166.180.camel@virtNotos> Message-ID: <000d01c242d1$87816f00$0100007f@vineln01.nj.comcast.net> No insinuation was made, that GPL "prevents" paid support. There are hundreds, probably thousands of companies world wide, whether on the NYSE, or small business operators, who host sites & already have Mailman installed. Anyone who thinks they can "host" from their basement, using DSL or Cable, is sadly misinformed, when for a couple dollars a week, they can obtain 100Mb or more, and run Mailman and a dozen other software packages, host their site, email, etc, and receive "support" from the hosting provider. Compared to "paid" support from the big guys, which can be $25 or more "per incident" it's more reasonable than attempting a do it yourself project using a slow, unreliable connection. Anyone willing to pay for support, should get their full money's worth, and receive a reliable connection, bandwidth, space, software, etc. SD ----- Original Message ----- From: "Dave Basener" Subject: Re: [Mailman-Users] Can I pay for Technical support? re: MailMan? | To risk sliding into an OT area, it is not unreasonable for someone to | offer to pay for support for an open source product. Certainly nothing | in the GPL prevents taking payment to provide support for a GPL | product. There are even some firms out there that are traded on the | NYSE whose business is based nearly entirely on that concept. | | Dave Basener | | On Tue, 2002-08-13 at 07:54, Support Desk wrote: | > | > Ha, ha.. This is open source, not microsloth, there is | > no "paid" support option.. | > | > SD | > | > ----- Original Message ----- | > From: "Steve Shultz " | > To: | > Sent: Tuesday, August 13, 2002 1:23 AM | > Subject: [Mailman-Users] Can I pay for Technical support? re: MailMan? | > | > | > | We are downloading Mailman on our Linux box. Is there paid technical | > | support available? | > | | > | Steve Shultz | > | Albany, Oregon | | | | | From chuqui at plaidworks.com Tue Aug 13 17:19:52 2002 From: chuqui at plaidworks.com (Chuq Von Rospach) Date: Tue, 13 Aug 2002 08:19:52 -0700 Subject: [Mailman-Users] Can I pay for Technical support? re: MailMan? In-Reply-To: <019b01c242c8$9158bf00$0100007f@vineln01.nj.comcast.net> Message-ID: On 8/13/02 5:54 AM, "Support Desk" wrote: > > Ha, ha.. This is open source, not microsloth, there is > no "paid" support option.. > > Personally, I find DSL and Cable lines too unreliable. Funny, I've been running my stuff on DSL since about 1998, and before that on a leased line into the house (back to 1995 or so), and I find it perfectly reliable enough. Although I always find people telling my my setup won't work fascinating... (grin) -- Chuq Von Rospach, Architech chuqui at plaidworks.com -- http://www.chuqui.com/ Stress is when you wake up screaming and you realize you haven't fallen asleep yet. From chuqui at plaidworks.com Tue Aug 13 17:17:48 2002 From: chuqui at plaidworks.com (Chuq Von Rospach) Date: Tue, 13 Aug 2002 08:17:48 -0700 Subject: [Mailman-Users] Wishlist Items In-Reply-To: <1029227347.13958.3.camel@gaspode.localnet> Message-ID: On 8/13/02 1:29 AM, "Nigel Metheringham" wrote: > So "Wile E Spammer" of "Evil Spammers Incorporated" writes a little > script that does an invite subscribe of a few hundred throusand of his > "friends" with an invitation note of whatever crap he is sending out > this week. > > Isn't this basically just another form of open relay? Not necessarily, but... Most web sites now have some form of forward to a friend capability. I'm working on implementing one now for a project. If you do it carefully, you can avoid putting yourself open to abuse. If you don't.... The intent is okay. The original request put it too far into the approval chain, though. Some way of letting a person know about the list is good. Signing them up isn't. Building your setup so it can be hijacked is really bad. -- Chuq Von Rospach, Architech chuqui at plaidworks.com -- http://www.chuqui.com/ He doesn't have ulcers, but he's a carrier. From chuqui at plaidworks.com Tue Aug 13 17:24:01 2002 From: chuqui at plaidworks.com (Chuq Von Rospach) Date: Tue, 13 Aug 2002 08:24:01 -0700 Subject: [Mailman-Users] Can I pay for Technical support? re: MailMan? In-Reply-To: <000d01c242d1$87816f00$0100007f@vineln01.nj.comcast.net> Message-ID: On 8/13/02 6:58 AM, "Support Desk" wrote: > Anyone > who thinks they can "host" from their basement, using DSL > or Cable, is sadly misinformed, Okay, I've been doing exactly that (well, back room, not basement) since 1995. How am I badly misinformed? I mean, it works fine. I've been slashdotted multiple times and my server doesn't implode, unlike many others. Frankly, I don't think you have a clue here. I'm DOING IT. Have been for years. So why don't I have a clue? And you do? -- Chuq Von Rospach, Architech chuqui at plaidworks.com -- http://www.chuqui.com/ He doesn't have ulcers, but he's a carrier. From ler at lerctr.org Tue Aug 13 17:25:35 2002 From: ler at lerctr.org (Larry Rosenman) Date: 13 Aug 2002 10:25:35 -0500 Subject: [Mailman-Users] Can I pay for Technical support? re: MailMan? In-Reply-To: References: Message-ID: <1029252336.416.14.camel@lerlaptop.iadfw.net> On Tue, 2002-08-13 at 10:19, Chuq Von Rospach wrote: > On 8/13/02 5:54 AM, "Support Desk" wrote: > > > > > Ha, ha.. This is open source, not microsloth, there is > > no "paid" support option.. > > > > Personally, I find DSL and Cable lines too unreliable. > > Funny, I've been running my stuff on DSL since about 1998, and before that > on a leased line into the house (back to 1995 or so), and I find it > perfectly reliable enough. > > Although I always find people telling my my setup won't work fascinating... > (grin) Same here. I was the **FIRST** DSL loop installed in my city, (I worked and still work for an ISP). I run a bunch of lists, and mail<->news stuff for friends. DSL works VERY well. -- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 972-414-9812 E-Mail: ler at lerctr.org US Mail: 1905 Steamboat Springs Drive, Garland, TX 75044-6749 From irwin at taranto.com Tue Aug 13 17:35:25 2002 From: irwin at taranto.com (irwin) Date: Tue, 13 Aug 2002 08:35:25 -0700 Subject: [Mailman-Users] Can I pay for Technical support? re: MailMan? In-Reply-To: References: Message-ID: <200208131535.g7DFZPm06629@taranto.com> On Tuesday 13 August 2002 08:24 am, Chuq Von Rospach wrote: > On 8/13/02 6:58 AM, "Support Desk" wrote: > > Anyone > > who thinks they can "host" from their basement, using DSL > > or Cable, is sadly misinformed, > > Okay, I've been doing exactly that (well, back room, not basement) since > 1995. How am I badly misinformed? I mean, it works fine. I've been > slashdotted multiple times and my server doesn't implode, unlike many > others. > > Frankly, I don't think you have a clue here. I'm DOING IT. Have been for > years. So why don't I have a clue? And you do? And you're not alone. I'm sure their are many of us enjoying our reliable DSL connections and running servers with multiple nodes, static IP's, and multiple domains. Irwin From chuqui at plaidworks.com Tue Aug 13 17:22:37 2002 From: chuqui at plaidworks.com (Chuq Von Rospach) Date: Tue, 13 Aug 2002 08:22:37 -0700 Subject: [Mailman-Users] Can I pay for Technical support? re: MailMan? In-Reply-To: <1029244638.29166.180.camel@virtNotos> Message-ID: On 8/13/02 6:17 AM, "Dave Basener" wrote: > To risk sliding into an OT area, it is not unreasonable for someone to > offer to pay for support for an open source product. Just as an aside.... This was a message that went into the mailman-users hold queue. As keeper of the queue, I approved it onto the list. Why? Because while there are no formal tech support options for mailman, there ARE a number of people on this list who can and do consulting on mailman. So all of you telling us support doesn't exist? You're wrong, and I wish you'd be quiet. There are people on this list who might be interested and willing to take on the job (that's the OTHER side of open source. There may not be a tech support crew, but there's usually a guy who'll contract on a case by case basis), and I wish you all would be a little slower at trying to define reality here. Especially since you're wrong. Chuq -- Chuq Von Rospach, Architech chuqui at plaidworks.com -- http://www.chuqui.com/ Very funny, Scotty. Now beam my clothes down here, will you? From mark at name-services.us Tue Aug 13 17:47:53 2002 From: mark at name-services.us (Mark Paterson) Date: Tue, 13 Aug 2002 10:47:53 -0500 Subject: [Mailman-Users] (no subject) Message-ID: <200208131547.g7DFlrv14306@www.name-services.us> I'm a newbi to mailman and have run into a problem when I try to send mail to my test list. I have run through the setup line by line but I get the following error listed below. This mail just sits in the mail queue. Has anyone run into this problem before or know what I might me doing wrong? I'm running RH7.2 Thanks in advance, -Mark Forcing the attempted delivery of mail with the command /usr/lib/sendmail -v -q .. Running /var/spool/mqueue/g7DFXPd14087 (sequence 1 of 1) "|/home/mailman/mail/wrapper post nsadmin"... Connecting to prog... Operating system error From irwin at taranto.com Tue Aug 13 18:05:00 2002 From: irwin at taranto.com (irwin) Date: Tue, 13 Aug 2002 09:05:00 -0700 Subject: [Mailman-Users] (no subject) In-Reply-To: <200208131547.g7DFlrv14306@www.name-services.us> References: <200208131547.g7DFlrv14306@www.name-services.us> Message-ID: <200208131605.g7DG51d06843@taranto.com> On Tuesday 13 August 2002 08:47 am, Mark Paterson wrote: > I'm a newbi to mailman and have run into a problem when I try to send mail > to my test list. I have run through the setup line by line but I get the > following error listed below. This mail just sits in the mail queue. Has > anyone run into this problem before or know what I might me doing wrong? > I'm running RH7.2 > > Thanks in advance, > -Mark Check two items. First, the cron file and secondly, RH7.2 uses a smrsh directory so instead of: nsadmin: "|/home/mailman/mail/wrapper post nsadmin" in your /etc/aliases file, you need nsadmin: |nsadmin in your aliases file, and in a file in the /etc/smrsh directory named "nsadmin" (without the quotes) with permissions 755 |/home/mailman/mail/wrapper post nsadmin Irwin > Forcing the attempted delivery of mail with the command /usr/lib/sendmail > -v -q .. > > > Running /var/spool/mqueue/g7DFXPd14087 (sequence 1 of 1) > "|/home/mailman/mail/wrapper post nsadmin"... Connecting to prog... > Operating system error From claw at kanga.nu Tue Aug 13 18:29:13 2002 From: claw at kanga.nu (J C Lawrence) Date: Tue, 13 Aug 2002 09:29:13 -0700 Subject: [Mailman-Users] Can I pay for Technical support? re: MailMan? In-Reply-To: Message from "Support Desk" of "Tue, 13 Aug 2002 08:54:30 EDT." <019b01c242c8$9158bf00$0100007f@vineln01.nj.comcast.net> References: <02a401c24289$95f04720$1282010a@STEVE2> <019b01c242c8$9158bf00$0100007f@vineln01.nj.comcast.net> Message-ID: <15273.1029256153@kanga.nu> On Tue, 13 Aug 2002 08:54:30 -0400 Support Desk wrote: > Ha, ha.. This is open source, not microsloth, there is no "paid" > support option.. In fact there are (or were) several people on this list who do offer Mailman installation and configuration support for a fee. I don't know if any replied to the original poster, but there's definitely a population out there. Heck, I've entertained doing it myself...except I'm swamped in a tiny startup. -- J C Lawrence ---------(*) Satan, oscillate my metallic sonatas. claw at kanga.nu He lived as a devil, eh? http://www.kanga.nu/~claw/ Evil is a name of a foeman, as I live. From claw at kanga.nu Tue Aug 13 18:38:38 2002 From: claw at kanga.nu (J C Lawrence) Date: Tue, 13 Aug 2002 09:38:38 -0700 Subject: [Mailman-Users] Can I pay for Technical support? re: MailMan? In-Reply-To: Message from "Support Desk" of "Tue, 13 Aug 2002 09:58:39 EDT." <000d01c242d1$87816f00$0100007f@vineln01.nj.comcast.net> References: <02a401c24289$95f04720$1282010a@STEVE2> <019b01c242c8$9158bf00$0100007f@vineln01.nj.comcast.net> <1029244638.29166.180.camel@virtNotos> <000d01c242d1$87816f00$0100007f@vineln01.nj.comcast.net> Message-ID: <15393.1029256718@kanga.nu> On Tue, 13 Aug 2002 09:58:39 -0400 Support Desk wrote: > Anyone who thinks they can "host" from their basement, using DSL or > Cable, is sadly misinformed... Simply, you are mistaken. > ... when for a couple dollars a week, they can obtain 100Mb or more, > and run Mailman and a dozen other software packages, host their site, > email, etc, and receive "support" from the hosting provider. There are other advantages to having local hardware access to and software control of the system. > Compared to "paid" support from the big guys, which can be $25 or more > "per incident" it's more reasonable than attempting a do it yourself > project using a slow, unreliable connection. One of my DSL accounts is 3Mps symmetric (actually a bonded pair of 1.5Mbps SDSL lines). That's a fair bit larger than your average T1 (with only marginally higher latency to boot). Downtime on that account in the last calendar year has been ~20 minutes for known, predicted, pre-announced maintenance cycles with no unpredicted unannounced down periods. > Anyone willing to pay for support, should get their full money's > worth, and receive a reliable connection, bandwidth, space, software, > etc. None of which contradicts hosting your own services on a DSL connection. Yes, there are many poorly run and maintained DSL services out there. There are also well run, tightly controlled, high quality DSL services out there. Of course the latter (from the ISP side) almost never coincide with the ILECs. -- J C Lawrence ---------(*) Satan, oscillate my metallic sonatas. claw at kanga.nu He lived as a devil, eh? http://www.kanga.nu/~claw/ Evil is a name of a foeman, as I live. From support at iquest.ucsb.edu Tue Aug 13 19:10:01 2002 From: support at iquest.ucsb.edu (Jose Guevarra) Date: 13 Aug 2002 10:10:01 -0700 Subject: [Mailman-Users] Failure to exec script. WANTED gid 0, GOT gid 12. (Reconfigure to take 12?) In-Reply-To: <200208121612.17462.wolf@wolfstream.net> References: <1029184111.2740.40.camel@chirpy-boy.iquest.ucsb.edu> <200208121612.17462.wolf@wolfstream.net> Message-ID: <1029258606.1814.6.camel@cvd-bs3-8.linkline.com> I did modify those options. sendmail deamon is running as root and apache is running as nobody. so $>./configure --with-mail-gid=root --with-cgi-gid=nobody The error is complaining that it wanted gid 0 (root) but got gid 12 (mail) so I recompiled from scratch w/ --with-mail-gid=mail Then test it. I get a subscription email, i reply, but don't get a confirmation reply. I have that option set for this list as well. Am i misinterpreting what it means by --with-mail/cgi-gid???? thanx, On Mon, 2002-08-12 at 14:12, Tom Whiting wrote: > On Monday 12 August 2002 03:28 pm, Support wrote: > > > > ----- Transcript of session follows ----- > > Failure to exec script. WANTED gid 0, GOT gid 12. (Reconfigure to take > > 12?) > > 554 5.3.0 unknown mailer error 2 > > > Imagine that, it even told you how to fix the error. > Try reading docs next time before you send mails to the list eh? > " > TAKE SPECIAL NOTE OF THE --with-mail-gid AND --with-cgi-gid > OPTIONS BELOW. YOU WILL PROBABLY NEED TO USE THESE! > " > So, reconfigure with the correct gid. > > ---------------------------------------------------- > TJW: Head tech, Dreamless Realms > Mud: http://dreamless.wolfstream.net > Snippets http://dreamless.wolfstream.net/ > Telnet dreamless.wolfstream.net:9275 > The OLC Pages http://olc.wolfstream.net > ---------------------------------------------------- From nathan at lakesidepress.org Tue Aug 13 19:14:37 2002 From: nathan at lakesidepress.org (Nathan A. McQuillen) Date: Tue, 13 Aug 2002 12:14:37 -0500 Subject: [Mailman-Users] Can I pay for Technical support? re: MailMan? In-Reply-To: <019b01c242c8$9158bf00$0100007f@vineln01.nj.comcast.net> Message-ID: Re. Paying for tech support: good idea, IMHO. If most of the money in the industry went to pay individuals for their skills working with open source software, rather than to pay monster corporations for the licensing rights to proprietary code, I think we'd live in a far better world. My advice is, though, keep it personal and local: find a local CS/ECE student (or grad) with good 'nix skills and pay her well, give her a good reference and a great title, in exchange for doing your Mailman support. It's a tough job market right now, and personal client/consultant relationships are critical. Doing so, you'd also give someone else a hand up and a chance to learn something dull and practical while still in school. It sounds like you don't need an all-round consultant, you need someone willing to work closely with your needs, to be flexible and responsive, and to show you how to do what they do. In my experience, the best way to find all this is, sadly enough, to get someone who isn't in the industry at all. Student or not, dealing with a self-employed consultant will likely get you more personal service, more creative problem solving, and much better rates than you would with a professional consulting agency, much of whose income and resources go into self-promotion, image, certification programs, and salaries for managers and owners. Plus, you won't have to deal with hold times, rigid managers, and otherwise decent people looking uncomfortable in business suits. And, finally, you'll know that every dollar you're paying is going right to the person doing the work, not to some greedy desk jockey in management. My experiences with the level of support one gets for "a few dollars a month" from hosting services have been, well, unmentionable. Perhaps if your idea of "a few" runs into the hundreds, you might get personal service above and beyond a sullen "RTFM", or a couple lines of incoherent email, but... yeah. As far as running that level of traffic over DSL, I've gotta say, I'm with Chuq (see caveat below); not to wax paranoid, but I wonder if our four-legged friend Mr./Ms. Desk may have vested interests in discouraging do-it-yourself hosting. (What kind of desk is s/he? Laminate? Oak? One of those military green steel numbers? Drawers or shelves? Inkwell?) Support desks are often found at hosting providers -- equal-furniture employers, I hear. Though they seldom get to chair the meetings. Anyway. Within reason, I think the potential tradeoff in speed with DSL or what have you is usually well worth the many advantages of having your box on hand where you can mess with it, know that it's getting backed up, upgrade it when it needs upgrading, and get console access even if the Net is acting snaky. Of course, this assumes that you don't have jerky DSL providers that withhold static IPs, cap your upstream speed, massively oversell their lines, etcetera. At the very least, I'd ask for client references from whatever providers you're considering. I've hosted many a site over cable and DSL, and am now looking into networking my block with HPNA, to share an sDSL line (soon a T1). We currently have 18 domains hosted locally over one 384k sDSL line and nobody's complained about speed. (Well, my main server's getting a bit overloaded -- maybe I'll have to turn off PHP parsing of all .html files ;) -- but the line speed is fine.) If worse comes to worst, you can always go the hosting provider route, but it doesn't seem that sensible to me, especially when so many providers are still in the process of consolidating, downsizing and just plain vanishing. - Nathan On 8/13/02 7:54 AM, "Support Desk" wrote: > Personally, I find DSL and Cable lines too unreliable. > The only "paid" support you can get for Mailman is by > hosting your site on one of the thousands of real > full time hosting providers who offer Mailman as part > of their hosting packages. Many offer accounts for > only a few dollars per month, with 99% + uptime. From tim at robnett.net Tue Aug 13 19:20:42 2002 From: tim at robnett.net (Timothy R. Robnett) Date: Tue, 13 Aug 2002 10:20:42 -0700 Subject: [Mailman-Users] mm_cfg.py doesn't appear to be working Message-ID: <20020813172042.GW31652@polycarp.robnett.net> I installed MM yesterday and got it working. However changes added to mm_cfg.py do not appear to have any effect. However if I break the rules and change Defaults.py it does have the desired effect. bin/check_perms reports that everything is fine. A search of the archives didn't yield any leads. Any other ideas? TIA -- Regards, Timothy R. Robnett mailto:tim at robnett.net http://www.robnett.net/~tim/ "To be prepared for War is one of the most effectual means of preserving peace." George Washington From chuqui at plaidworks.com Tue Aug 13 19:30:12 2002 From: chuqui at plaidworks.com (Chuq Von Rospach) Date: Tue, 13 Aug 2002 10:30:12 -0700 Subject: [Mailman-Users] Can I pay for Technical support? re: MailMan? In-Reply-To: Message-ID: On 8/13/02 10:14 AM, "Nathan A. McQuillen" wrote: > Of course, this assumes that you don't have jerky DSL providers that > withhold static IPs, cap your upstream speed, massively oversell their > lines, etcetera. At the very least, I'd ask for client references from > whatever providers you're considering. In all honesty? While there are idiot ISPs out there, most of these complaints seem to come from people trying to grab $30/mo client accounts and magically turn them into SOHO-type networks where they weren't designed to be used for that, are probably violating their ISP's EULA, and then kvetch when it doesn't work, they get caught, or the ISP closes the network loopholes they were taking advantage of. It's most times not idiot ISPs, but users trying to get away with not paying for the services they want to use. Me, I've ALWAYS bought a SOHO-style network, where my ISP knows I'm running servers and I'm not in violation of my EULA and hoping to not get caught. It costs somewhat more, but it's legal. (in fact, my first ISP, back in 1995, I had to teach them how to set up their system to ALLOW my server to be a mail server, since they'd never had that situation before... Grin) I've found if you actually pay for the type of service you're trying to use, these problems magically go away..... -- Chuq Von Rospach, Architech chuqui at plaidworks.com -- http://www.chuqui.com/ No! No! Dead girl, OFF the table! -- Shrek From tim at robnett.net Tue Aug 13 19:56:21 2002 From: tim at robnett.net (Timothy R. Robnett) Date: Tue, 13 Aug 2002 10:56:21 -0700 Subject: [Mailman-Users] mm_cfg.py doesn't appear to be working In-Reply-To: <5.1.1.6.0.20020813104411.00a72650@rlw.best.vwh.net> References: <20020813172042.GW31652@polycarp.robnett.net> <5.1.1.6.0.20020813104411.00a72650@rlw.best.vwh.net> Message-ID: <20020813175621.GF10889@polycarp.robnett.net> On Tue Aug 13, 2002 at 10:45:19AM -0700, Bob Weissman wrote: > At 10:20 AM 8/13/02, you wrote: > >I installed MM yesterday and got it working. However changes added to > >mm_cfg.py do not appear to have any effect. However if I break the rules > >and change Defaults.py it does have the desired effect. bin/check_perms > >reports that everything is fine. > > > >A search of the archives didn't yield any leads. Any other ideas? TIA > > > Did you make sure to put your changes AFTER the "from Defaults import *" line in mm_cfg.py? Yes it does appear after the import line. Here is a cut from my mm_cfg.py ******** from Defaults import * ################################################## # Put YOUR site-specific settings below this line. DEFAULT_URL = 'https://www.robnett.net/mailman/' DEFAULT_MSG_FOOTER = """ """ ******** Any other thoughts? -- Regards, Timothy R. Robnett mailto:tim at robnett.net http://www.robnett.net/~tim/ "Courage and perseverance have a magical talisman, before which difficulties disappear and obstacles vanish into air." John Quincy Adams From R.Barrett at ftel.co.uk Tue Aug 13 20:43:42 2002 From: R.Barrett at ftel.co.uk (Richard Barrett) Date: Tue, 13 Aug 2002 19:43:42 +0100 Subject: [Mailman-Users] mm_cfg.py doesn't appear to be working In-Reply-To: <20020813175621.GF10889@polycarp.robnett.net> References: <5.1.1.6.0.20020813104411.00a72650@rlw.best.vwh.net> <20020813172042.GW31652@polycarp.robnett.net> <5.1.1.6.0.20020813104411.00a72650@rlw.best.vwh.net> Message-ID: <5.1.0.14.2.20020813192242.0483b0a0@pop.ftel.co.uk> At 10:56 13/08/2002 -0700, Timothy R. Robnett wrote: >On Tue Aug 13, 2002 at 10:45:19AM -0700, Bob Weissman wrote: > > At 10:20 AM 8/13/02, you wrote: > > >I installed MM yesterday and got it working. However changes added to > > >mm_cfg.py do not appear to have any effect. However if I break the rules > > >and change Defaults.py it does have the desired effect. bin/check_perms > > >reports that everything is fine. > > > > > >A search of the archives didn't yield any leads. Any other ideas? TIA > > > > > > Did you make sure to put your changes AFTER the "from Defaults import > *" line in mm_cfg.py? > >Yes it does appear after the import line. Here is a cut from my mm_cfg.py > >******** >from Defaults import * > >################################################## ># Put YOUR site-specific settings below this line. >DEFAULT_URL = 'https://www.robnett.net/mailman/' >DEFAULT_MSG_FOOTER = """ """ >******** > >Any other thoughts? A couple of thoughts: 1. Some list attributes are initially set from mm_cfg.py configuration variables ONLY when the list is created. Subsequent changes to those defaults aren't propagated automatically into these per list attributes. DEFAULT_URL is an example. However, a list's URL can be changed (carefully) through the web admin GUI with MM 2.0.x or with bin/fix_url.py with MM 2.1. 2. Some defaults (call them secondary) in Defaults.py are defined in terms of other defaults (call them primary) defined higher up the source of Defaults.py. If you change the value of a primary default in mm_cfg.py you will not automatically change the value of those secondary defaults that depended on that redefined primary default; by the time mm_cfg.py is being processed the value of the secondary defaults has already been assigned. You must also redefine those secondary defaults in mm_cfg.py below the redefinition of the primary they depended on; just copy the line that set the secondary default from Defaults.py to mm_cfg.py and when it is processed it will pick up the revised value it depends upon. fyi: all the Mailman code imports mm_cfg.py which in turn imports Defaults.py. Hence the definitions in mm_cfg.py are evaluated following evaluation of Defaults. py. Values assigned in Defaults.py are re-evaluated after mm_cfg.py is processed by Python. If changing it in Defaults.py works and changing it in mm_cfg.py does not then I reckon you've got problem 2 above. From vanhorn at whidbey.com Tue Aug 13 20:47:01 2002 From: vanhorn at whidbey.com (G. Armour Van Horn) Date: Tue, 13 Aug 2002 11:47:01 -0700 Subject: [Mailman-Users] Can I pay for Technical support? re: MailMan? References: Message-ID: <3D595425.99617469@whidbey.com> Yeah, I have my Mailman machine, along with three webservers and my private home network, on a DSL line, and I don't think the proposed mail volume would be any problem on his DSL line, which is faster than my 768K/768K line here. In two years I've had two outages. One was resolved by updating the firmware in the router, the other was 14 hours but was a problem with a Cisco firmware upgrade at the telco end and it took out every static-IP install in the system. Total of 16 hours in two years! I did give the guy my hourly rate for help, I think there are quite a few of us who could help him get started down the right track with just a couple of hours of work. For some, just having a phone number is a lot more comforting than relying on a mailing list. Having a range of options in this regard will make it a lot easier for OpenSource products to grow out there. Van Chuq Von Rospach wrote: > On 8/13/02 5:54 AM, "Support Desk" wrote: > > > > > Ha, ha.. This is open source, not microsloth, there is > > no "paid" support option.. > > > > Personally, I find DSL and Cable lines too unreliable. > > Funny, I've been running my stuff on DSL since about 1998, and before that > on a leased line into the house (back to 1995 or so), and I find it > perfectly reliable enough. > > Although I always find people telling my my setup won't work fascinating... > (grin) > > -- > Chuq Von Rospach, Architech > chuqui at plaidworks.com -- http://www.chuqui.com/ > > Stress is when you wake up screaming and you realize you haven't fallen > asleep yet. > > ------------------------------------------------------ > Mailman-Users mailing list > Mailman-Users at python.org > 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/ -- ---------------------------------------------------------- Sign up now for Quotes of the Day, a handful of quotations on a theme delivered every morning. Enlightenment! Daily, for free! mailto:twisted at whidbey.com?subject=Subscribe_QOTD For web hosting and maintenance, visit Van's home page: http://www.domainvanhorn.com/van/ ---------------------------------------------------------- From tim at robnett.net Tue Aug 13 20:52:05 2002 From: tim at robnett.net (Timothy R. Robnett) Date: Tue, 13 Aug 2002 11:52:05 -0700 Subject: [Mailman-Users] mm_cfg.py doesn't appear to be working In-Reply-To: <5.1.0.14.2.20020813192242.0483b0a0@pop.ftel.co.uk> References: <5.1.1.6.0.20020813104411.00a72650@rlw.best.vwh.net> <20020813172042.GW31652@polycarp.robnett.net> <5.1.1.6.0.20020813104411.00a72650@rlw.best.vwh.net> <5.1.0.14.2.20020813192242.0483b0a0@pop.ftel.co.uk> Message-ID: <20020813185205.GG10889@polycarp.robnett.net> On Tue Aug 13, 2002 at 07:43:42PM +0100, Richard Barrett wrote: > A couple of thoughts: > > 1. Some list attributes are initially set from mm_cfg.py configuration > variables ONLY when the list is created. Subsequent changes to those > defaults aren't propagated automatically into these per list attributes. > DEFAULT_URL is an example. However, a list's URL can be changed (carefully) > through the web admin GUI with MM 2.0.x or with bin/fix_url.py with MM 2.1. > > 2. Some defaults (call them secondary) in Defaults.py are defined in terms > of other defaults (call them primary) defined higher up the source of > Defaults.py. If you change the value of a primary default in mm_cfg.py you > will not automatically change the value of those secondary defaults that > depended on that redefined primary default; by the time mm_cfg.py is being > processed the value of the secondary defaults has already been assigned. > You must also redefine those secondary defaults in mm_cfg.py below the > redefinition of the primary they depended on; just copy the line that set > the secondary default from Defaults.py to mm_cfg.py and when it is > processed it will pick up the revised value it depends upon. > > fyi: all the Mailman code imports mm_cfg.py which in turn imports > Defaults.py. Hence the definitions in mm_cfg.py are evaluated following > evaluation of Defaults. py. Values assigned in Defaults.py are re-evaluated > after mm_cfg.py is processed by Python. If changing it in Defaults.py works > and changing it in mm_cfg.py does not then I reckon you've got problem 2 > above. Thanks, turns out my problem was a bit of 1 and 2. My initial post said that changing settings in Default.py worked but mm_cfg.py didn't. Turns out as you described some things I was trying to ajust needed to be done elsewhere which gave the initial impression that one worked and the other did not. Thanks again for the assistance. -- Regards, Timothy R. Robnett mailto:tim at robnett.net http://www.robnett.net/~tim/ "If passion drives you, let reason hold the reins." Benjamin Franklin From ftlbm at aurora.uaf.edu Tue Aug 13 21:16:41 2002 From: ftlbm at aurora.uaf.edu (Luke Middle) Date: Tue, 13 Aug 2002 11:16:41 -0800 Subject: [Mailman-Users] Failure to exec script. WANTED gid 0, GOT gid 12. (Reconfigure to take 12?) In-Reply-To: <1029258606.1814.6.camel@cvd-bs3-8.linkline.com> References: <1029184111.2740.40.camel@chirpy-boy.iquest.ucsb.edu> <200208121612.17462.wolf@wolfstream.net> <1029258606.1814.6.camel@cvd-bs3-8.linkline.com> Message-ID: configure will be much happier if you provide the number. It is telling you what number to use! :) reconfigure with 12. Dunno how your particular passwd is set up but it appears that mail is running under gid 12 so...you have a line something like this in /etc/passwd "mail:x:8:12:mail:/var/spool/mail:" note the 12, that is the gid number. You prolly want to check the nobody number and have that in the --with-cgi-gid= part of configure. cd make clean ./configure --with-mail-gid=12 --with-whatever-other-options make install hope this helps, -L >I did modify those options. sendmail deamon is running as root and >apache is running as nobody. > >so > >$>./configure --with-mail-gid=root --with-cgi-gid=nobody > >The error is complaining that it wanted gid 0 (root) but got gid 12 >(mail) > >so I recompiled from scratch w/ --with-mail-gid=mail > >Then test it. > >I get a subscription email, i reply, but don't get a confirmation reply. >I have that option set for this list as well. > >Am i misinterpreting what it means by --with-mail/cgi-gid???? > >thanx, > > > >On Mon, 2002-08-12 at 14:12, Tom Whiting wrote: >> On Monday 12 August 2002 03:28 pm, Support wrote: >> >> >> > ----- Transcript of session follows ----- >> > Failure to exec script. WANTED gid 0, GOT gid 12. (Reconfigure to take >> > 12?) >> > 554 5.3.0 unknown mailer error 2 >> > >> Imagine that, it even told you how to fix the error. >> Try reading docs next time before you send mails to the list eh? >> " >> TAKE SPECIAL NOTE OF THE --with-mail-gid AND --with-cgi-gid >> OPTIONS BELOW. YOU WILL PROBABLY NEED TO USE THESE! >> " >> So, reconfigure with the correct gid. >> >> ---------------------------------------------------- >> TJW: Head tech, Dreamless Realms >> Mud: http://dreamless.wolfstream.net >> Snippets http://dreamless.wolfstream.net/ >> Telnet dreamless.wolfstream.net:9275 >> The OLC Pages http://olc.wolfstream.net >> ---------------------------------------------------- From barry at python.org Tue Aug 13 21:52:41 2002 From: barry at python.org (Barry A. Warsaw) Date: Tue, 13 Aug 2002 15:52:41 -0400 Subject: [Mailman-Users] Can I pay for Technical support? re: MailMan? References: <02a401c24289$95f04720$1282010a@STEVE2> <019b01c242c8$9158bf00$0100007f@vineln01.nj.comcast.net> <15273.1029256153@kanga.nu> Message-ID: <15705.25481.32057.246574@anthem.wooz.org> >>>>> "JCL" == J C Lawrence writes: JCL> In fact there are (or were) several people on this list who JCL> do offer Mailman installation and configuration support for a JCL> fee. I don't know if any replied to the original poster, but JCL> there's definitely a population out there. I think it makes sense to provide more visibility for these folks. If you are providing such services and would like to be added to a yet-to-be-determined web page, send a message to mailman-cabal at python.org. -Barry From wolf at wolfstream.net Tue Aug 13 21:57:35 2002 From: wolf at wolfstream.net (Tom Whiting) Date: Tue, 13 Aug 2002 14:57:35 -0500 Subject: [Mailman-Users] Can I pay for Technical support? re: MailMan? In-Reply-To: References: Message-ID: <200208131457.35451.wolf@wolfstream.net> > > Personally, I find DSL and Cable lines too unreliable. > > Funny, I've been running my stuff on DSL since about 1998, and before that > on a leased line into the house (back to 1995 or so), and I find it > perfectly reliable enough. > > Although I always find people telling my my setup won't work fascinating... > (grin) Heh, I've been working with cable for years, and I don't find it in the LEAST bit non stable. I've never once had a complaint from my users that the system is too "slow" or it lags, and I offer quite a few services off of it, simply because of the fact that it is stable (unless I (occasionally) have to unplug it due to electrical storms, this thing doesn't go down). Of course, the beauty of it is that I don't "NEED" a network (nor does anyone really) to run a domain. I've got 2 running off a single cable modem IP, and have for QUITE some time. DSL, I'd question the stability of, because I've yet to see a STABLE dsl line (not saying it doesn't exist, but still). Cable, on the other hand I'e had zero problems. The thing to worry here about is "Does the admin know I'm running this list". Most providers throw a big ol hissy fit if they see you running servers on their networks. -- ---------------------------------------------------- TJW: Head tech, Dreamless Realms Mud: http://dreamless.wolfstream.net Snippets http://dreamless.wolfstream.net/ Telnet dreamless.wolfstream.net:9275 The OLC Pages http://olc.wolfstream.net ---------------------------------------------------- From barry at python.org Tue Aug 13 22:01:16 2002 From: barry at python.org (Barry A. Warsaw) Date: Tue, 13 Aug 2002 16:01:16 -0400 Subject: [Mailman-Users] mm_cfg.py doesn't appear to be working References: <5.1.1.6.0.20020813104411.00a72650@rlw.best.vwh.net> <20020813172042.GW31652@polycarp.robnett.net> <5.1.0.14.2.20020813192242.0483b0a0@pop.ftel.co.uk> Message-ID: <15705.25996.16241.337400@anthem.wooz.org> >>>>> "RB" == Richard Barrett writes: RB> fyi: all the Mailman code imports mm_cfg.py which in turn RB> imports Defaults.py. Hence the definitions in mm_cfg.py are RB> evaluated following evaluation of Defaults. py. Values RB> assigned in Defaults.py are re-evaluated after mm_cfg.py is RB> processed by Python. If changing it in Defaults.py works and RB> changing it in mm_cfg.py does not then I reckon you've got RB> problem 2 above. FTR, Mailman considers mm_cfg.py off-limits w.r.t. upgrades -- it will never touch them. However it's within Mailman's rights to overwrite Defaults.py on installs and upgrades. That's why you should never make changes to Defaults.py, and always make them to mm_cfg.py As was pointed out though, if you're making changes to list defaults, the changes won't affect already created lists. You'll need to change those via the web (for most list config variables) or through the command line bin/withlist for a couple of exceptions. -Barry From chuqui at plaidworks.com Tue Aug 13 22:07:23 2002 From: chuqui at plaidworks.com (Chuq Von Rospach) Date: Tue, 13 Aug 2002 13:07:23 -0700 Subject: [Mailman-Users] Can I pay for Technical support? re: MailMan? In-Reply-To: <200208131457.35451.wolf@wolfstream.net> Message-ID: On 8/13/02 12:57 PM, "Tom Whiting" wrote: > DSL, I'd question the stability of, because I've yet to see a STABLE dsl line > (not saying it doesn't exist, but still). Cable, on the other hand I'e had > zero problems. I've had basically zero downtime on my DSL line. Any outages I've had have either been scheduled for upgrades, a couple of times router failures (one of which took out my city, because the router that failed was in the covad facility), and the occasional router programming glitch. And none of that you can blame on the DSL line, because router stuff can happen on ANY network. But overall, I had MUCH higher levels of outages on my old 56K leased line than I ever had on my DSL line. > The thing to worry here about is "Does the admin know I'm running this list". > Most providers throw a big ol hissy fit if they see you running servers on > their networks. See my other note on this. That's why they have business lines. If you're plaing the "go cheap and hope they don't find out" game, that's not the ISP's fault. -- Chuq Von Rospach, Architech chuqui at plaidworks.com -- http://www.chuqui.com/ The Cliff's Notes Cliff's Notes on Hamlet: And they all died happily ever after From Ryan.Pratt at Sun.COM Tue Aug 13 22:20:54 2002 From: Ryan.Pratt at Sun.COM (Ryan Pratt) Date: Tue, 13 Aug 2002 14:20:54 -0600 Subject: [Mailman-Users] iPlanet and pipermail issue Message-ID: <3D596A26.5000508@Sun.COM> I have iPlanet 6.22 webserver running with Mailman 2.0.13. I have the admin cgi scripts working fine, but the pipermail archives are getting a cgi error. I have the follow sym links set and an alias to /pipermail/ to /opt/mailman/archives/public but I still get this error. for host x.x.x.x trying to GET /pipermail/test3/index.html, cgi_start_output reports: cannot execute CGI script /opt/mailman/archives/public/test3/index.html (exec() failure [Exec format error]), chroot=, dir=, user=, group= Any ideas? -- Ryan H. Pratt NWS Lab Manager Sun Microsystems, Inc. (303) 272-8902 From rlw at rlw.best.vwh.net Wed Aug 14 00:46:34 2002 From: rlw at rlw.best.vwh.net (Bob Weissman) Date: Tue, 13 Aug 2002 15:46:34 -0700 Subject: [Mailman-Users] Archive time stamp weirdness Message-ID: <5.1.1.6.0.20020813154502.00a12440@rlw.best.vwh.net> My 2.0.11 archives are showing a strange symptom, namely that the last message time stamp is exactly one hour later than the last archived time. Looks like a timezone issue, maybe, but I didn't see anything obvious in the pipermail sources. Last message date: Tue Aug 13 15:36:00 2002 Archived on: Tue Aug 13 14:36:00 2002 Any ideas? Thanks, - Bob From chris at yonderway.com Wed Aug 14 00:48:24 2002 From: chris at yonderway.com (Chris Hedemark) Date: 13 Aug 2002 18:48:24 -0400 Subject: [Mailman-Users] Can I pay for Technical support? YES! In-Reply-To: References: Message-ID: <1029278904.1749.94.camel@crab.yonderway.priv> On Tue, 2002-08-13 at 11:22, Chuq Von Rospach wrote: > Why? Because while there are no formal tech support options for mailman, > there ARE a number of people on this list who can and do consulting on > mailman. I don't normally like to announce it publicly on the list, but since it is the topic du jour I just wanted to say that I have been doing Mailman installs professionally for a couple of years now, primarily on Linux and OpenBSD machines (with Solaris once or twice as well). Chances are, if it runs UNIX, I can get it running Mailman. I'm the guy that people keep asking "Are you the guy who got Mailman working on a Cobalt RaQ?" If you're anywhere near Raleigh/Durham, North Carolina I can even work on-site if you'd prefer. Otherwise I'm well equipped to handle remote installations. > So all of you telling us support doesn't exist? You're wrong, and I > wish you'd be quiet. There is at least one of us here doing it. I know of a couple others who are local to me that do it as well. That is just in the little town of Raleigh, North Carolina. Thanks for helping to set the record straight, Chuq, and I hope that my little plug was appropriate under the circumstances. Regards, Chris Hedemark Hillsborough, North Carolina From chris at yonderway.com Wed Aug 14 00:51:44 2002 From: chris at yonderway.com (Chris Hedemark) Date: 13 Aug 2002 18:51:44 -0400 Subject: [Mailman-Users] Can I pay for Technical support? re: MailMan? In-Reply-To: <019b01c242c8$9158bf00$0100007f@vineln01.nj.comcast.net> References: <02a401c24289$95f04720$1282010a@STEVE2> <019b01c242c8$9158bf00$0100007f@vineln01.nj.comcast.net> Message-ID: <1029279104.1749.98.camel@crab.yonderway.priv> On Tue, 2002-08-13 at 08:54, Support Desk wrote: > Ha, ha.. This is open source, not microsloth, there is > no "paid" support option.. I guess I had better refund all those folks I have taken money from to support Mailman, then. Mr. (Anonymous) Support Desk, you are wrong sir. > The only "paid" support you can get for Mailman is by > hosting your site on one of the thousands of real > full time hosting providers who offer Mailman as part > of their hosting packages. Many offer accounts for > only a few dollars per month, with 99% + uptime. This is wrong. I've been installing Mailman on-site and over the wire for a couple of years now. Many clients love the flexibility of having their own Mailman server on-site, without having to pay monthly for hosting services. And to clear up another myth, it works great over cable modems & DSL. You just need to make sure you have one or two backup MX's that are not on the same broadband carrier. Regards, Chris Hedemark From jonc at haht.com Tue Aug 13 23:43:39 2002 From: jonc at haht.com (Jon Carnes) Date: Tue, 13 Aug 2002 17:43:39 -0400 Subject: [Mailman-Users] Archive time stamp weirdness In-Reply-To: <5.1.1.6.0.20020813154502.00a12440@rlw.best.vwh.net> References: <5.1.1.6.0.20020813154502.00a12440@rlw.best.vwh.net> Message-ID: <200208132349.g7DNnvL28890@salsa.haht.com> So what happens when you run "date"? Does it display the proper timezone? On Tuesday 13 August 2002 06:46 pm, Bob Weissman wrote: > My 2.0.11 archives are showing a strange symptom, namely that the last > message time stamp is exactly one hour later than the last archived > time. Looks like a timezone issue, maybe, but I didn't see anything > obvious in the pipermail sources. > > Last message date: Tue Aug 13 15:36:00 2002 > Archived on: Tue Aug 13 14:36:00 2002 > > Any ideas? > > Thanks, > - Bob > > > ------------------------------------------------------ > Mailman-Users mailing list > Mailman-Users at python.org > 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/ From garyv at cips.nokia.com Wed Aug 14 02:53:08 2002 From: garyv at cips.nokia.com (Gary Verhulp) Date: Tue, 13 Aug 2002 17:53:08 -0700 Subject: [Mailman-Users] Bug problem References: <20020812193301.29937.qmail@web11706.mail.yahoo.com> Message-ID: <3D59A9F4.8030601@cips.nokia.com> I have seen this error as well. . First of all, go read your mailman error logs. It tells you to do that in the error message. If you do that you will probably not need to read the rest of my reply:) They are located (at least on my sys )in /var/mailman/logs/error Here's what happened in my case: I got errno 13 Permission Denied. on the db file for the alias i was trying to submit an admin request for. What did I do? I changed the perms! Wham! It's all good. This may be a temp/kludge fix, but we shall see. And let me just say that Mailman is a fine fine Maillist manager! As soon as they put a searchable archive ability it will be the best. Political Ethiopia wrote: >Dear Sirs, > >I have been running pol.ethiopia mail list for some >years now. These days however, I have been blocked >acess by the following message: > >"Bug in Mailman version 2.0.8 > > We're sorry, we hit a bug! > > Please inform the webmaster for this site of this > problem. Printing of traceback and other system > information has been explicitly inhibitd, but the > webmaster can find this information in the Mialman > errir logs. " > >Can you please look into this matter and help me >resolve the problem so that thew list can function? > >Thanking you in advance, > >Yours, > >Dawit Yohannes >List owner of Pol.Ethiopia. > > >__________________________________________________ >Do You Yahoo!? >HotJobs - Search Thousands of New Jobs >http://www.hotjobs.com > >------------------------------------------------------ >Mailman-Users mailing list >Mailman-Users at python.org >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/ > > > > From mmlist at confused.org Wed Aug 14 05:22:13 2002 From: mmlist at confused.org (Will Galloway) Date: Tue, 13 Aug 2002 20:22:13 -0700 Subject: [Mailman-Users] Daily Digests and other issues Message-ID: <3.0.5.32.20020813202213.007eb9f0@209.197.113.96> Hi: I posted this to developers, and got a deafening silence. I hope this is a more appropriate list. I admin a ~1000 member outdoor activities list hosted at pair.com ("pairlist"), so I don't get to see the gory stuff, just the web interface. The size threshold trigger for daily digests stopped working last year, and I understand unoffically that it was a server loading issue that caused this. The server in question handles several hundred lists. Since our list has quite a bit of time sensitive info, and variable traffic levels, this feature is very important. Is there any change in the handling of this feature in 2.1.x that would reduce the CPU requirements? Or anything that pair can try to clean up their implementation to fix it? Other stuff: Duplicate and frivolous subscriptions are annoying, and a "discard" option for sub. requests would be much appreciated. Awareness of a pre-existing sub. request from the same address should be implemented. Rejection just confuses legitimate (albeit impatient) subscribers, and encourages people who are messing around to keep trying. In the same vein, the ability to modify/eliminate the default rejection message for posts would avoid antagonizing people who need coaching now and then. If true moderation and customization of all the various messages is forthcoming, then that's ideal. Thanks, Will Galloway From jonc at haht.com Wed Aug 14 03:29:12 2002 From: jonc at haht.com (Jon Carnes) Date: Tue, 13 Aug 2002 21:29:12 -0400 Subject: [Mailman-Users] Daily Digests and other issues In-Reply-To: <3.0.5.32.20020813202213.007eb9f0@209.197.113.96> References: <3.0.5.32.20020813202213.007eb9f0@209.197.113.96> Message-ID: <200208140335.g7E3ZTL32173@salsa.haht.com> On Tuesday 13 August 2002 11:22 pm, Will Galloway wrote: > > I posted this to developers, and got a deafening silence. I hope this is > a > more appropriate list. > I admin a ~1000 member outdoor activities list hosted at pair.com > ("pairlist"), > so I don't get to see the gory stuff, just the web interface. The size > threshold > trigger for daily digests stopped working last year, and I understand > unoffically > that it was a server loading issue that caused this. The server in > question > handles several hundred lists. Since our list has quite a bit of time > sensitive info, > and variable traffic levels, this feature is very important. Is there > any > change in > the handling of this feature in 2.1.x that would reduce the CPU > requirements? > Or anything that pair can try to clean up their implementation to fix > it? The new version runs a daemon that handles the mail for the lists. It is more efficient than the current cron induced qrunner triggers; but I don't think that the resources saved will be that significant. You should probably upgrade your server (better processor and a SCSI disk sub-system). Even if the resources are stretched, the new version should do a better job of handling the checks for sending out Digests. > > Other stuff: > Duplicate and frivolous subscriptions are annoying, and a "discard" > option > for > sub. requests would be much appreciated. Awareness of a pre-existing > sub. > request from the same address should be implemented. Rejection just > confuses > legitimate (albeit impatient) subscribers, and encourages people who are Available in the new version > > messing around to keep trying. In the same vein, the ability to > modify/eliminate > the default rejection message for posts would avoid antagonizing people > who > need coaching now and then. If true moderation and customization of all > the > various messages is forthcoming, then that's ideal. Also available in the new version From tomryan at camlaw.rutgers.edu Wed Aug 14 06:12:37 2002 From: tomryan at camlaw.rutgers.edu (Tom Ryan) Date: Wed, 14 Aug 2002 00:12:37 -0400 (EDT) Subject: [Mailman-Users] problem with moderator password In-Reply-To: Message-ID: Moderators need only access http://hostname/pathtomailman/admindb/listname to approve/reject/etc messages. the moderator password will work just fine here :) Tom On Tue, 13 Aug 2002, Fuzzy wrote: > > I'm using 2.1b3, one of my list owners is trying to > define a moderator of a list, (that is not a list owner). > > the password admin screen provides a place to define > different passwords for moderators and administrators. > but, after setting that up, the admin login screen > for that mailing list does not accept the moderator > password, the admin password works as expected. > > the list owner told me they can log in with the > listinfo screens, is there a seperate set of > screen for non-admin moderators? or are we just > confused about how the non-admin moderator identifies > itself to mailman. > > thanks > > -- _______________________________________________________________________ Tom Ryan Voice: 856-225-6361 Consulting System Administrator Fax: 856-969-7900 Rutgers School of Law - Camden From woodie at webfoot.net Wed Aug 14 06:31:19 2002 From: woodie at webfoot.net (Woodie Sayles) Date: Wed, 14 Aug 2002 00:31:19 -0400 Subject: [Mailman-Users] Welcome message has too many blank lines Message-ID: I added a message to be prepended to the welcome message. It does that just fine, but although the message only has 1 blank line in between paragraphs, there are 3 blank lines in between each paragraph when it gets received. I only saw one other posting about this in the archives, but there was no answer as to what could be causing it. Woodie Sayles Webfoot.Net woodie at webfoot.net (727) 442-5770 (727) 442-3380 - fax Fast, friendly, professional web design and hosting. Visit our site at http://www.webfoot.net to see what we can do for you! From barry at python.org Wed Aug 14 06:45:35 2002 From: barry at python.org (Barry A. Warsaw) Date: Wed, 14 Aug 2002 00:45:35 -0400 Subject: [Mailman-Users] problem with moderator password References: Message-ID: <15705.57455.587616.638836@anthem.wooz.org> >>>>> "F" == Fuzzy writes: F> I'm using 2.1b3, one of my list owners is trying to F> define a moderator of a list, (that is not a list owner). F> the password admin screen provides a place to define F> different passwords for moderators and administrators. F> but, after setting that up, the admin login screen F> for that mailing list does not accept the moderator F> password, the admin password works as expected. F> the list owner told me they can log in with the F> listinfo screens, is there a seperate set of F> screen for non-admin moderators? or are we just F> confused about how the non-admin moderator identifies F> itself to mailman. The admin password gives you access to the admin pages and the admindb page. The moderator password gives you access to the admindb page only. This means the "list administrator" can make changes to the list's configuration, and of course can also handle held posts and subscription requests. Moderators can only handle holds, but cannot modify the list's configuration. HTH, -Barry From rlw at rlw.best.vwh.net Wed Aug 14 07:33:05 2002 From: rlw at rlw.best.vwh.net (Bob Weissman) Date: Tue, 13 Aug 2002 22:33:05 -0700 Subject: [Mailman-Users] Archive time stamp weirdness In-Reply-To: <200208132349.g7DNnvL28890@salsa.haht.com> References: <5.1.1.6.0.20020813154502.00a12440@rlw.best.vwh.net> <5.1.1.6.0.20020813154502.00a12440@rlw.best.vwh.net> Message-ID: <5.1.1.6.0.20020813222516.00a34020@rlw.best.vwh.net> At 02:43 PM 8/13/02, Jon Carnes wrote: >So what happens when you run "date"? Does it display the proper timezone? Yes. (My machine is using PST8PDT as the timezone, if that detail is important.) The correct time is the earlier one, by the way. The archive's .mbox file shows in the last message Date: Tue Aug 13 14:36:00 2002 X-Original-Date: Tue, 13 Aug 2002 14:35:22 -0700 But somehow an hour is getting added to the "last message date." - Bob >On Tuesday 13 August 2002 06:46 pm, Bob Weissman wrote: >> My 2.0.11 archives are showing a strange symptom, namely that the last >> message time stamp is exactly one hour later than the last archived >> time. Looks like a timezone issue, maybe, but I didn't see anything >> obvious in the pipermail sources. >> >> Last message date: Tue Aug 13 15:36:00 2002 >> Archived on: Tue Aug 13 14:36:00 2002 >> >> Any ideas? From aris.santillan at summitmedia.com.ph Wed Aug 14 07:48:06 2002 From: aris.santillan at summitmedia.com.ph (Aris Santillan) Date: Wed, 14 Aug 2002 13:48:06 +0800 Subject: [Mailman-Users] Mailing list Archiver Message-ID: hello guys!!! i got 8 list in my mailman mailing list.. is it possible to make an archive to each of 8 list? someone suggest me to use "Lurker" thanks From mailman-users at imc.nl Wed Aug 14 08:27:31 2002 From: mailman-users at imc.nl (Roelf Schreurs) Date: Wed, 14 Aug 2002 08:27:31 +0200 Subject: [Mailman-Users] mailman 2.1b3 and htdig Message-ID: <000a01c2435b$ab9d8fb0$c764a8c0@ads.intra.imc> Hi I just installed the mailman 2.1b3 and would like to use htdig to search the archives. But the 2 plugins needed only has up to version 2.1b2. Any idea when the plugins will be available for beta 3? Or are they available somewhere apart from the plugins page on soureforge? Thanks Roelf -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/mailman-users/attachments/20020814/247781b2/attachment.html From claw at kanga.nu Wed Aug 14 08:50:22 2002 From: claw at kanga.nu (J C Lawrence) Date: Tue, 13 Aug 2002 23:50:22 -0700 Subject: [Mailman-Users] Can I pay for Technical support? re: MailMan? In-Reply-To: Message from "G. Armour Van Horn" of "Tue, 13 Aug 2002 11:47:01 PDT." <3D595425.99617469@whidbey.com> References: <3D595425.99617469@whidbey.com> Message-ID: <24766.1029307822@kanga.nu> On Tue, 13 Aug 2002 11:47:01 -0700 G Armour Van Horn wrote: > Yeah, I have my Mailman machine, along with three webservers and my > private home network, on a DSL line, and I don't think the proposed > mail volume would be any problem on his DSL line, which is faster than > my 768K/768K line here. Especially if he uses his ISP as a smarthost. -- J C Lawrence ---------(*) Satan, oscillate my metallic sonatas. claw at kanga.nu He lived as a devil, eh? http://www.kanga.nu/~claw/ Evil is a name of a foeman, as I live. From claw at kanga.nu Wed Aug 14 08:51:00 2002 From: claw at kanga.nu (J C Lawrence) Date: Tue, 13 Aug 2002 23:51:00 -0700 Subject: [Mailman-Users] Can I pay for Technical support? re: MailMan? In-Reply-To: Message from barry@python.org (Barry A. Warsaw) of "Tue, 13 Aug 2002 15:52:41 EDT." <15705.25481.32057.246574@anthem.wooz.org> References: <02a401c24289$95f04720$1282010a@STEVE2> <019b01c242c8$9158bf00$0100007f@vineln01.nj.comcast.net> <15273.1029256153@kanga.nu> <15705.25481.32057.246574@anthem.wooz.org> Message-ID: <24786.1029307860@kanga.nu> On Tue, 13 Aug 2002 15:52:41 -0400 Barry A Warsaw wrote: > I think it makes sense to provide more visibility for these folks. If > you are providing such services and would like to be added to a > yet-to-be-determined web page, send a message to > mailman-cabal at python.org. :suggests a page on the Wiki. -- J C Lawrence ---------(*) Satan, oscillate my metallic sonatas. claw at kanga.nu He lived as a devil, eh? http://www.kanga.nu/~claw/ Evil is a name of a foeman, as I live. From carsten at wod.dk Wed Aug 14 09:08:07 2002 From: carsten at wod.dk (Carsten Skov) Date: Wed, 14 Aug 2002 09:08:07 +0200 Subject: [Mailman-Users] status=bounced (cannot append message to destination file /var/lib/mailman/mail/wrapper post test: cannot create file exclusively: Permission denied) Message-ID: <004001c24361$57508a60$0e0210ac@idp.dk> Hello, I have tried installing mailman on my server (Mandrake 8.1) both as an rpm (version 2.0.7, 2.0.10) and from source ( 2.0.12 ), and everything seems fine. The check_perms scripts says everything is okay. I can view, edit aso on the webpages. But when I send a message to a mailing list ( in this case the test mailinglist) I get the following error on all three installation types: status=bounced (cannot append message to destination file /var/lib/mailman/mail/wrapper post test: cannot create file exclusively: Permission denied) Anyone who could figure out what that is caused by ? Any help is highly appreciated! Best regards Carsten Skov -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/mailman-users/attachments/20020814/23d4c947/attachment.htm From thomas at resonance.org Wed Aug 14 09:22:40 2002 From: thomas at resonance.org (Thomas Spellman) Date: Wed, 14 Aug 2002 00:22:40 -0700 Subject: [Mailman-Users] --with-mail-gid using postfix Message-ID: I'm trying to compile mailman 2.0.13 to run with postfix. The following are the relevant lines from my postfix main.cf: mail_owner = postfix default_privs = nobody Apache is running as "apache:apache". I tried --with-mail-gid=nobody --with-cgi-gid=apache --with-mail-gid=mail --with-cgi-gid=apache mail-gid=nobody is the only one that doesn't give the "wanted 953 / got 99" error, but none of the mailman aliases work. I put some other test aliases in the same file as my mailman aliases and postfix uses them just fine. I did a "chmod 2775 -R ." in my /home/mailman directory then I recompiled and reinstalled, then I ran "check_perms -f". logs/smtp and logs/smtp-failure are packed with errors, several per second mailman at earth mailman]#tail logs/smtp Aug 14 00:16:00 2002 (8455) All recipients refused: (111, 'Connection refused') Aug 14 00:16:00 2002 (8455) smtp for 1 recips, completed in 0.012 seconds Aug 14 00:16:00 2002 (8455) All recipients refused: (111, 'Connection refused') Aug 14 00:16:00 2002 (8455) smtp for 1 recips, completed in 0.011 seconds Aug 14 00:16:00 2002 (8455) All recipients refused: (111, 'Connection refused') Aug 14 00:16:00 2002 (8455) smtp for 1 recips, completed in 0.012 seconds Aug 14 00:16:00 2002 (8455) All recipients refused: (111, 'Connection refused') Aug 14 00:16:00 2002 (8455) smtp for 1 recips, completed in 0.011 seconds Aug 14 00:16:00 2002 (8455) All recipients refused: (111, 'Connection refused') Aug 14 00:16:00 2002 (8455) smtp for 1 recips, completed in 0.011 seconds mailman at earth mailman]#tail logs/smtp-failure Aug 14 00:15:01 2002 (8452) -1 thomas at thosmos.com (ignore) Aug 14 00:15:01 2002 (8452) -1 thomas at thosmos.com (ignore) Aug 14 00:15:02 2002 (8452) -1 thomas at thosmos.com (ignore) Aug 14 00:15:02 2002 (8452) -1 thomas at thosmos.com (ignore) Aug 14 00:16:00 2002 (8455) -1 thomas at thosmos.com (ignore) Aug 14 00:16:00 2002 (8455) -1 sysop at resonance.org (ignore) Aug 14 00:16:00 2002 (8455) -1 thomas at thosmos.com (ignore) Aug 14 00:16:00 2002 (8455) -1 thomas at thosmos.com (ignore) Aug 14 00:16:00 2002 (8455) -1 thomas at thosmos.com (ignore) Aug 14 00:16:00 2002 (8455) -1 thomas at thosmos.com (ignore) mailman at earth mailman]#tail logs/post Aug 14 00:16:00 2002 (8455) post to yuba-list from yuba-list-request at yubawatershed.org, size=796, 1 failures Aug 14 00:16:00 2002 (8455) post to yuba-list from mailman-owner at earth.resonance.org, size=1343, 1 failures Aug 14 00:16:00 2002 (8455) post to testing2 from mailman-owner at earth.resonance.org, size=1340, 1 failures Aug 14 00:16:00 2002 (8455) post to testing3 from mailman-owner at earth.resonance.org, size=1340, 1 failures Aug 14 00:17:00 2002 (8459) post to yuba-list from yuba-list-request at yubawatershed.org, size=796, 1 failures Aug 14 00:17:00 2002 (8459) post to the-collective from mailman-owner at earth.resonance.org, size=1363, 1 failures Aug 14 00:17:00 2002 (8459) post to yuba-list from yuba-list-request at yubawatershed.org, size=796, 1 failures Aug 14 00:17:00 2002 (8459) post to yuba-list from mailman-owner at earth.resonance.org, size=1343, 1 failures Aug 14 00:17:00 2002 (8459) post to testing2 from mailman-owner at earth.resonance.org, size=1340, 1 failures Aug 14 00:17:00 2002 (8459) post to testing3 from mailman-owner at earth.resonance.org, size=1340, 1 failures Thanks for any tips. Thomas From wolf at wolfstream.net Wed Aug 14 09:58:30 2002 From: wolf at wolfstream.net (Tom Whiting) Date: Wed, 14 Aug 2002 02:58:30 -0500 Subject: [Mailman-Users] --with-mail-gid using postfix In-Reply-To: References: Message-ID: <200208140258.30350.wolf@wolfstream.net> > --with-mail-gid=nobody --with-cgi-gid=apache > --with-mail-gid=mail --with-cgi-gid=apache > > mail-gid=nobody is the only one that doesn't give the "wanted 953 / got 99" > error, but none of the mailman aliases work. I put some other test aliases > in the same file as my mailman aliases and postfix uses them just fine. Try with the ID'S (this is what it wants, not the names). > Aug 14 00:16:00 2002 (8455) All recipients refused: (111, 'Connection > refused') Looks like you need to restart postfix, or whatever your MTA is. Try to telnet to whatever port you're trying to get it to go to? usually 110, not 111. If you get connection refused, then you'll know where that problem lies. In fact, I'd bet that's the entirety of your second problem. ---------------------------------------------------- TJW: Head tech, Dreamless Realms Mud: http://dreamless.wolfstream.net Snippets http://dreamless.wolfstream.net/ Telnet dreamless.wolfstream.net:9275 The OLC Pages http://olc.wolfstream.net ---------------------------------------------------- From thomas at resonance.org Wed Aug 14 10:10:36 2002 From: thomas at resonance.org (Thomas Spellman) Date: Wed, 14 Aug 2002 01:10:36 -0700 Subject: [Mailman-Users] --with-mail-gid using postfix In-Reply-To: <200208140258.30350.wolf@wolfstream.net> Message-ID: okay, I cleaned the directory, reinstalled the source, ran ./configure --with-mail-gid=943 (mailman) --with-cgi-gid=584 (apache). The configure script I noticed though converted my named gids to their numbers, so either way works. I moved the mailman aliases file to the mailman home folder, ran postalias on it with the mailman user. restarted postfix several times. it still doesn't work. I don't understand the 111 thing. mailman is trying to connect to an rpc server on port 111? weird. I'm not running any server on that port. what daemon usually runs on that port, portmap? why would it be trying to connect to that port? I haven't set mailman to use a particular port. I would assume it would use port 25 to connect to the smtp server. Thomas -----Original Message----- From: Tom Whiting [mailto:wolf at wolfstream.net] Sent: Wednesday, August 14, 2002 12:59 AM To: Thomas Spellman; mailman-users at python.org Subject: Re: [Mailman-Users] --with-mail-gid using postfix > --with-mail-gid=nobody --with-cgi-gid=apache > --with-mail-gid=mail --with-cgi-gid=apache > > mail-gid=nobody is the only one that doesn't give the "wanted 953 / got 99" > error, but none of the mailman aliases work. I put some other test aliases > in the same file as my mailman aliases and postfix uses them just fine. Try with the ID'S (this is what it wants, not the names). > Aug 14 00:16:00 2002 (8455) All recipients refused: (111, 'Connection > refused') Looks like you need to restart postfix, or whatever your MTA is. Try to telnet to whatever port you're trying to get it to go to? usually 110, not 111. If you get connection refused, then you'll know where that problem lies. In fact, I'd bet that's the entirety of your second problem. ---------------------------------------------------- TJW: Head tech, Dreamless Realms Mud: http://dreamless.wolfstream.net Snippets http://dreamless.wolfstream.net/ Telnet dreamless.wolfstream.net:9275 The OLC Pages http://olc.wolfstream.net ---------------------------------------------------- From thomas at resonance.org Wed Aug 14 11:30:08 2002 From: thomas at resonance.org (Thomas Spellman) Date: Wed, 14 Aug 2002 02:30:08 -0700 Subject: [Mailman-Users] --with-mail-gid using postfix In-Reply-To: <200208140258.30350.wolf@wolfstream.net> Message-ID: I downloaded the RPM version, which didn't run because of the --with-cgi-gid problem. I downloaded the SRPM and made sure the .spec file had the correct configure options. this time the username and groupname were already set as "mail" and the mail-gid=nobody. I made an rpm and installed, but then got the exact same errors as before. [RES: mail at earth mailman]$tail logs/smtp Aug 14 02:06:01 2002 (14664) All recipients refused: (111, 'Connection refused') Aug 14 02:06:01 2002 (14664) smtp for 1 recips, completed in 0.036 seconds Aug 14 02:07:01 2002 (14686) All recipients refused: (111, 'Connection refused') Aug 14 02:07:01 2002 (14686) smtp for 1 recips, completed in 0.021 seconds Aug 14 02:07:54 2002 (14704) All recipients refused: (111, 'Connection refused') Aug 14 02:07:54 2002 (14704) smtp for 1 recips, completed in 0.017 seconds Aug 14 02:08:02 2002 (14707) All recipients refused: (111, 'Connection refused') Aug 14 02:08:02 2002 (14707) smtp for 1 recips, completed in 0.037 seconds Aug 14 02:08:02 2002 (14707) All recipients refused: (111, 'Connection refused') Aug 14 02:08:02 2002 (14707) smtp for 1 recips, completed in 0.022 seconds -----Original Message----- From: mailman-users-admin at python.org [mailto:mailman-users-admin at python.org]On Behalf Of Tom Whiting Sent: Wednesday, August 14, 2002 12:59 AM To: Thomas Spellman; mailman-users at python.org Subject: Re: [Mailman-Users] --with-mail-gid using postfix > --with-mail-gid=nobody --with-cgi-gid=apache > --with-mail-gid=mail --with-cgi-gid=apache > > mail-gid=nobody is the only one that doesn't give the "wanted 953 / got 99" > error, but none of the mailman aliases work. I put some other test aliases > in the same file as my mailman aliases and postfix uses them just fine. Try with the ID'S (this is what it wants, not the names). > Aug 14 00:16:00 2002 (8455) All recipients refused: (111, 'Connection > refused') Looks like you need to restart postfix, or whatever your MTA is. Try to telnet to whatever port you're trying to get it to go to? usually 110, not 111. If you get connection refused, then you'll know where that problem lies. In fact, I'd bet that's the entirety of your second problem. ---------------------------------------------------- TJW: Head tech, Dreamless Realms Mud: http://dreamless.wolfstream.net Snippets http://dreamless.wolfstream.net/ Telnet dreamless.wolfstream.net:9275 The OLC Pages http://olc.wolfstream.net ---------------------------------------------------- ------------------------------------------------------ Mailman-Users mailing list Mailman-Users at python.org 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/ From R.Barrett at ftel.co.uk Wed Aug 14 11:31:53 2002 From: R.Barrett at ftel.co.uk (Richard Barrett) Date: Wed, 14 Aug 2002 10:31:53 +0100 Subject: [Mailman-Users] mailman 2.1b3 and htdig In-Reply-To: <000a01c2435b$ab9d8fb0$c764a8c0@ads.intra.imc> Message-ID: <5.1.0.14.2.20020814102707.0329c058@pop.ftel.co.uk> At 08:27 14/08/2002 +0200, Roelf Schreurs wrote: >Hi > >I just installed the mailman 2.1b3 and would like to use htdig to search >the archives. But the 2 plugins needed only has up to version 2.1b2. Any >idea when the plugins will be available for beta 3? Or are they available >somewhere apart from the plugins page on soureforge? > >Thanks >Roelf I expect to upload to sourceforge versions of the 444879 and 444884 patches revised for application to MM 2.1b3 some time later today. But first I have to finish testing them, having made a number of minor changes to improve their compatibility with the MM base code. From R.Barrett at ftel.co.uk Wed Aug 14 11:37:25 2002 From: R.Barrett at ftel.co.uk (Richard Barrett) Date: Wed, 14 Aug 2002 10:37:25 +0100 Subject: [Mailman-Users] mm_cfg.py doesn't appear to be working In-Reply-To: <15705.25996.16241.337400@anthem.wooz.org> References: <5.1.1.6.0.20020813104411.00a72650@rlw.best.vwh.net> <20020813172042.GW31652@polycarp.robnett.net> <5.1.0.14.2.20020813192242.0483b0a0@pop.ftel.co.uk> Message-ID: <5.1.0.14.2.20020814103527.0329c058@pop.ftel.co.uk> At 16:01 13/08/2002 -0400, Barry A. Warsaw wrote: > >>>>> "RB" == Richard Barrett writes: > > RB> fyi: all the Mailman code imports mm_cfg.py which in turn > RB> imports Defaults.py. Hence the definitions in mm_cfg.py are > RB> evaluated following evaluation of Defaults. py. Values > RB> assigned in Defaults.py are re-evaluated after mm_cfg.py is > RB> processed by Python. If changing it in Defaults.py works and > RB> changing it in mm_cfg.py does not then I reckon you've got > RB> problem 2 above. There was a "not" omitted from this sentence. \Snetence should have read: "Values assigned in Defaults.py are NOT re-evaluated after mm_cfg.py is processed by Python." Sorry for creating any confusion. >FTR, Mailman considers mm_cfg.py off-limits w.r.t. upgrades -- it will >never touch them. However it's within Mailman's rights to overwrite >Defaults.py on installs and upgrades. That's why you should never >make changes to Defaults.py, and always make them to mm_cfg.py > >As was pointed out though, if you're making changes to list defaults, >the changes won't affect already created lists. You'll need to change >those via the web (for most list config variables) or through the >command line bin/withlist for a couple of exceptions. > >-Barry From thomas at resonance.org Wed Aug 14 12:07:41 2002 From: thomas at resonance.org (Thomas Spellman) Date: Wed, 14 Aug 2002 03:07:41 -0700 Subject: [Mailman-Users] --with-mail-gid using postfix In-Reply-To: Message-ID: Okay, I finally got an error message with the --with-mail-gid=nobody: : Command died with status 2: "/var/lib/mailman/mail/wrapper post testing1". Command output: Failure to exec script. WANTED gid 99, GOT gid 12. (Reconfigure to take 12?) so I recompiled with --with-mail-gid=12 (mail) and now I'm back to getting a repeating error in logs/smtp logs/smtp-failure and logs/post. I'm stuck. I've been working on this all day and I'm out of patience. -----Original Message----- From: mailman-users-admin at python.org [mailto:mailman-users-admin at python.org]On Behalf Of Thomas Spellman Sent: Wednesday, August 14, 2002 2:30 AM To: wolf at wolfstream.net; mailman-users at python.org Subject: RE: [Mailman-Users] --with-mail-gid using postfix I downloaded the RPM version, which didn't run because of the --with-cgi-gid problem. I downloaded the SRPM and made sure the .spec file had the correct configure options. this time the username and groupname were already set as "mail" and the mail-gid=nobody. I made an rpm and installed, but then got the exact same errors as before. [RES: mail at earth mailman]$tail logs/smtp Aug 14 02:06:01 2002 (14664) All recipients refused: (111, 'Connection refused') Aug 14 02:06:01 2002 (14664) smtp for 1 recips, completed in 0.036 seconds Aug 14 02:07:01 2002 (14686) All recipients refused: (111, 'Connection refused') Aug 14 02:07:01 2002 (14686) smtp for 1 recips, completed in 0.021 seconds Aug 14 02:07:54 2002 (14704) All recipients refused: (111, 'Connection refused') Aug 14 02:07:54 2002 (14704) smtp for 1 recips, completed in 0.017 seconds Aug 14 02:08:02 2002 (14707) All recipients refused: (111, 'Connection refused') Aug 14 02:08:02 2002 (14707) smtp for 1 recips, completed in 0.037 seconds Aug 14 02:08:02 2002 (14707) All recipients refused: (111, 'Connection refused') Aug 14 02:08:02 2002 (14707) smtp for 1 recips, completed in 0.022 seconds -----Original Message----- From: mailman-users-admin at python.org [mailto:mailman-users-admin at python.org]On Behalf Of Tom Whiting Sent: Wednesday, August 14, 2002 12:59 AM To: Thomas Spellman; mailman-users at python.org Subject: Re: [Mailman-Users] --with-mail-gid using postfix > --with-mail-gid=nobody --with-cgi-gid=apache > --with-mail-gid=mail --with-cgi-gid=apache > > mail-gid=nobody is the only one that doesn't give the "wanted 953 / got 99" > error, but none of the mailman aliases work. I put some other test aliases > in the same file as my mailman aliases and postfix uses them just fine. Try with the ID'S (this is what it wants, not the names). > Aug 14 00:16:00 2002 (8455) All recipients refused: (111, 'Connection > refused') Looks like you need to restart postfix, or whatever your MTA is. Try to telnet to whatever port you're trying to get it to go to? usually 110, not 111. If you get connection refused, then you'll know where that problem lies. In fact, I'd bet that's the entirety of your second problem. ---------------------------------------------------- TJW: Head tech, Dreamless Realms Mud: http://dreamless.wolfstream.net Snippets http://dreamless.wolfstream.net/ Telnet dreamless.wolfstream.net:9275 The OLC Pages http://olc.wolfstream.net ---------------------------------------------------- ------------------------------------------------------ Mailman-Users mailing list Mailman-Users at python.org 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 mailing list Mailman-Users at python.org 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/ From quantum at sqf-clan.com Wed Aug 14 12:19:52 2002 From: quantum at sqf-clan.com (Wolfram Knipp) Date: Wed, 14 Aug 2002 18:19:52 +0800 Subject: [Mailman-Users] "relaying prohibited by admin" error In-Reply-To: <4.3.2.7.2.20020813082951.00c047b0@> Message-ID: hi, on my DNS server i set lists.mydomain.org to point to the IP addy of the server Mailman is on. I'm required to use LISTS.mydomain.org, because mydomain.org is already being used for another server. as for Qmail, nope I'm not using it... - Wolfram Knipp -----Original Message----- From: mailman-users-admin at python.org [mailto:mailman-users-admin at python.org]On Behalf Of Matthias Janichen Sent: Tuesday, August 13, 2002 2:30 PM To: mailman-users at python.org Subject: Re: [Mailman-Users] "relaying prohibited by admin" error At 14:30 13.08.02 +0800, Wolfram Knipp wrote: > > (reason: 550 relaying to prohibited by >administrator) is lists.mydomain.org a different server or just a virtual domain on the same machine? In that case you should add it to the list of localhosts. For Qmail this would be the file /var/qmail/control/rcpthosts try to send to mylist at mydomain.org and get rid of "lists." Reg. ------------------------------------------------------ Mailman-Users mailing list Mailman-Users at python.org 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/ From wolf at wolfstream.net Wed Aug 14 12:18:21 2002 From: wolf at wolfstream.net (Tom Whiting) Date: Wed, 14 Aug 2002 05:18:21 -0500 Subject: [Mailman-Users] --with-mail-gid using postfix In-Reply-To: References: Message-ID: <200208140518.21693.wolf@wolfstream.net> So, check relays, make sure they're enabled. Read not ONLY your mailman logs, but your SYSTEM logs (please, don't send those to this list). Mail, everything. Chances are you're going to find that your problem is in there somwehere. I'm not sure how postfix is enabled, but you're having problems (obviously) with postfix, not mailman. Check relays, check permissions, check aliases, check everything postfix wise. On Wednesday 14 August 2002 05:07 am, Thomas Spellman wrote: > Okay, I finally got an error message with the --with-mail-gid=nobody: > > : Command died with status 2: > "/var/lib/mailman/mail/wrapper post testing1". Command output: Failure > to > exec script. WANTED gid 99, GOT gid 12. (Reconfigure to take 12?) > > so I recompiled with --with-mail-gid=12 (mail) and now I'm back to getting > a repeating error in logs/smtp logs/smtp-failure and logs/post. I'm stuck. > I've been working on this all day and I'm out of patience. > > > > > -----Original Message----- > From: mailman-users-admin at python.org > [mailto:mailman-users-admin at python.org]On Behalf Of Thomas Spellman > Sent: Wednesday, August 14, 2002 2:30 AM > To: wolf at wolfstream.net; mailman-users at python.org > Subject: RE: [Mailman-Users] --with-mail-gid using postfix > > > I downloaded the RPM version, which didn't run because of the > --with-cgi-gid problem. I downloaded the SRPM and made sure the .spec file > had the correct configure options. this time the username and groupname > were already set as "mail" and the mail-gid=nobody. I made an rpm and > installed, but then got the exact same errors as before. > From wolf at wolfstream.net Wed Aug 14 12:32:06 2002 From: wolf at wolfstream.net (Tom Whiting) Date: Wed, 14 Aug 2002 05:32:06 -0500 Subject: [Mailman-Users] "relaying prohibited by admin" error In-Reply-To: References: Message-ID: <200208140532.06967.wolf@wolfstream.net> Well, check to make sure you've actually set up sendmail, or which ever MTA you ARE using correctly then. Relaying being prohibited usually means you have NOT set up your MTA on the server correctly. Remember, by DEFAULT the later versions of sendmail deny relaying. This is something you're going to have to change. On Wednesday 14 August 2002 05:19 am, Wolfram Knipp wrote: > hi, > on my DNS server i set lists.mydomain.org to point to the IP addy of the > server Mailman is on. > I'm required to use LISTS.mydomain.org, because mydomain.org is already > being used for another server. > > as for Qmail, nope I'm not using it... > > > - > Wolfram Knipp > > > -----Original Message----- > From: mailman-users-admin at python.org > [mailto:mailman-users-admin at python.org]On Behalf Of Matthias Janichen > Sent: Tuesday, August 13, 2002 2:30 PM > To: mailman-users at python.org > Subject: Re: [Mailman-Users] "relaying prohibited by admin" error > > At 14:30 13.08.02 +0800, Wolfram Knipp wrote: > > > > (reason: 550 relaying to prohibited by > >administrator) > > is lists.mydomain.org a different server or just a virtual domain on the > same machine? In that case you should add it to the list of localhosts. For > Qmail this would be the file /var/qmail/control/rcpthosts > > try to send to mylist at mydomain.org and get rid of "lists." > > Reg. > > > ------------------------------------------------------ > Mailman-Users mailing list > Mailman-Users at python.org > 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 mailing list > Mailman-Users at python.org > 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/ -- ---------------------------------------------------- TJW: Head tech, Dreamless Realms Mud: http://dreamless.wolfstream.net Snippets http://dreamless.wolfstream.net/ Telnet dreamless.wolfstream.net:9275 The OLC Pages http://olc.wolfstream.net ---------------------------------------------------- From quantum at sqf-clan.com Wed Aug 14 12:39:12 2002 From: quantum at sqf-clan.com (Wolfram Knipp) Date: Wed, 14 Aug 2002 18:39:12 +0800 Subject: [Mailman-Users] "relaying prohibited by admin" error In-Reply-To: <200208140532.06967.wolf@wolfstream.net> Message-ID: yes I'm using sendmail. later versions of sendmail disallow relaying? ugh... this could be the issue then. where is the sendmail configuration file (default) on the server? i was unsuccessful at trying to find it earlier on thanks - Wolfram Knipp -----Original Message----- From: mailman-users-admin at python.org [mailto:mailman-users-admin at python.org]On Behalf Of Tom Whiting Sent: Wednesday, August 14, 2002 6:32 PM To: Wolfram Knipp; Matthias Janichen Cc: mailman-users at python.org Subject: Re: [Mailman-Users] "relaying prohibited by admin" error Well, check to make sure you've actually set up sendmail, or which ever MTA you ARE using correctly then. Relaying being prohibited usually means you have NOT set up your MTA on the server correctly. Remember, by DEFAULT the later versions of sendmail deny relaying. This is something you're going to have to change. On Wednesday 14 August 2002 05:19 am, Wolfram Knipp wrote: > hi, > on my DNS server i set lists.mydomain.org to point to the IP addy of the > server Mailman is on. > I'm required to use LISTS.mydomain.org, because mydomain.org is already > being used for another server. > > as for Qmail, nope I'm not using it... > > > - > Wolfram Knipp > > > -----Original Message----- > From: mailman-users-admin at python.org > [mailto:mailman-users-admin at python.org]On Behalf Of Matthias Janichen > Sent: Tuesday, August 13, 2002 2:30 PM > To: mailman-users at python.org > Subject: Re: [Mailman-Users] "relaying prohibited by admin" error > > At 14:30 13.08.02 +0800, Wolfram Knipp wrote: > > > > (reason: 550 relaying to prohibited by > >administrator) > > is lists.mydomain.org a different server or just a virtual domain on the > same machine? In that case you should add it to the list of localhosts. For > Qmail this would be the file /var/qmail/control/rcpthosts > > try to send to mylist at mydomain.org and get rid of "lists." > > Reg. > > > ------------------------------------------------------ > Mailman-Users mailing list > Mailman-Users at python.org > 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 mailing list > Mailman-Users at python.org > 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/ -- ---------------------------------------------------- TJW: Head tech, Dreamless Realms Mud: http://dreamless.wolfstream.net Snippets http://dreamless.wolfstream.net/ Telnet dreamless.wolfstream.net:9275 The OLC Pages http://olc.wolfstream.net ---------------------------------------------------- ------------------------------------------------------ Mailman-Users mailing list Mailman-Users at python.org 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/ From wolf at wolfstream.net Wed Aug 14 12:52:22 2002 From: wolf at wolfstream.net (Tom Whiting) Date: Wed, 14 Aug 2002 05:52:22 -0500 Subject: [Mailman-Users] "relaying prohibited by admin" error In-Reply-To: References: Message-ID: <200208140552.22577.wolf@wolfstream.net> More than likely yes it is the problem, if you're using a distribution that has been released in, say, the past year or so, and haven't touched the config files. As far as where your config files are, look for 'em in /etc/mail (on most distributions). If they're not there, grab a big ol cup of coffee, pull up your distribution's manual and start reading away. You'll have to do the latter anyways I'm sure, because enabling sendmail to relay to x server is not fun by any means. On Wednesday 14 August 2002 05:39 am, Wolfram Knipp wrote: > yes I'm using sendmail. > later versions of sendmail disallow relaying? ugh... this could be the > issue then. > where is the sendmail configuration file (default) on the server? i was > unsuccessful at trying to find it earlier on > thanks > > > - > Wolfram Knipp > > > -----Original Message----- > From: mailman-users-admin at python.org > [mailto:mailman-users-admin at python.org]On Behalf Of Tom Whiting > Sent: Wednesday, August 14, 2002 6:32 PM > To: Wolfram Knipp; Matthias Janichen > Cc: mailman-users at python.org > Subject: Re: [Mailman-Users] "relaying prohibited by admin" error > > > Well, check to make sure you've actually set up sendmail, or which ever MTA > you ARE using correctly then. > Relaying being prohibited usually means you have NOT set up your MTA on the > server correctly. Remember, by DEFAULT the later versions of sendmail deny > relaying. This is something you're going to have to change. > > On Wednesday 14 August 2002 05:19 am, Wolfram Knipp wrote: > > hi, > > on my DNS server i set lists.mydomain.org to point to the IP addy of > > the server Mailman is on. > > I'm required to use LISTS.mydomain.org, because mydomain.org is already > > being used for another server. > > > > as for Qmail, nope I'm not using it... > > > > > > - > > Wolfram Knipp > > > > > > -----Original Message----- > > From: mailman-users-admin at python.org > > [mailto:mailman-users-admin at python.org]On Behalf Of Matthias Janichen > > Sent: Tuesday, August 13, 2002 2:30 PM > > To: mailman-users at python.org > > Subject: Re: [Mailman-Users] "relaying prohibited by admin" error > > > > At 14:30 13.08.02 +0800, Wolfram Knipp wrote: > > > > > > (reason: 550 relaying to prohibited by > > >administrator) > > > > is lists.mydomain.org a different server or just a virtual domain on the > > same machine? In that case you should add it to the list of localhosts. > > For > > > Qmail this would be the file /var/qmail/control/rcpthosts > > > > try to send to mylist at mydomain.org and get rid of "lists." > > > > Reg. > > > > > > ------------------------------------------------------ > > Mailman-Users mailing list > > Mailman-Users at python.org > > 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 mailing list > > Mailman-Users at python.org > > 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/ -- ---------------------------------------------------- TJW: Head tech, Dreamless Realms Mud: http://dreamless.wolfstream.net Snippets http://dreamless.wolfstream.net/ Telnet dreamless.wolfstream.net:9275 The OLC Pages http://olc.wolfstream.net ---------------------------------------------------- From peter.bengtson at musikelit.nu Wed Aug 14 12:59:07 2002 From: peter.bengtson at musikelit.nu (Peter Bengtson) Date: Wed, 14 Aug 2002 12:59:07 +0200 Subject: [Mailman-Users] Reply-To in 2.1b3 changed Message-ID: <3D5A37FB.BC4EE41E@musikelit.nu> In 2.1b3, as opposed to 2.1b2, the Reply-To and To fields now include the _entire_ description of the list as configured on the General Options page. See below: > Subject: Re: [Blah] Question > Date: Wed, 14 Aug 2002 12:34:28 +0200 > From: Peter Bengtson > Reply-To: This list is for the discussion of Blah > To: This list is for the discussion of Blah I have scoured the admin pages and the NEWS document, but I can't find a way of turning this off. Is it a bug? It would make much more sense if it were the _name_ of the list ("Blah", in the example above) rather than the list description, which isn't always worded to serve as a recipient address. If it is a feature, I think the design team should reconsider their choice, or add a new data field explicitly for this purpose. But to use a list description (albeit a supposedly terse one) as the name of a recipient is not a very good idea. / Peter Bengtson From wolf at wolfstream.net Wed Aug 14 13:06:39 2002 From: wolf at wolfstream.net (Tom Whiting) Date: Wed, 14 Aug 2002 06:06:39 -0500 Subject: [Mailman-Users] Reply-To in 2.1b3 changed In-Reply-To: <3D5A37FB.BC4EE41E@musikelit.nu> References: <3D5A37FB.BC4EE41E@musikelit.nu> Message-ID: <200208140606.39165.wolf@wolfstream.net> This is something that was enabled by you. To change that, go through the config pages of your individual list, and find out how to change it back to what it should be. By default, mailman sets the reply to the USER that posted the mail. Anyhing other than that is a result of an administrative error. On Wednesday 14 August 2002 05:59 am, Peter Bengtson wrote: > In 2.1b3, as opposed to 2.1b2, the Reply-To and To fields now include > the _entire_ description of the list as configured on the General > > Options page. See below: > > Subject: Re: [Blah] Question > > Date: Wed, 14 Aug 2002 12:34:28 +0200 > > From: Peter Bengtson > > Reply-To: This list is for the discussion of Blah > > To: This list is for the discussion of Blah > > I have scoured the admin pages and the NEWS document, but I can't find a > way of turning this off. > > Is it a bug? It would make much more sense if it were the _name_ of the > list ("Blah", in the example above) rather than the list description, > which isn't always worded to serve as a recipient address. > > If it is a feature, I think the design team should reconsider their > choice, or add a new data field explicitly for this purpose. But to use > a list description (albeit a supposedly terse one) as the name of a > recipient is not a very good idea. > > / Peter Bengtson > > ------------------------------------------------------ > Mailman-Users mailing list > Mailman-Users at python.org > 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/ -- ---------------------------------------------------- TJW: Head tech, Dreamless Realms Mud: http://dreamless.wolfstream.net Snippets http://dreamless.wolfstream.net/ Telnet dreamless.wolfstream.net:9275 The OLC Pages http://olc.wolfstream.net ---------------------------------------------------- From quantum at sqf-clan.com Wed Aug 14 13:11:33 2002 From: quantum at sqf-clan.com (Wolfram Knipp) Date: Wed, 14 Aug 2002 19:11:33 +0800 Subject: [Mailman-Users] "relaying prohibited by admin" error In-Reply-To: <200208140552.22577.wolf@wolfstream.net> Message-ID: is there a better alternative to sendmail then? - Wolfram Knipp -----Original Message----- From: mailman-users-admin at python.org [mailto:mailman-users-admin at python.org]On Behalf Of Tom Whiting Sent: Wednesday, August 14, 2002 6:52 PM To: Wolfram Knipp Cc: mailman-users at python.org Subject: Re: [Mailman-Users] "relaying prohibited by admin" error More than likely yes it is the problem, if you're using a distribution that has been released in, say, the past year or so, and haven't touched the config files. As far as where your config files are, look for 'em in /etc/mail (on most distributions). If they're not there, grab a big ol cup of coffee, pull up your distribution's manual and start reading away. You'll have to do the latter anyways I'm sure, because enabling sendmail to relay to x server is not fun by any means. On Wednesday 14 August 2002 05:39 am, Wolfram Knipp wrote: > yes I'm using sendmail. > later versions of sendmail disallow relaying? ugh... this could be the > issue then. > where is the sendmail configuration file (default) on the server? i was > unsuccessful at trying to find it earlier on > thanks > > > - > Wolfram Knipp > > > -----Original Message----- > From: mailman-users-admin at python.org > [mailto:mailman-users-admin at python.org]On Behalf Of Tom Whiting > Sent: Wednesday, August 14, 2002 6:32 PM > To: Wolfram Knipp; Matthias Janichen > Cc: mailman-users at python.org > Subject: Re: [Mailman-Users] "relaying prohibited by admin" error > > > Well, check to make sure you've actually set up sendmail, or which ever MTA > you ARE using correctly then. > Relaying being prohibited usually means you have NOT set up your MTA on the > server correctly. Remember, by DEFAULT the later versions of sendmail deny > relaying. This is something you're going to have to change. > > On Wednesday 14 August 2002 05:19 am, Wolfram Knipp wrote: > > hi, > > on my DNS server i set lists.mydomain.org to point to the IP addy of > > the server Mailman is on. > > I'm required to use LISTS.mydomain.org, because mydomain.org is already > > being used for another server. > > > > as for Qmail, nope I'm not using it... > > > > > > - > > Wolfram Knipp > > > > > > -----Original Message----- > > From: mailman-users-admin at python.org > > [mailto:mailman-users-admin at python.org]On Behalf Of Matthias Janichen > > Sent: Tuesday, August 13, 2002 2:30 PM > > To: mailman-users at python.org > > Subject: Re: [Mailman-Users] "relaying prohibited by admin" error > > > > At 14:30 13.08.02 +0800, Wolfram Knipp wrote: > > > > > > (reason: 550 relaying to prohibited by > > >administrator) > > > > is lists.mydomain.org a different server or just a virtual domain on the > > same machine? In that case you should add it to the list of localhosts. > > For > > > Qmail this would be the file /var/qmail/control/rcpthosts > > > > try to send to mylist at mydomain.org and get rid of "lists." > > > > Reg. > > > > > > ------------------------------------------------------ > > Mailman-Users mailing list > > Mailman-Users at python.org > > 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 mailing list > > Mailman-Users at python.org > > 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/ -- ---------------------------------------------------- TJW: Head tech, Dreamless Realms Mud: http://dreamless.wolfstream.net Snippets http://dreamless.wolfstream.net/ Telnet dreamless.wolfstream.net:9275 The OLC Pages http://olc.wolfstream.net ---------------------------------------------------- ------------------------------------------------------ Mailman-Users mailing list Mailman-Users at python.org 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/ From wolf at wolfstream.net Wed Aug 14 13:11:40 2002 From: wolf at wolfstream.net (Tom Whiting) Date: Wed, 14 Aug 2002 06:11:40 -0500 Subject: [Mailman-Users] "relaying prohibited by admin" error In-Reply-To: References: Message-ID: <200208140611.40987.wolf@wolfstream.net> On Wednesday 14 August 2002 06:11 am, Wolfram Knipp wrote: > is there a better alternative to sendmail then? > > > - > Wolfram Knipp Personally, I prefer Qmail.. It's just easier to administrate, and, believe it or not more secure. Although, you'll hear quite a few other responses from quite a few other individuals, so I can't say what's best for you. I just know what works for me From peter.bengtson at musikelit.nu Wed Aug 14 13:22:43 2002 From: peter.bengtson at musikelit.nu (Peter Bengtson) Date: Wed, 14 Aug 2002 13:22:43 +0200 Subject: [Mailman-Users] Reply-To in 2.1b3 changed References: <3D5A37FB.BC4EE41E@musikelit.nu> <200208140606.39165.wolf@wolfstream.net> Message-ID: <3D5A3D84.6775AF96@musikelit.nu> Tom Whiting wrote: > > This is something that was enabled by you. > To change that, go through the config pages of your individual list, and find > out how to change it back to what it should be. > By default, mailman sets the reply to the USER that posted the mail. Anyhing > other than that is a result of an administrative error. Thanks for the reply, but I'm afraid you are misunderstanding the question. I'm not a na?ve user: the list has always been set up to direct the reply to the _list_, not the posting user. (The discussion whether that is a Good Thing or a Bad Thing is beside the pointm, but there are some good pointers in Mailman itself, and also in the documentation should you want to read more about it.) In this case, it is what we need - it is not an administrative error. It is not the problem, which is the following: Prior to 2.1b3, the Reply-To (as well as the To header) looked like this: Reply-To: blah at frob.com To: blah at frob.com However, since 2.1b3 it now looks like this: Reply-To: This is a list intended for bla bla bla bla To: This is a list intended for bla bla bla bla The design team has for some reason decided to include the Description of the list (entered on the General Options page) in the Reply-To and To headers. This is, IMHO, a Bad Idea. Furthermore, there seems to be no way of turning this new behaviour off, other than setting the Description field to blank, or hacking the code (which is doable). It would be far better, however, if the design decision was reversed - I see no reason for the Description to be used as a Recipient; for a special field containing the Reply-To and To recipient cleartext info to be introduced; for the list name to be used instead; or for a radio button to be created to turn this behaviour on and off. / Peter Bengtson From MJ2 at percomp.de Wed Aug 14 13:49:55 2002 From: MJ2 at percomp.de (Matthias =?iso-8859-1?Q?J=E4nichen?=) Date: Wed, 14 Aug 2002 13:49:55 +0200 Subject: [Mailman-Users] "relaying prohibited by admin" error Message-ID: <5.1.1.6.0.20020814134951.01491840@pop3.percomp.de> At 06:11 14.08.2002 -0500, Tom Whiting wrote: >Qmail.. It's just easier to administrate, and, believe it >or not more secure. Agreed! ;-) From Ryan.Pratt at Sun.COM Wed Aug 14 16:31:46 2002 From: Ryan.Pratt at Sun.COM (Ryan Pratt) Date: Wed, 14 Aug 2002 08:31:46 -0600 Subject: [Mailman-Users] iPlanet and Mailman/Pipermail issue Message-ID: <3D5A69D2.6000302@Sun.COM> So I am able to see all of the admin pages/cgis for mailman, but I cannot see the public archives. The private archives work fine. This seems like a cut-and-dry "Follow symbolic links" issue on the webserver, but I have triple checked that it is enabled. Is there any other possiblility? From the error log of iPlanet 6.2 when I access the public archives: 14/Aug/2002:08:25:49] failure (10535): for host x.x.x.50 trying to GET /pipermail/test3/index.html, cgi_start_exec reports: cannot execute CGI script /opt/mailman/archives/public/test3/index.html (permission denied) From the access log when I access the private archives: x.x.x.50 - - [14/Aug/2002:08:26:34 -0600] "POST /mailman/private/test2/ HTTP/1.0" 200 1072 x.x.x.50 - - [14/Aug/2002:08:26:36 -0600] "GET /mailman/private/test2/2002-August/thread.html HTTP/1.0" 200 1635 -- Ryan H. Pratt NWS Lab Manager Sun Microsystems, Inc. (303) 272-8902 From jonc at haht.com Wed Aug 14 16:52:55 2002 From: jonc at haht.com (Jon Carnes) Date: Wed, 14 Aug 2002 10:52:55 -0400 Subject: [Mailman-Users] iPlanet and Mailman/Pipermail issue In-Reply-To: <3D5A69D2.6000302@Sun.COM> Message-ID: <000b01c243a2$462f8ec0$0b04010a@JCARNES> Could it really be a rights issue? Who has rights to read /opt/mailman/archives/public/test3/index.html -----Original Message----- From: Ryan Pratt [mailto:Ryan.Pratt at Sun.COM] Sent: Wednesday, August 14, 2002 10:32 AM To: mailman-users Subject: [Mailman-Users] iPlanet and Mailman/Pipermail issue So I am able to see all of the admin pages/cgis for mailman, but I cannot see the public archives. The private archives work fine. This seems like a cut-and-dry "Follow symbolic links" issue on the webserver, but I have triple checked that it is enabled. Is there any other possiblility? From the error log of iPlanet 6.2 when I access the public archives: 14/Aug/2002:08:25:49] failure (10535): for host x.x.x.50 trying to GET /pipermail/test3/index.html, cgi_start_exec reports: cannot execute CGI script /opt/mailman/archives/public/test3/index.html (permission denied) From the access log when I access the private archives: x.x.x.50 - - [14/Aug/2002:08:26:34 -0600] "POST /mailman/private/test2/ HTTP/1.0" 200 1072 x.x.x.50 - - [14/Aug/2002:08:26:36 -0600] "GET /mailman/private/test2/2002-August/thread.html HTTP/1.0" 200 1635 -- Ryan H. Pratt NWS Lab Manager Sun Microsystems, Inc. (303) 272-8902 ------------------------------------------------------ Mailman-Users mailing list Mailman-Users at python.org 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/ From mike.mills at earthlink.net Wed Aug 14 16:59:06 2002 From: mike.mills at earthlink.net (Mike Mills) Date: Wed, 14 Aug 2002 07:59:06 -0700 Subject: [Mailman-Users] Help - Error In-Reply-To: <20020814110701.26509.9436.Mailman@mail.python.org> Message-ID: <000401c243a3$37eb6860$42d3b3d1@millshome> This morning I started receiving the following error message. Nothing that I know of has changed. Since it is coming from qrunner it is occurring once a minute. Suggestions on what to look for and how to correct it please? Traceback (most recent call last): File "/usr/local/mailman/cron/qrunner", line 85, in ? from Mailman import MailList File "/usr/local/mailman/Mailman/MailList.py", line 30, in ? import socket File "/usr/local/lib/python2.1/socket.py", line 41, in ? from _socket import * ImportError: /usr/lib/libssl.so.2: Undefined symbol "OpenSSLDie" Mike Mills mike.mills at earthlink.net +1(510)537.8960 -------------- next part -------------- A non-text attachment was scrubbed... Name: Mike Mills (E-mail).vcf Type: text/x-vcard Size: 467 bytes Desc: not available Url : http://mail.python.org/pipermail/mailman-users/attachments/20020814/090429ff/attachment.vcf From Ryan.Pratt at Sun.COM Wed Aug 14 17:08:19 2002 From: Ryan.Pratt at Sun.COM (Ryan Pratt) Date: Wed, 14 Aug 2002 09:08:19 -0600 Subject: [Mailman-Users] iPlanet and Mailman/Pipermail issue References: <000b01c243a2$462f8ec0$0b04010a@JCARNES> Message-ID: <3D5A7263.3060500@Sun.COM> It is mailman:mailman. I opened it up with 777 and this is the error that I get now... [14/Aug/2002:09:06:45] failure (10535): for host x.x.x.7 trying to GET /pipermail/test3/index.html, cgi_start_output reports: cannot execute CGI script /opt/mailman/archives/public/test3/index.html (exec() failure [Exec format error]), chroot=, dir=, user=, group= Jon Carnes wrote: > Could it really be a rights issue? Who has rights to read > /opt/mailman/archives/public/test3/index.html > > -----Original Message----- > From: Ryan Pratt [mailto:Ryan.Pratt at Sun.COM] > Sent: Wednesday, August 14, 2002 10:32 AM > To: mailman-users > Subject: [Mailman-Users] iPlanet and Mailman/Pipermail issue > > > So I am able to see all of the admin pages/cgis for mailman, but I cannot > see the public archives. The private archives work fine. This seems like a > cut-and-dry "Follow symbolic links" issue on the webserver, but I have > triple checked that it is enabled. Is there any other possiblility? > > From the error log of iPlanet 6.2 when I access the public archives: > > 14/Aug/2002:08:25:49] failure (10535): > for host x.x.x.50 trying to GET /pipermail/test3/index.html, cgi_start_exec > reports: cannot execute CGI script > /opt/mailman/archives/public/test3/index.html (permission denied) > > From the access log when I access the private archives: > > x.x.x.50 - - [14/Aug/2002:08:26:34 -0600] "POST /mailman/private/test2/ > HTTP/1.0" 200 1072 > x.x.x.50 - - [14/Aug/2002:08:26:36 -0600] "GET > /mailman/private/test2/2002-August/thread.html HTTP/1.0" 200 1635 > > > -- > > > Ryan H. Pratt > NWS Lab Manager > Sun Microsystems, Inc. > (303) 272-8902 > > > ------------------------------------------------------ > Mailman-Users mailing list > Mailman-Users at python.org > 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/ > > -- Ryan H. Pratt NWS Lab Manager Sun Microsystems, Inc. (303) 272-8902 From jeroen.valcke at belnet.be Wed Aug 14 17:14:58 2002 From: jeroen.valcke at belnet.be (Jeroen Valcke) Date: Wed, 14 Aug 2002 17:14:58 +0200 Subject: [Mailman-Users] some details Message-ID: <20020814151457.GU13439@jeroen.fw.belnet.be> Hello, After a second attempt I succeeded in installing MailMan, version 2.0.11 I created a test mailing list and took MailMan for a test drive. All seems to work perfect. Just a small detail and something I don't understand. I 'instructed' mailman to use lists.mydomain.com as default hostname. Seems to work, when the lists sends out a message the from is indeed However the confirmation message sent after a subscription request does not comply with this rule. The 'confirmation of subscription' message sent by Mailman has a from header in the form of How can I fix this? Secondly I found a weird file in the directory /usr/mail/ The name of the file is mailman I don't understand what it is doing or why it was created in this location since I installed MailMan in the directory /usr/local/mailman, weird, can anybody explaing? Kindest regards, -Jeroen- -- Jeroen Valcke sst at belnet.be jeroen.valcke at belnet.be From cguel at seguridad.unam.mx Tue Aug 13 10:37:05 2002 From: cguel at seguridad.unam.mx (Juan Carlos Guel Lopez) Date: Tue, 13 Aug 2002 03:37:05 -0500 (CDT) Subject: [Mailman-Users] Debuging problem.. Message-ID: -----BEGIN PGP SIGNED MESSAGE----- Good morning list!! Recently I've installed Mailman 2.0.13 with python 2.2.1 and everything works great, but, when access to the admin page (admindb) below of the web page I can see a message which says "bug in mailman 2.0. 13" The strange here is that I can administer the page, and resend all the queued messages and work good except for this message. I went to the log file and found this. - -------------------------------------------------------------------------- Aug 13 03:18:35 2002 admin(18295): @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ admin(18295): [----- Mailman Version: 2.0.13 -----] admin(18295): [----- Traceback ------] admin(18295): Traceback (most recent call last): admin(18295): File "/listas/src/mailman-2.0.13/scripts/driver", line 96, in run_main admin(18295): main() admin(18295): File "../Mailman/Cgi/admindb.py", line 116, in main admin(18295): mlist.Save() admin(18295): File "/listas/mailman-2.0.13/Mailman/MailList.py", line 860, in Save admin(18295): self.SaveRequestsDb() admin(18295): File "/listas/mailman-2.0.13/Mailman/ListAdmin.py", line 93, in SaveRequestsDb admin(18295): self.__closedb() admin(18295): File "/listas/mailman-2.0.13/Mailman/ListAdmin.py", line 80, in __closedb admin(18295): fp = open(self.__filename, 'w') admin(18295): IOError: [Errno 13] Permission denied: '/listas/mailman-2.0.13/lists/test/request.db' admin(18295): [----- Python Information -----] - ---------------------------------------------------------------------------- Anyone have an idea what's wrong??? I checked the permissions -OK I checked the files - OK Repeat the lists are working well, just this strange problem in the admin pages... Saludos - --JC GUEL -----BEGIN PGP SIGNATURE----- Version: 2.6.3i Charset: cp850 iQEVAwUBPVjFN5lW1rrzglhVAQHtiggAoyWvdtxEuTRpauq1wqCJTNPlpj3hFWTr iG7qrLKB4w96gLCIRf4IVFjY+gOdP3GkFNITLQigNFu2xKfDB4CjWxCk56yM7Lws PWYwScjMPl3yZxdE3BlJhtuts6uOyl6Kr5olCDfah57JFYUGIjeD581/8uZ8WiSa OMUMrUcmZufmAd0/T9rqDrSDc3iRKuzeWq6Ib5tFpUw+T95zFI3MCWlGT7uOSFd7 0Qk2c4LxHeTnLKkyogH5h0rvEEzBLxpKUo+wSs+a77rRlDcluus0dXhsKpwXqHjM UgGU2a3DBJutVkqzhBZTReeBjm0dCtlQFS88nmasfwrfwCC0u0Ibaw== =lr+N -----END PGP SIGNATURE----- From jijo at free.net.ph Tue Aug 13 12:05:40 2002 From: jijo at free.net.ph (Federico Sevilla III) Date: Tue, 13 Aug 2002 18:05:40 +0800 Subject: [Mailman-Users] Archive handling "^From .*" within email Message-ID: <20020813100540.GB8798@leathercollection.ph> Hi everyone, I hope I am sending this to the right list. I do not know if this can be classified as a bug, or if it should get clarified first so I'm not filing a bug right away on the SourceForge bug tracking system. Please cc me replies, as I am not on the list. Thank you very much. I had recently started using Lurker[1] to archive mail. I host a number of mailing lists using Mailman 2.0.12, and found out that I could use the archives in archives/private/.mbox/.mbox directly, since Lurker uses as its source standard mbox files. [1] http://lurker.sourceforge.net/ I've been in communication with the author of Lurker (Wesley Terpstra) and one of the things we noted is that Mailman doesn't prepend lines the pattern '^From .*' with a '>'. What happens is that software like Lurker has difficulty figuring out whether the line begins a message, or is a part of an existing message. I checked the pipermail archives, and it seems mmarch(8) (if this is a Debian-ism then the "arch" utlity is what I mean) is what takes care of prepending these invalid From lines with ">". According to Wesley Terpstra, standard mbox files should already have lines beginning with "From" prepended with a '>' to distinguish them from standard mbox From header lines that mark the beginning of new mail. Please let me know if this assertion is incorrect, and if indeed it is the archiving software that must figure this bit out. If on the other hand it is a bug, please let me know as well so I can file a bug usign the bug tracking system. Thank you very much for your time. --> Jijo -- Federico Sevilla III : Network Administrator : The Leather Collection, Inc. GnuPG Key ID : 0x93B746BE -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: not available Url : http://mail.python.org/pipermail/mailman-users/attachments/20020813/daa1133a/attachment.pgp From rosc at imc.nl Tue Aug 13 13:08:20 2002 From: rosc at imc.nl (Roelf Schreurs) Date: Tue, 13 Aug 2002 13:08:20 +0200 Subject: [Mailman-Users] GID (again but archives don't help) References: <3D57BEBC.2060008@imc.nl> <20020813053734.GE78399@ns2.wananchi.com> Message-ID: <3D58E8A4.3090402@imc.nl> Thanks that helped. I thought the problem was with the "--with-username=1086" but indeed it was with "--with-mail-gid=6". Odhiambo Washington wrote: > * Roelf Schreurs [20020813 00:36]: wrote: > >>Hi >> >>I just installed mailman 2.1b3 >> >>uid=1086(mailman) gid=1086(mailman) groups=1086(mailman) >> >>./configure --prefix=/opt/mailman --with-username=1086 --with-groupname=1086 >> >>su-2.05a$ ls -l >>-rwxr-sr-x 1 mailman mailman 18005 Aug 12 15:37 mailman >> >>: Command died with status 2: "/opt/mailman/mail/mailman >>post >> mailman". Command output: Failure to exec script. WANTED gid 1086, >>GOT gid >> 65534. (Reconfigure to take 65534?) >> >>uid=1001(postfix) gid=1002(postfix) groups=1002(postfix) >>running postfix >> >>I recompiled with gid 65534 but that still didn't work. >>Any help please? >> > > > While I haven't read any postfix related READMEs, all I had to do was just > worry about two things, mail-gid and cgi-gid. Now I know just so well that > my MTA (Exim) has a gid=6 and apache has a gid=80 so life was simple because > I did not want to tweak the rest. So if I were you, I'd use the following > (change 6 and 80 to reflect yours). Group ids are listed in /etc/group for > the OSes I know ;-) > > ./configure --prefix=/opt/mailman --with-mail-gid=6 --with-cgi-gid=80 > make install > > > > cheers > - wash > +----------------------------------+-----------------------------------------+ > Odhiambo Washington, wash at wananchi.com . WANANCHI ONLINE LTD (Nairobi, KE) | > http://ns2.wananchi.com/~wash/ . 1ere Etage, Loita Hse, Loita St., | > GSM: (254) 722 743 223 . # 10286, 00100 NAIROBI | > +---------------------------------+------------------------------------------+ > "Oh My God! They killed init! You Bastards!" > --from a /. post > > ++ > ``That Ariel Sharon. Boy, he sure is controversial. > Most Western countries would have to have a military coup > before they enjoyed a leader of that caliber.'' (Sydney Webb) > -- Roelf Schreurs IMC Amsterdam +31 20 527 5092 Chaos reigns within. Reflect, repent, and reboot. Order shall return. From Ryan.Pratt at Sun.COM Tue Aug 13 19:19:54 2002 From: Ryan.Pratt at Sun.COM (Ryan Pratt) Date: Tue, 13 Aug 2002 11:19:54 -0600 Subject: [Mailman-Users] Pipermail and Mailman Message-ID: <3D593FBA.8050404@Sun.COM> I have iPlanet 6.22 webserver running with Mailman 2.0.13. I have the admin cgi scripts working fine, but the pipermail archives are getting a cgi error. I have set the follow sym links set and an alias to /pipermail/ to /opt/mailman/archives/public but I still get this error. for host x.x.x.x trying to GET /pipermail/test3/index.html, cgi_start_output reports: cannot execute CGI script /opt/mailman/archives/public/test3/index.html (exec() failure [Exec format error]), chroot=, dir=, user=, group= Any ideas? -- Ryan H. Pratt NWS Lab Manager Sun Microsystems, Inc. (303) 272-8902 From nathan at sausage.com Tue Aug 13 21:55:27 2002 From: nathan at sausage.com (Nathan Allan) Date: Tue, 13 Aug 2002 14:55:27 -0500 Subject: [Mailman-Users] New User looking for unsubscribe details Message-ID: Excuse me for the simple question, I have read all the documentation I can find, however I cannot find how a user can unsubscribe EXCEPT through the web site interface. Can a user simple reply to the email and have subscribe in the subject line? I want to make it as simple as possible for my users (which I am going to port over from Lyris) Thanks Nathan _________________________________________________ Nathan Allan Product and Services Manager Sausage Software e: nathan at sausage.com w: www.sausage.com _________________________________________________ Flexible Web editing tools for all skill levels _________________________________________________ AS SEEN ON: CNET, ZDnet, Tucows, .NET Magazine _________________________________________________ AS USED BY MILLIONS OF WEBMASTERS WORLDWIDE _________________________________________________ From polavarapur at convergent.com Wed Aug 14 16:03:46 2002 From: polavarapur at convergent.com (Raghuveer Polavarapu) Date: Wed, 14 Aug 2002 10:03:46 -0400 Subject: [Mailman-Users] Problem accessing the admin pages for a list-Type Errror:not enough arguments for format string Message-ID: Hi guys I had everything up and running for mailman untill I encountered this problem yesterday. I am trying to access the admin pages for one of the lists that I created. It prompts me for a password and then I enter the admin password for that list and then it gives me the error: Bug in Mailman version 2.0.12 We're sorry, we hit a bug! Please inform the webmaster for this site of this problem. Printing of traceback and other system information has been explicitly inhibited, but the webmaster can find this information in the Mailman error logs. When I look at the error log I see the following error: Type Error:not enough arguments for format string and the detailed log is below. admin(5878): [----- Mailman Version: 2.0.12 -----] admin(5878): [----- Traceback ------] admin(5878): Traceback (innermost last): admin(5878): File "/home/mailman/scripts/driver", line 96, in run_main admin(5878): main() admin(5878): File "../Mailman/Cgi/admin.py", line 173, in main admin(5878): FormatConfiguration(doc, mlist, category, category_suffix, cgid ata) admin(5878): File "../Mailman/Cgi/admin.py", line 328, in FormatConfiguration admin(5878): form.AddItem(FormatOptionsSection(category, mlist, cgi_data)) admin(5878): File "../Mailman/Cgi/admin.py", line 345, in FormatOptionsSection admin(5878): options = GetConfigOptions(mlist, category) admin(5878): File "../Mailman/Cgi/admin.py", line 977, in GetConfigOptions admin(5878): return mlist.GetConfigInfo()[category] admin(5878): File "/home/mailman/Mailman/MailList.py", line 350, in GetConfigI nfo admin(5878): config_info['digest'] = Digester.GetConfigInfo(self) admin(5878): File "/home/mailman/Mailman/Digester.py", line 44, in GetConfigIn fo admin(5878): return [ admin(5878): File "/home/mailman/Mailman/Utils.py", line 502, in maketext admin(5878): text = template % SafeDict(dict) admin(5878): TypeError: not enough arguments for format string could someone please help me with this, I have been struggling to flook up in the archives and couldnt find anything. thanks raghu From barry at python.org Wed Aug 14 17:38:54 2002 From: barry at python.org (Barry A. Warsaw) Date: Wed, 14 Aug 2002 11:38:54 -0400 Subject: [Mailman-Users] Reply-To in 2.1b3 changed References: <3D5A37FB.BC4EE41E@musikelit.nu> <200208140606.39165.wolf@wolfstream.net> <3D5A3D84.6775AF96@musikelit.nu> Message-ID: <15706.31118.528445.773643@anthem.wooz.org> >>>>> "PB" == Peter Bengtson writes: PB> The design team has for some reason decided to include the PB> Description of the list (entered on the General Options page) PB> in the Reply-To and To headers. This is, IMHO, a Bad PB> Idea. Furthermore, there seems to be no way of turning this PB> new behaviour off, other than setting the Description field to PB> blank, or hacking the code (which is doable). Yup, think of it as an experiment that doesn't quite work. I'll either remove this for the next beta or add a field to configure this in the admin's General page. -Barry From jonc at haht.com Wed Aug 14 18:16:37 2002 From: jonc at haht.com (Jon Carnes) Date: Wed, 14 Aug 2002 12:16:37 -0400 Subject: [Mailman-Users] iPlanet and Mailman/Pipermail issue In-Reply-To: <3D5A7263.3060500@Sun.COM> Message-ID: <001201c243ad$f7a3b720$0b04010a@JCARNES> Interesting... That error in Solaris typically means that the server cannot find the executable that is supposed to run a CGI. However, "pipermail" should simply be a web alias and not a script alias. Do you have it setup as a CGI? "pipermail" is generally a shortcut to ~mailman/archives/public/ -----Original Message----- From: Ryan Pratt [mailto:Ryan.Pratt at Sun.COM] Sent: Wednesday, August 14, 2002 11:08 AM To: jonc at haht.com Cc: mailman-users Subject: Re: [Mailman-Users] iPlanet and Mailman/Pipermail issue It is mailman:mailman. I opened it up with 777 and this is the error that I get now... [14/Aug/2002:09:06:45] failure (10535): for host x.x.x.7 trying to GET /pipermail/test3/index.html, cgi_start_output reports: cannot execute CGI script /opt/mailman/archives/public/test3/index.html (exec() failure [Exec format error]), chroot=, dir=, user=, group= Jon Carnes wrote: > Could it really be a rights issue? Who has rights to read > /opt/mailman/archives/public/test3/index.html > > -----Original Message----- > From: Ryan Pratt [mailto:Ryan.Pratt at Sun.COM] > Sent: Wednesday, August 14, 2002 10:32 AM > To: mailman-users > Subject: [Mailman-Users] iPlanet and Mailman/Pipermail issue > > > So I am able to see all of the admin pages/cgis for mailman, but I cannot > see the public archives. The private archives work fine. This seems like a > cut-and-dry "Follow symbolic links" issue on the webserver, but I have > triple checked that it is enabled. Is there any other possiblility? > > From the error log of iPlanet 6.2 when I access the public archives: > > 14/Aug/2002:08:25:49] failure (10535): > for host x.x.x.50 trying to GET /pipermail/test3/index.html, cgi_start_exec > reports: cannot execute CGI script > /opt/mailman/archives/public/test3/index.html (permission denied) > > From the access log when I access the private archives: > > x.x.x.50 - - [14/Aug/2002:08:26:34 -0600] "POST /mailman/private/test2/ > HTTP/1.0" 200 1072 > x.x.x.50 - - [14/Aug/2002:08:26:36 -0600] "GET > /mailman/private/test2/2002-August/thread.html HTTP/1.0" 200 1635 > > > -- > > > Ryan H. Pratt > NWS Lab Manager > Sun Microsystems, Inc. > (303) 272-8902 > > > ------------------------------------------------------ > Mailman-Users mailing list > Mailman-Users at python.org > 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/ > > -- Ryan H. Pratt NWS Lab Manager Sun Microsystems, Inc. (303) 272-8902 From claw at kanga.nu Wed Aug 14 18:26:45 2002 From: claw at kanga.nu (J C Lawrence) Date: Wed, 14 Aug 2002 09:26:45 -0700 Subject: [Mailman-Users] "relaying prohibited by admin" error In-Reply-To: Message from "Wolfram Knipp" of "Wed, 14 Aug 2002 19:11:33 +0800." References: Message-ID: <31767.1029342405@kanga.nu> On Wed, 14 Aug 2002 19:11:33 +0800 Wolfram Knipp wrote: > is there a better alternative to sendmail then? Please see the FAQ: http://www.python.org/cgi-bin/faqw-mm.py -- J C Lawrence ---------(*) Satan, oscillate my metallic sonatas. claw at kanga.nu He lived as a devil, eh? http://www.kanga.nu/~claw/ Evil is a name of a foeman, as I live. From pawal at blipp.com Wed Aug 14 18:54:18 2002 From: pawal at blipp.com (Patrik Wallstrom) Date: Wed, 14 Aug 2002 18:54:18 +0200 Subject: [Mailman-Users] newlist.py error after a debian install In-Reply-To: <0H0R005JRC3F4K@mtaout06.icomcast.net> References: <0H0R005JRC3F4K@mtaout06.icomcast.net> Message-ID: <20020814165418.GA25417@vic20.blipp.com> On Mon, 12 Aug 2002, bear wrote: > I used apt-get to install mailman (2.0.12-2) and when I run newlist I get > the following: > > Traceback (most recent call last): > File "/usr/sbin/newlist", line 223, in ? > main() > File "/usr/sbin/newlist", line 171, in main > mlist.Create(listname, owner_mail, pw) > File "/usr/lib/mailman/Mailman/MailList.py", line 782, in Create > Utils.ValidateEmail(admin) > File "/usr/lib/mailman/Mailman/Utils.py", line 160, in ValidateEmail > realname,str = rfc822.parseaddress(str) > AttributeError: 'rfc822' module has no attribute 'parseaddress' > > python -V returns 2.13 > > any idea? I've been thru the README.Debian and also been scanning this > list for a couple of days. I reported this bug to the Debian Mailman maintainer a few days ago. It should be fixed in the version that is sent out to ftp tonight (now?). (Bug#156341) -- patrik_wallstrom->foodfight->pawal at blipp.com->+46-709580442 From peter.bengtson at musikelit.nu Wed Aug 14 19:37:27 2002 From: peter.bengtson at musikelit.nu (Peter Bengtson) Date: Wed, 14 Aug 2002 19:37:27 +0200 Subject: [Mailman-Users] Reply-To in 2.1b3 changed References: <3D5A37FB.BC4EE41E@musikelit.nu> <200208140606.39165.wolf@wolfstream.net> <3D5A3D84.6775AF96@musikelit.nu> <15706.31118.528445.773643@anthem.wooz.org> Message-ID: <3D5A9552.E24A96E0@musikelit.nu> Excellent - thanks for the info! / Peter "Barry A. Warsaw" wrote: > > >>>>> "PB" == Peter Bengtson writes: > > PB> The design team has for some reason decided to include the > PB> Description of the list (entered on the General Options page) > PB> in the Reply-To and To headers. This is, IMHO, a Bad > PB> Idea. Furthermore, there seems to be no way of turning this > PB> new behaviour off, other than setting the Description field to > PB> blank, or hacking the code (which is doable). > > Yup, think of it as an experiment that doesn't quite work. I'll > either remove this for the next beta or add a field to configure this > in the admin's General page. > > -Barry From cprg at cprg.net Wed Aug 14 19:54:39 2002 From: cprg at cprg.net (MISTER Support Desk) Date: Wed, 14 Aug 2002 13:54:39 -0400 Subject: [Mailman-Users] New User looking for unsubscribe details References: Message-ID: <014f01c243bb$ade7f340$0100007f@vineln01.nj.comcast.net> To unsubscribe: (watch for wrapping, link needs to be all on one line!) ( mailto:LIST_NAME-request at YOUR_DOMAIN?subject=unsubscribe&body=unsubscribe%20 YOUR_PASSWORD ) Substitute your list name for: LIST_NAME Substitute the server name where list is run for: YOUR_DOMAIN Substitute the member's password for: YOUR_PASSWORD be sure to leave a "space" after unsubscribe in the body of message. For Help autoresponse: mailto:LIST_NAME-request at YOUR_DOMAIN?subject=help&body=%20 MrSD ----- Original Message ----- From: "Nathan Allan" To: Sent: Tuesday, August 13, 2002 3:55 PM Subject: [Mailman-Users] New User looking for unsubscribe details | Excuse me for the simple question, I have read all the documentation I can | find, however I cannot find how a user can unsubscribe EXCEPT through the | web site interface. | | Can a user simple reply to the email and have subscribe in the subject line? | | I want to make it as simple as possible for my users (which I am going to | port over from Lyris) | | Thanks | Nathan | _________________________________________________ | | Nathan Allan | | Product and Services Manager | Sausage From R.Barrett at ftel.co.uk Wed Aug 14 19:02:58 2002 From: R.Barrett at ftel.co.uk (Richard Barrett) Date: Wed, 14 Aug 2002 18:02:58 +0100 Subject: [Mailman-Users] mailman 2.1b3 and htdig In-Reply-To: <3D5A4303.7070304@imc.nl> References: <5.1.0.14.2.20020814102707.0329c058@pop.ftel.co.uk> Message-ID: <5.1.0.14.2.20020814175327.046cd9b8@pop.ftel.co.uk> I have just uploaded to sourceforge new versions of the following patches which are MM 2.1b3 compatible: http://sourceforge.net/tracker/index.php?func=detail&aid=444879&group_id=103&atid=300103 http://sourceforge.net/tracker/index.php?func=detail&aid=444884&group_id=103&atid=300103 I have made a lot of minor changes in the code introduced by the 444884 patch to bring it into line with MM coding "standards", following input from barry at python.org (Barry A. Warsaw). While I have attempted to test these changes it is entirely possible I have made some mistake or missed some error while testing. If anyone encounters problems with this 2.1b3 compatible patched code then let me know. At 13:46 14/08/2002 +0200, Roelf Schreurs wrote: >thanks > >Richard Barrett wrote: > >>At 08:27 14/08/2002 +0200, Roelf Schreurs wrote: >> >>>Hi >>> >>>I just installed the mailman 2.1b3 and would like to use htdig to search >>>the archives. But the 2 plugins needed only has up to version 2.1b2. Any >>>idea when the plugins will be available for beta 3? Or are they >>>available somewhere apart from the plugins page on soureforge? >>> >>>Thanks >>>Roelf >> >>I expect to upload to sourceforge versions of the 444879 and 444884 >>patches revised for application to MM 2.1b3 some time later today. But >>first I have to finish testing them, having made a number of minor >>changes to improve their compatibility with the MM base code. From davin at pacifier.com Wed Aug 14 20:18:21 2002 From: davin at pacifier.com (Davin Dahlgren) Date: Wed, 14 Aug 2002 11:18:21 -0700 Subject: [Mailman-Users] subscriber's choice - html or plain text? Message-ID: <004f01c243bf$1077b3d0$6701a8c0@DAVIN> Does anyone know if there is a way to set Mailman up so that subscriber's can choose (or have their profile configured) to receive messages as either HTML or plain text? We have a newsletter that we are sending out which uses graphics and font style/color changes. Several of our subscribers are unable or unwilling to accept HTML formatted emails. We would like to be able to send out either/or based on a setting in the Membership Management area (or somewhere). Is there any way we can do this? Thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/mailman-users/attachments/20020814/082742f3/attachment.html From ashley at pcraft.com Wed Aug 14 20:44:34 2002 From: ashley at pcraft.com (Ashley M. Kirchner) Date: Wed, 14 Aug 2002 12:44:34 -0600 Subject: [Mailman-Users] some details References: <20020814151457.GU13439@jeroen.fw.belnet.be> Message-ID: <3D5AA512.FB5BB91E@pcraft.com> Jeroen Valcke wrote: > I 'instructed' mailman to use lists.mydomain.com as default hostname. > Seems to work, when the lists sends out a message the from is indeed > However the confirmation message sent > after a subscription request does not comply with this rule. The > 'confirmation of subscription' message sent by Mailman has a from header > in the form of How can I fix this? Set the following two variables in ~mailman/Mailman/mm_cfg.py: DEFAULT_HOST_NAME = 'lists.mydomain.com' DEFAULT_URL = 'http://lists.mydomain.com/mailman/' (in rare cases, you may also have to do the same in Defaults.py) > Secondly I found a weird file in the directory /usr/mail/ The name of > the file is mailman I don't understand what it is doing or why it was > created in this location since I installed MailMan in the directory > /usr/local/mailman, weird, can anybody explaing? That file is a mailbox for the USER mailman. When you created that user, that mailbox automatically gets created. You could just remove it if you want. I wouldn't worry about it. -- W | I haven't lost my mind; it's backed up on tape somewhere. +-------------------------------------------------------------------- Ashley M. Kirchner . 303.442.6410 x130 IT Director / SysAdmin / WebSmith . 800.441.3873 x130 Photo Craft Laboratories, Inc. . 3550 Arapahoe Ave. #6 http://www.pcraft.com ..... . . . Boulder, CO 80303, U.S.A. From jwblist at olympus.net Wed Aug 14 21:55:30 2002 From: jwblist at olympus.net (John W Baxter) Date: Wed, 14 Aug 2002 12:55:30 -0700 Subject: [Mailman-Users] Wishlist Items In-Reply-To: References: Message-ID: At 8:17 -0700 8/13/2002, Chuq Von Rospach wrote: >On 8/13/02 1:29 AM, "Nigel Metheringham" > wrote: > >> So "Wile E Spammer" of "Evil Spammers Incorporated" writes a little >> script that does an invite subscribe of a few hundred throusand of his >> "friends" with an invitation note of whatever crap he is sending out >> this week. >> >> Isn't this basically just another form of open relay? > >Not necessarily, but... > >Most web sites now have some form of forward to a friend capability. I'm >working on implementing one now for a project. If you do it carefully, you >can avoid putting yourself open to abuse. If you don't.... > >The intent is okay. The original request put it too far into the approval >chain, though. Some way of letting a person know about the list is good. >Signing them up isn't. Building your setup so it can be hijacked is really >bad. I never use those "forward to a friend" (or soon to be former friend) things, and cringe when friends aim them at me. I'm too lazy to look into privacy policies deeply enough to know what's going to happen to the addresses and the information that someone thought someone else would be interested in xxx. When I sign up for something myself, I use a unique trackable address, so I know when I've been sold. (OK, I can't tell a leak from a sale...I'm not exactly sure yet which is worse.) I *might* actually use a to-a-friend thing at Apple's site, as long as Chuq is involved, since I know he's serious about doing these things right. (But his project might be elsewhere, of course.) --John (who also doesn't do online greeting cards) -- John Baxter jwblist at olympus.net Port Ludlow, WA, USA From jwblist at olympus.net Wed Aug 14 22:00:12 2002 From: jwblist at olympus.net (John W Baxter) Date: Wed, 14 Aug 2002 13:00:12 -0700 Subject: [Mailman-Users] Welcome message has too many blank lines In-Reply-To: References: Message-ID: At 0:31 -0400 8/14/2002, Woodie Sayles wrote: >I added a message to be prepended to the welcome message. It does that just >fine, but although the message only has 1 blank line in between paragraphs, >there are 3 blank lines in between each paragraph when it gets received. > >I only saw one other posting about this in the archives, but there was no >answer as to what could be causing it. You seemingly posted this from a Windows machine > X-Mailer: Microsoft Outlook CWS, Build 9.0.2416 (9.0.2911.0) Is it possible you let the DOS line endings sneak into the Mailman files (and that Mailman carefully expands each single line ending into two of the on-the-wire email line endings)? --John -- John Baxter jwblist at olympus.net Port Ludlow, WA, USA From tcrouch at du.edu Wed Aug 14 22:35:28 2002 From: tcrouch at du.edu (Tim Crouch) Date: Wed, 14 Aug 2002 14:35:28 -0600 Subject: [Mailman-Users] How to automate newlist Message-ID: <3D5ABF10.7A238E92@du.edu> I asked this once before and got no response, so I thought I'd ask again. Is there any way to have newlist read a file with the arguments of the lists in it? I have 547 lists to create (migrate acutally) and I have a file with the listname, listadmin-addr, and a default password. I would like to have newlist read this file and generate the lists in a batch-type process. Anybody done something like this? Thanks! -- Tim Crouch Manager, Computer Operations University of Denver 303-871-4255 (Desk) 303-435-4255 (Cell) From wolf at wolfstream.net Wed Aug 14 22:42:32 2002 From: wolf at wolfstream.net (Tom Whiting) Date: Wed, 14 Aug 2002 15:42:32 -0500 Subject: [Mailman-Users] Help - Error In-Reply-To: <000401c243a3$37eb6860$42d3b3d1@millshome> References: <000401c243a3$37eb6860$42d3b3d1@millshome> Message-ID: <200208141542.32548.wolf@wolfstream.net> Looks like you have some problems with OpenSSL. I'd advise taking a look at what you've changed there. > ImportError: /usr/lib/libssl.so.2: Undefined symbol "OpenSSLDie" > > Mike Mills > mike.mills at earthlink.net > +1(510)537.8960 -- ---------------------------------------------------- TJW: Head tech, Dreamless Realms Mud: http://dreamless.wolfstream.net Snippets http://dreamless.wolfstream.net/ Telnet dreamless.wolfstream.net:9275 The OLC Pages http://olc.wolfstream.net ---------------------------------------------------- From chuqui at plaidworks.com Wed Aug 14 22:46:46 2002 From: chuqui at plaidworks.com (Chuq Von Rospach) Date: Wed, 14 Aug 2002 13:46:46 -0700 Subject: [Mailman-Users] Wishlist Items In-Reply-To: Message-ID: On 8/14/02 12:55 PM, "John W Baxter" wrote: > I never use those "forward to a friend" (or soon to be former friend) > things, and cringe when friends aim them at me. I'm too lazy to look into > privacy policies deeply enough to know what's going to happen to the > addresses and the information that someone thought someone else would be > interested in xxx. I won't use them on any site where I don't trust the privacy policy. And, well, I generally odn't use ANY site I don't trust the privacy policy, but that's a different issue. - Chuq Von Rospach, Architech chuqui at plaidworks.com -- http://www.chuqui.com/ Stress is when you wake up screaming and you realize you haven't fallen asleep yet. From chris at yonderway.com Wed Aug 14 22:46:48 2002 From: chris at yonderway.com (Chris Hedemark) Date: 14 Aug 2002 16:46:48 -0400 Subject: [Mailman-Users] How to automate newlist In-Reply-To: <3D5ABF10.7A238E92@du.edu> References: <3D5ABF10.7A238E92@du.edu> Message-ID: <1029358008.15584.3.camel@kirk> On Wed, 2002-08-14 at 16:35, Tim Crouch wrote: > I asked this once before and got no response, so I thought I'd ask > again. Is there any way to have newlist read a file with the arguments > of the lists in it? I have 547 lists to create (migrate acutally) and I > have a file with the listname, listadmin-addr, and a default password. > I would like to have newlist read this file and generate the lists in a > batch-type process. Anybody done something like this? You can do that with a perl script if the input file is consistently delineated. newlist itself won't read it, but there is nothing stopping you from calling newlist 547 times in a script. From raquel at thericehouse.net Wed Aug 14 23:04:16 2002 From: raquel at thericehouse.net (Raquel Rice) Date: Wed, 14 Aug 2002 14:04:16 -0700 Subject: [Mailman-Users] How to automate newlist In-Reply-To: <3D5ABF10.7A238E92@du.edu> References: <3D5ABF10.7A238E92@du.edu> Message-ID: <20020814140416.41a992ac.raquel@thericehouse.net> On Wed, 14 Aug 2002 14:35:28 -0600 Tim Crouch wrote: > I asked this once before and got no response, so I thought I'd ask > again. Is there any way to have newlist read a file with the > arguments of the lists in it? I have 547 lists to create (migrate > acutally) and I have a file with the listname, listadmin-addr, and > a default password. I would like to have newlist read this file > and generate the lists in a batch-type process. Anybody done > something like this? > > > Thanks! > -- > Tim Crouch I don't have an answer for you, but I think I remember an answer to your question being sent to the list shortly after you asked. Perhaps a quick search through the archives? -- Raquel ============================================================ We must guard against becoming so engrossed in the specific nature of the roots and bark of the trees of knowledge as to miss the meaning and grandeur of the forest they compose. --George S. Patton From davin at pacifier.com Wed Aug 14 23:07:55 2002 From: davin at pacifier.com (Davin Dahlgren) Date: Wed, 14 Aug 2002 14:07:55 -0700 Subject: [Mailman-Users] Multiple unsubscribes Message-ID: <00a501c243d6$c6dd9d30$6701a8c0@DAVIN> Does anyone know if there is a way to unsubscribe several subscribers at one time? Is there a web interface for this, or perhaps a way to set one up? Thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/mailman-users/attachments/20020814/a7432249/attachment.htm From mary.y.wang at boeing.com Wed Aug 14 23:15:26 2002 From: mary.y.wang at boeing.com (Wang, Mary Y) Date: Wed, 14 Aug 2002 14:15:26 -0700 Subject: [Mailman-Users] Add Security Features in PHP Message-ID: <9C2F3AD0B86DC94B987EC4FB97C7A32405EEAC59@XCH-SW-08.sw.nos.boeing.com> Hi, Is there anyway that Mailman can interface with PHP? I have some php security code that I would like to add for accessing the Mailman pages. Thanks in advance. From woodie at webfoot.net Wed Aug 14 23:17:46 2002 From: woodie at webfoot.net (Woodie Sayles) Date: Wed, 14 Aug 2002 17:17:46 -0400 Subject: [Mailman-Users] Welcome message has too many blank lines In-Reply-To: Message-ID: I don't think that is what's happening because I tried typing the text in manually and still ended up with 3 blank lines in between each paragraph. I read something in the archives that caused me to try putting a couple of spaces at the beginning of each paragraph, but no blank line. Sure enough, that worked! Now there is only one blank line in between paragraphs. I wanted to post this in case anyone else has the same problem. Woodie Sayles Webfoot.Net woodie at webfoot.net (727) 442-5770 (727) 442-3380 - fax Fast, friendly, professional web design and hosting. Visit our site at http://www.webfoot.net to see what we can do for you! -----Original Message----- From: mailman-users-admin at python.org [mailto:mailman-users-admin at python.org]On Behalf Of John W Baxter Sent: Wednesday, August 14, 2002 4:00 PM To: mailman-users at python.org Subject: Re: [Mailman-Users] Welcome message has too many blank lines At 0:31 -0400 8/14/2002, Woodie Sayles wrote: >I added a message to be prepended to the welcome message. It does that just >fine, but although the message only has 1 blank line in between paragraphs, >there are 3 blank lines in between each paragraph when it gets received. > >I only saw one other posting about this in the archives, but there was no >answer as to what could be causing it. You seemingly posted this from a Windows machine > X-Mailer: Microsoft Outlook CWS, Build 9.0.2416 (9.0.2911.0) Is it possible you let the DOS line endings sneak into the Mailman files (and that Mailman carefully expands each single line ending into two of the on-the-wire email line endings)? --John -- John Baxter jwblist at olympus.net Port Ludlow, WA, USA ------------------------------------------------------ Mailman-Users mailing list Mailman-Users at python.org 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/ From lists at openunix.de Wed Aug 14 23:30:34 2002 From: lists at openunix.de (Franz Georg =?iso-8859-15?Q?K=F6hler?=) Date: Wed, 14 Aug 2002 23:30:34 +0200 Subject: [Mailman-Users] queue runner keeps crashing In-Reply-To: <20020812165319.GA19689@fgk.bofh.hanau.net> References: <20020812133533.GA19285@fgk.bofh.hanau.net> <5.1.0.14.2.20020812160349.046dd9e8@pop.ftel.co.uk> <20020812165319.GA19689@fgk.bofh.hanau.net> Message-ID: <20020814213034.GA24580@fgk.bofh.hanau.net> On Mon, Aug 12, 2002 at 06:53:19PM +0200, Franz Georg K?hler wrote: > On Mon, Aug 12, 2002 at 04:12:49PM +0100, Richard Barrett wrote: > > At 15:35 12/08/2002 +0200, Franz Georg =?iso-8859-15?Q?K=F6hler?= wrote: > >>All of the sudden, Mailman V. 2.0.11 stopped working, I'm getting those > >>messages in the log file: > >> > >> [...] > >> > >>Mailman successfully receives mail but is unable to re-distribute it. > >> > >> > >> > >>update: > >>I just upgraded to V. 2.0.12 with a slight hope this could solve > >>my problem, however, it still exists. > >> > >> > >>I'll be grateful for all hints that might lead to solving this. > > > > Upgrade to MM 2.0.13 which, amongst other things, cures this leakage of > > Python 2.x functionality into code that should be Python 1.x compatible or > > upgrade your Python installation to 2.1 or 2.2. > > > > fyi the problem is that various functions from the string module became > > member functions of string objects in Python 2.0 and above. The usage > > causing the problem: > > > > msg.get('precedence', '').lower > > > > should have been coded as follows to be Python 1.x compatible: > > > > string.lower(msg.get('precedence', '')) > > > > I believe MM 2.0.13 fixes these glitches that appeared post 2.0.8 if I > > recollect correctly; the one you've stumbled on was not alone. > > I upgraded to python 2.1: > > # dpkg --list |grep pytho > ii python 2.1.3-3 An interactive object-oriented scripting lan > ii python2.1 2.1.3-3 An interactive object-oriented scripting lan > > and, as proposed, mail delivery is working now. > > > However, I now do have some strange messages in my log, which > indicate an error related to the web-interface: This is probably a bug in Debian's release of Mailman 2.0.12-2 . Waiting for 2.0.12-3.... -- Warning: You are not root -- nmap V. 2.54BETA31 From cprg at cprg.net Thu Aug 15 00:25:01 2002 From: cprg at cprg.net (MISTER Support Desk) Date: Wed, 14 Aug 2002 18:25:01 -0400 Subject: [Mailman-Users] Multiple unsubscribes References: <00a501c243d6$c6dd9d30$6701a8c0@DAVIN> Message-ID: <023001c243e1$6ec37100$0100007f@vineln01.nj.comcast.net> Log in to: [ List Administration | Membership Management ] Membership List ... "UN"check the boxes under "subscr" column, corresponding to each member you want to nuke; then: [ Submit Your Changes ]. SD ----- Original Message ----- From: Davin Dahlgren To: mailman-users at python.org Sent: Wednesday, August 14, 2002 5:07 PM Subject: [Mailman-Users] Multiple unsubscribes Does anyone know if there is a way to unsubscribe several subscribers at one time? Is there a web interface for this, or perhaps a way to set one up? Thanks. From vic at vgg.sci.uma.es Thu Aug 15 00:46:36 2002 From: vic at vgg.sci.uma.es (Victoriano Giralt) Date: Thu, 15 Aug 2002 00:46:36 +0200 (CEST) Subject: [Mailman-Users] Problem accessing the admin pages for a list-Type Errror:not enough arguments for format string In-Reply-To: References: Message-ID: <33023.62.37.137.236.1029365196.squirrel@vgg.sci.uma.es> > maketext admin(5878): text = template % SafeDict(dict) -------------------------------------^----------^ > admin(5878): TypeError: not enough arguments for format string -------------------------------------------------------^ > > could someone please help me with this, I have been struggling to flook > up in the archives and couldnt find anything. > It looks to me that you have edited one of the adm pages for the problem list, or one in $prefix/templates and left out, problably, one of the 's' after one of the %(xxx) or maybe you have left completely one of them out, or, another one I have encountered, if that you have added HTML thingies with percents, then, you have to enter %%, for example width=%%10. Hope this helps. -- Victoriano Giralt Systems Manager Central Computing Facility University of Malaga SPAIN From tcrouch at du.edu Thu Aug 15 01:11:56 2002 From: tcrouch at du.edu (Tim Crouch) Date: Wed, 14 Aug 2002 17:11:56 -0600 Subject: [Mailman-Users] How to modify listinfo and admin pages (HTML) Message-ID: <3D5AE3BC.9BFFDD6@du.edu> I have created templates consistent with our styles for any new lists that get created. However, I cannot find a way to modify the listinfo/admin pages as they seem to be dynamically created. Is there any way to modify these pages globally? Thanks again! -- Tim Crouch Manager, Computer Operations University of Denver 303-871-4255 (Desk) 303-435-4255 (Cell) From ljdp4129 at delfin.iest.edu.mx Thu Aug 15 01:40:31 2002 From: ljdp4129 at delfin.iest.edu.mx (Luis Julian Dominguez Perez) Date: Wed, 14 Aug 2002 18:40:31 -0500 Subject: [Mailman-Users] creating list takes forever Message-ID: <1029368431.3d5aea6f2eab1@correoweb.iest.edu.mx> Hello: Recently when trying to create a new list after asking me for a password the programs hangs, if I press ^C i got this: File "./newlist", line 220, in ? main() File "./newlist", line 169, in main mlist.Create(listname, owner_mail, pw) File "/var/mailman/Mailman/MailList.py", line 786, in Create self.__lock.lock() File "/var/mailman/Mailman/LockFile.py", line 286, in lock self.__sleep() File "/var/mailman/Mailman/LockFile.py", line 424, in __sleep time.sleep(interval) KeyboardInterrupt And the list, of course it's not created, but the corresponding directory with al the lists it's created with no files inside. I cannot create new lists. Is there any way to fix (upgrading for rewriting files, or something) this or creating the new lists manually? I have Mailman version 2.0.11 and redhat 7.2 with several 7.3 patches. Thanks, Luis Julian. ------------------------------------------------- Por la Fe y la Razon. I.E.S.T. From bcook at idsi.net Thu Aug 15 03:07:32 2002 From: bcook at idsi.net (B. Cook) Date: Wed, 14 Aug 2002 21:07:32 -0400 Subject: [Mailman-Users] multiple domains with sendmail directions/HOWTO Message-ID: <20020815010732.GB8415@damnfast.idsi.net> Hello, I was looking through the lists and can't seem to find out how to do this. I already host idsi.net in my Mailman setup, but I would like to host some lists for some of the other domains that I host. Without giving up all the private lists that I have on the box. What I'm looking for is how to do I setup domain1.com and domain2.com to each have their own 'private' Mailman setups? I would be using sendmail if that would make any difference. Thanks in advance for any help, and I appreciate the time that was taken to read this. Brian -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 194 bytes Desc: not available Url : http://mail.python.org/pipermail/mailman-users/attachments/20020814/500098f4/attachment.pgp From anclo at anclo.com Thu Aug 15 03:29:06 2002 From: anclo at anclo.com (Anclo) Date: Wed, 14 Aug 2002 21:29:06 -0400 Subject: [Mailman-Users] Editing the archives HTML pages In-Reply-To: <3D583D68.7604068F@whidbey.com> References: <006301c23ff4$e9e1e1a0$70646464@rajesh> <200208121716.45225.wolf@wolfstream.net> Message-ID: <5.1.1.6.0.20020812190303.0338c6b0@imap.3dresearch.com> Hello, I would like to edit the HTML of the archives HTML pages. How can I do this? Many thanx, Anclo From kyle at mlug.missouri.edu Thu Aug 15 05:24:56 2002 From: kyle at mlug.missouri.edu (Kyle Krieg) Date: Wed, 14 Aug 2002 22:24:56 -0500 Subject: [Mailman-Users] Cron /usr/bin/python -S /var/mailman/cron/qrunner Message-ID: I'm starting to get these errors every min in my mailbox. Anybody know what is going on, or how to fix this??? Traceback (innermost last): File "/var/mailman/cron/qrunner", line 83, in ? from Mailman import mm_cfg File "/var/mailman/Mailman/mm_cfg.py", line 50, in ? MAILMAN_UID = pwd.getpwnam('mailman')[2] KeyError: getpwnam(): name not found From wash at wananchi.com Thu Aug 15 07:53:58 2002 From: wash at wananchi.com (Odhiambo Washington) Date: Thu, 15 Aug 2002 08:53:58 +0300 Subject: [Mailman-Users] Add Security Features in PHP In-Reply-To: <9C2F3AD0B86DC94B987EC4FB97C7A32405EEAC59@XCH-SW-08.sw.nos.boeing.com> References: <9C2F3AD0B86DC94B987EC4FB97C7A32405EEAC59@XCH-SW-08.sw.nos.boeing.com> Message-ID: <20020815055358.GB43867@ns2.wananchi.com> * Wang, Mary Y [20020815 00:16]: wrote: > Hi, > Is there anyway that Mailman can interface with PHP? I have some php > security code that I would like to add for accessing the Mailman pages. Hi Mary, What do you feel is lacking (so far) in terms of the security that mailman provides? Not that I am negating your question. I am still so new to mailman but I am also satisfied with the level of security that it gives so far, in terms of access to list admin, members list, archives. Well maybe for me I'm not anal about security but those seem enough to me. Maybe you should join the dev team and introduce new features ;-) cheers - wash +----------------------------------+-----------------------------------------+ Odhiambo Washington, wash at wananchi.com . WANANCHI ONLINE LTD (Nairobi, KE) | http://ns2.wananchi.com/~wash/ . 1ere Etage, Loita Hse, Loita St., | GSM: (+254) 722 743 223 . # 10286, 00100 NAIROBI | +---------------------------------+------------------------------------------+ "Oh My God! They killed init! You Bastards!" --from a /. post ++ ``That Ariel Sharon. Boy, he sure is controversial. Most Western countries would have to have a military coup before they enjoyed a leader of that caliber.'' (Sydney Webb) From wash at wananchi.com Thu Aug 15 08:06:54 2002 From: wash at wananchi.com (Odhiambo Washington) Date: Thu, 15 Aug 2002 09:06:54 +0300 Subject: [Mailman-Users] mailman-2.1b3 Message-ID: <20020815060654.GD43867@ns2.wananchi.com> I am running 2.1b3 but I seem to have missed a point. How do I make sure the qrunner is 'alive' all the time? I run on FreeBSD. cheers - wash +----------------------------------+-----------------------------------------+ Odhiambo Washington, wash at wananchi.com . WANANCHI ONLINE LTD (Nairobi, KE) | http://ns2.wananchi.com/~wash/ . 1ere Etage, Loita Hse, Loita St., | GSM: (+254) 722 743 223 . # 10286, 00100 NAIROBI | +---------------------------------+------------------------------------------+ "Oh My God! They killed init! You Bastards!" --from a /. post ++ ``That Ariel Sharon. Boy, he sure is controversial. Most Western countries would have to have a military coup before they enjoyed a leader of that caliber.'' (Sydney Webb) From mailman-users at imc.nl Thu Aug 15 09:27:37 2002 From: mailman-users at imc.nl (Roelf Schreurs) Date: Thu, 15 Aug 2002 09:27:37 +0200 Subject: [Mailman-Users] searchable archives (htdig) Message-ID: <000e01c2442d$3aeef0b0$c764a8c0@ads.intra.imc> Hi Using mailman 2.1b3 with the 2 new plugins that was released yesterday. When i go to the archives, the search fields appear 3 or 4 times. How can i solve this? Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/mailman-users/attachments/20020815/b68b1a5b/attachment.htm From R.Barrett at ftel.co.uk Thu Aug 15 10:41:52 2002 From: R.Barrett at ftel.co.uk (Richard Barrett) Date: Thu, 15 Aug 2002 09:41:52 +0100 Subject: [Mailman-Users] searchable archives (htdig) In-Reply-To: <000e01c2442d$3aeef0b0$c764a8c0@ads.intra.imc> Message-ID: <5.1.0.14.2.20020815093633.02e686f8@pop.ftel.co.uk> At 09:27 15/08/2002 +0200, Roelf Schreurs wrote: >Hi > >Using mailman 2.1b3 with the 2 new plugins that was released yesterday. >When i go to the archives, the search fields appear 3 or 4 times. > >How can i solve this? I do not understand what you mean by "When i go to the archives, the search fields appear 3 or 4 times". Does this mean that multiple copies of the search form appear on a given archived list's TOC page or what? If that is the case then can you forward directly to me a copy of the list's TOC page HTML. If my understanding of your meaning is wrong, can you supply a better description of the problem so that I can try and reproduce the problem. Richard Oh and by the way, they are not plugins. They are patches. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/mailman-users/attachments/20020815/622c29eb/attachment.html From R.Barrett at ftel.co.uk Thu Aug 15 13:12:19 2002 From: R.Barrett at ftel.co.uk (Richard Barrett) Date: Thu, 15 Aug 2002 12:12:19 +0100 Subject: [Mailman-Users] mailman-htdig integration patch for MM 2.1b3 Message-ID: <5.1.0.14.2.20020815120618.04791660@pop.ftel.co.uk> The first version of this MM 2.1b3 compatible patch (htdig-2.1b3-0.1.patch) that I uploaded yesterday introduces a syntax error at line 721 of $prefix/Mailman/Archiver/HyperArch.py The effect of this error may be to introduce copious error logging from the ArchRunner qrunner. Anybody affected has my apologies. A revised patch (htdig-2.1b3-0.2.patch) has now been uploaded which fixes this error. See http://sourceforge.net/tracker/index.php?func=detail&aid=444884&group_id=103&atid=300103 From tek at linuxdojo.net Thu Aug 15 14:48:25 2002 From: tek at linuxdojo.net (tek) Date: Thu, 15 Aug 2002 04:48:25 -0800 Subject: [Mailman-Users] Solution to my 550 user not found problem.. Message-ID: <20020815124825.M22906@linuxdojo.net> My Problem: 550 user not found errors, aliases database are setup correctly but still mailman wont work? all mail to lists fails with 550 I read everything i could find for 2 weeks and found no helpful solutions posted anywhere online nor could i get help on any of the lists, this one included. not even one single reply So im posting this hoping to help the next poor guy who tries to do the same thing i was trying to do. that isnt to say my way is the right or only way, its just the one that made it work. BUT i did solve it, FINALLY! here is what worked for me. of course your mileage may vary. and if anyone reading this see's something i have done that creates any kind of security issues or something PLEASE LET ME KNOW. thanks! How to get Mailman to support ALL your Virtual domains on Postfix This was done on Mandrake 8.2 prosuite server with an Openwall security patched kernel with Postfix-20010228-pl08, Apache-AdvancedExtranetServer/1.3.23 and Mailman 2.09 in terms of postix specific configurations you need to use two files which you will call out in your main.cf like so alias_database = hash:/etc/postfix/aliases alias_maps = hash:/etc/postfix/aliases smtpd_recipient_restrictions = reject_invalid_hostname, permit_mynetworks, reject_non_fqdn_recipient, check_client_access hash:/etc/postfix/pop-before-smtp, check_relay_domains virtual_maps = hash:/etc/postfix/virtual they (virtual and aliases) are both essentially tables, mapping the users to specific virtual domains and also virtual users to their user accounts either local or remote. I am using two files to do this one is /etc/postfix/virtual the other is /etc/postfix/aliases the table i am using to make virual domains itself work is /etc/postfix/virtual and should look something like this inside of it ####################################################################### ############# beginning of /etc/postfix/virtual file ################## ####################################### ## ## ### this is my first virtual domain ### ## ## ####################################### one_of_my_domains.com virtual mail.one_of_my_domains.com virtual user1 at one_of_my_domains.com user1 user2 at one_of_my_domains.com user2 sales at one_of_my_domains.com sales1 info at one_of_my_domains.com info1 webmaster at one_of_my_domains.com webmaster1 ###################################### ## ## ### first mailing list on domain 1 ### ## ## ###################################### test at one_of_my_domains.com test test-admin at one_of_my_domains.com test-admin test-request at one_of_my_domains.com test-request test-owner at one_of_my_domains.com test-owner ################# ## ## ### next list ### ## ## ################# foobar at one_of_my_domains.com foobar foobar-admin at one_of_my_domains.com foobar-admin foobar-request at one_of_my_domains.com foobar-request foobar-owner at one_of_my_domains.com foobar-owner ########################### ## ## ### next virtual domain ### ## ## ########################### someone_elses_domain.net virtual mail.someone_elses_domain.net virtual anotheruser at someone_elses_domain.net anotheruser user2 at someone_elses_domain.net user3 sales at someone_elses_domain.net sales2 info at someone_elses_domain.net info2 webmaster at someone_elses_domain.net webmaster2 ###################################### ## ## ### mailing list on second domain ### ## ## ###################################### test at someone_elses_domain.net test test-admin at someone_elses_domain.net test-admin test-request at someone_elses_domain.net test-request test-owner at someone_elses_domain.net test-owner ################# ## ## ### next list ### ## ## ################# boofar at someone_elses_domain.net boofar boofar-admin at someone_elses_domain.net boofar-admin boofar-request at someone_elses_domain.net boofar-request boofar-owner at someone_elses_domain.net boofar-owner ################ end of /etc/postfix/virtual file ################# ################################################################### that does the mapping of the virtual domains and also gets mailman going on the virtual domains, each new list you create must be added in here in the same fashion and also in your /etc/postfix/aliases file if your doing any user account mapping as we are above by having sales at domain.com and sales at another_domain.net on the same box the format for the /etc/postfix/aliases is as follows. ################################################################### ############### beginning of /etc/postfix/aliases ################# # Basic system aliases -- these MUST be present. MAILER-DAEMON: postmaster postmaster: root # General redirections for pseudo accounts. bin: root daemon: root games: root ingres: root nobody: root system: root toor: root uucp: root # Well-known aliases. manager: root dumper: root operator: root # trap decode to catch security attacks decode: root # Person who should get root's mail root: admins_email_user_name_on localbox, otheremail at someotherdomain.net # Person who get mail for Mailman mailman: mailman_managers_email_account at whatever_his_domain_is.com mailman-owner: mailman sales ################################ ################################ ## starting our Mailman lists ## ################################ ############### ## test list ## ############### test: "| /var/www/html/mailman/mail/wrapper post test" test-admin: "| /var/www/html/mailman/mail/wrapper mailowner test" test-request: "| /var/www/html/mailman/mail/wrapper mailcmd test" test-owner: test-admin ################# ## next list ## ### just for ### ## testing ## ################# boofar: "| /var/www/html/mailman/mail/wrapper post boofar" boofar-admin: "| /var/www/html/mailman/mail/wrapper mailowner boofar" boofar-request: "| /var/www/html/mailman/mail/wrapper mailcmd boofar" boofar-owner: boofar-admin ################# ## next list ## ### also for ### ## testing ## ################# foobar: "| /var/www/html/mailman/mail/wrapper post foobar" foobar-admin: "| /var/www/html/mailman/mail/wrapper mailowner foobar" foobar-request: "| /var/www/html/mailman/mail/wrapper mailcmd foobar" foobar-owner: foobar-admin ############################################################################ #################### end of /etc/postfix/aliases ########################### ############################################################################ This messed me up for a long time till i figured that part out, i kept getting 550 user not found errors. Once you have your tables all setup you need to run postmap hash:/etc/postfix/virtual and postmap hash:/etc/postfix/aliases. running newaliases will not create a hash of the virtual table only the aliases. then run postfix reload and you should be up and running. I had one more thing that caused me to read for days trying to find a solution and i finally did but it was VERY poorly documented and i searched for days till i found out why. If your paranoid as i am you are probably using every security tool you can, i have installed the openwall patches to my kernel to make it nonexecutable stack and this does lots of things that are great, BUT it also breaks hardlinking mailman is counting on it and you will get a error message when you try to hit the listinfo page the error message says something like "we have a bug" and it talks about traceback info and notifying the webmaster. sorry i cant be more specific, i didnt write it down in the contrib folder there are a few patches you can run that will change permissions and a few other things, there is one called securelinux_fix.py you need to move it into your bin folder and execute it, its a python script so you may need to do something such as python ./securelinux_fix.py I couldnt get the web interface to work for the longest time cause of this so i hope if your having problems you find this cause i didnt find anything anywhere about how to get beyond any of the issues i was having. you need to add a few things to your httpd.conf or to your commonhttpd.conf depending on how your configuring your server, if your wanting to add lists or the capacity of it for every domain your hosting you can do something such as this say your webserver DocumentRoot is /var/www/html add all your domains in here in their own folder so our setup would have us having a directory structure looking something like this ------------ /var/www/html ----------------------------------- | | | | | | \one_of_my_domains.com | | \someone_elses_domain.net | \mailman \----bin \----cgi-bin \----cron \----icons \----mail \----Mailman \----scripts \----template This will allow all domains to share the same install of Mailman. you will need to add some ScriptAlias and Alias comments to your apache configuration so it should have something like this in it somewhere around the same location where it calls out script aliases for /var/www/cgi-bin ########################################### ## ## ### added for Mailman mail list manager ### ## ## ########################################### ScriptAlias /mailman/ /var/www/html/mailman/cgi-bin/ AllowOverride None Options ExecCGI Order allow,deny Allow from all Alias /pipermail/ /var/log/mailman/archives/public/ Options FollowSymLinks AllowOverride None Order allow,deny Allow from all ########################################### ## ## ### added for Mailman mail list manager ### ## end of mailman stuff ## ########################################### hope this helps someone out, for more how-to's like this and HUNDREDS more go to http://www.linuxdojo.net ~ :o) Tnt -- Open WebMail Project (http://openwebmail.org) From adam at odu.edu Thu Aug 15 15:35:36 2002 From: adam at odu.edu (Adam Brons) Date: Thu, 15 Aug 2002 09:35:36 -0400 Subject: [Mailman-Users] Moving mailman to new server and upgrading mailman Message-ID: <20020815133536.GA28222@peldor.occs.odu.edu> I'm looking for some advice, here's the situation: I have mailman 1.x installed on server 'A'. We're upgrading mailman to 2.x but we're also moving it to server 'B'. On server 'A' the install directory for mailman is /usr0/mailman. On server 'B' the install directory for mailman is going to be /usr1/mailman. Symlinking /usr0/mailman to /usr1/mailman on server 'B' is NOT an option. Would it be easier to just do a fresh install of mailman 2.x on server 'B' and manually migrate the lists from the old server following the steps in "UPGRADING" and fixing whatever else may arise. Or should I copy the installation on server 'A' to server 'B' go through and make all the changes where the path is wrong and then do a make install of mailman 2.x on top of mailman 1.x? Or is there some much easier way to do this? Any advice would be greatly appreciated. -- Adam Brons Systems Engineer / Unix Support Group Office of Computing and Communications Services Old Dominion University - Norfolk, Virginia. USA DSA ID 7680A17E: 7E88 F9EC 0799 3260 49DA DB77 0327 D32B 7680 A17E From jchum at aismedia.com Thu Aug 15 17:34:56 2002 From: jchum at aismedia.com (Jonathan Chum) Date: Thu, 15 Aug 2002 11:34:56 -0400 Subject: [Mailman-Users] Counting the number of new subscribers from a certain age Message-ID: <015301c24471$4f982740$cd1b9642@atlp.aismedia.com> Hi, I didn't see any tools that would do this but after poking around with a few utlities, I came up with this tool, list_members in the bin directory. I played with it and it dumps the users, but each time it ran, it didn't dump the users in any certain order, randomly. . . If he dumped it out from the oldest subscriber to the newest subscriber, maybe then can I code a script that searches for an individual then count how many new users were added since that individual. That's the goal I was trying to achive is counting the number of new subscribers. Any ideas of how I could acheive this? Regards, Jonathan Chum Systems Developer ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ A I S M e d i a , I n c . "We Build eBusinesses" 115 Perimeter Center Terrace Suite 540 Atlanta, GA 30346 Tel: 800.784.0919, Ext 502 / Fax: 678.382.2471 http://www.aismedia.com / jchum at aismedia.com ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ From slaniel at laniels.org Thu Aug 15 17:34:29 2002 From: slaniel at laniels.org (Stephen R Laniel) Date: Thu, 15 Aug 2002 11:34:29 -0400 Subject: [Mailman-Users] Apache errors causing user-management problems Message-ID: <20020815153429.GB5513@laniels.org> An embedded and charset-unspecified text was scrubbed... Name: msg.pgp Url: http://mail.python.org/pipermail/mailman-users/attachments/20020815/f452631d/attachment.pot From anna at water.ca.gov Thu Aug 15 18:16:45 2002 From: anna at water.ca.gov (Fong, Anna) Date: Thu, 15 Aug 2002 09:16:45 -0700 Subject: [Mailman-Users] How to migrate existing Mailman to a new server Message-ID: Mary, Check this thread: http://www.mail-archive.com/mailman-users at python.org/msg11052.html Hope this helps, Anna -------------------------------------------------------- Anna Q. Fong, Webmaster California Data Exchange Center > -----Original Message----- > From: mailman-users-admin at python.org [SMTP:mailman-users-admin at python.org] On Behalf Of Wang, Mary Y > Sent: Friday, August 09, 2002 12:26 PM > To: 'mailman-users at python.org' > Subject: [Mailman-Users] How to migrate existing Mailman to a new server > > Hi, > How do I migrate existing Mailman lists to a new server (the target paths > name are > also different) ? > > Thanks in advance. > > Mary > > From anna at water.ca.gov Thu Aug 15 18:21:42 2002 From: anna at water.ca.gov (Fong, Anna) Date: Thu, 15 Aug 2002 09:21:42 -0700 Subject: [Mailman-Users] Moving mailman to new server and upgrading mailman Message-ID: Adam, Try this thread: http://www.mail-archive.com/mailman-users at python.org/msg11052.html Hope this helps, Anna -------------------------------------------------------- Anna Q. Fong, Webmaster California Data Exchange Center > -----Original Message----- > From: mailman-users-admin at python.org [SMTP:mailman-users-admin at python.org] On Behalf Of Adam Brons > Sent: Thursday, August 15, 2002 6:36 AM > To: mailman-users at python.org > Subject: [Mailman-Users] Moving mailman to new server and upgrading mailman > > I'm looking for some advice, here's the situation: > > I have mailman 1.x installed on server 'A'. We're upgrading mailman to > 2.x but we're also moving it to server 'B'. On server 'A' the install > directory for mailman is /usr0/mailman. On server 'B' the install > directory for mailman is going to be /usr1/mailman. > > Symlinking /usr0/mailman to /usr1/mailman on server 'B' is NOT an option. > > Would it be easier to just do a fresh install of mailman 2.x on server 'B' > and manually migrate the lists from the old server following the steps in > "UPGRADING" and fixing whatever else may arise. Or should I copy the > installation on server 'A' to server 'B' go through and make all the > changes where the path is wrong and then do a make install of mailman 2.x > on top of mailman 1.x? Or is there some much easier way to do this? > > Any advice would be greatly appreciated. > > -- > Adam Brons Systems Engineer / Unix Support Group > Office of Computing and Communications Services > Old Dominion University - Norfolk, Virginia. USA > > DSA ID 7680A17E: 7E88 F9EC 0799 3260 49DA DB77 0327 D32B 7680 A17E > From anna at water.ca.gov Thu Aug 15 18:26:53 2002 From: anna at water.ca.gov (Fong, Anna) Date: Thu, 15 Aug 2002 09:26:53 -0700 Subject: [Mailman-Users] How to automate newlist Message-ID: Tim, Check out the script in this thread: http://mail.python.org/pipermail/mailman-users/2002-April/018960.html Hope this helps, Anna -------------------------------------------------------- Anna Q. Fong, Webmaster California Data Exchange Center > -----Original Message----- > From: mailman-users-admin at python.org [SMTP:mailman-users-admin at python.org] On Behalf Of Tim Crouch > Sent: Wednesday, August 14, 2002 1:35 PM > To: mailman-users at python.org > Subject: [Mailman-Users] How to automate newlist > > I asked this once before and got no response, so I thought I'd ask > again. Is there any way to have newlist read a file with the arguments > of the lists in it? I have 547 lists to create (migrate acutally) and I > have a file with the listname, listadmin-addr, and a default password. > I would like to have newlist read this file and generate the lists in a > batch-type process. Anybody done something like this? > > > Thanks! > -- > Tim Crouch > Manager, Computer Operations > University of Denver > 303-871-4255 (Desk) > 303-435-4255 (Cell) > From zeek at sparklehouse.com Thu Aug 15 18:30:57 2002 From: zeek at sparklehouse.com (zeek) Date: Thu, 15 Aug 2002 12:30:57 -0400 Subject: [Mailman-Users] Subscribe like majordomo or listserv Message-ID: Greetings, I asked this question earlier but I don't think it was clearly articulated. Since then I've searched far and wide for answers but have not found them. I'd like to provide a single address that would make queries to all lists available -request at xyz.com won't suffice. This address would allow for such commands as "help," "lists," "show ," and etc. As far as I can tell there is no way to do this with mailman at this time. If there is and I'm overlooking it, please let me know. If there really isn't, is this slated as a future feature? Hey, that sounds kinda funny. Cheers, -zeek From davin at pacifier.com Thu Aug 15 18:57:16 2002 From: davin at pacifier.com (Davin Dahlgren) Date: Thu, 15 Aug 2002 09:57:16 -0700 Subject: [Mailman-Users] time-release emails Message-ID: <006101c2447c$ed72c370$6701a8c0@DAVIN> Is there a way to specify for Mailman to hold messages until a certain day and time before sending them out? We would like to send messages out on Friday, but have them delivered on Saturday and Sunday. Is this possible with Mailman? Thanks. From zeek at sparklehouse.com Thu Aug 15 19:03:45 2002 From: zeek at sparklehouse.com (zeek) Date: Thu, 15 Aug 2002 13:03:45 -0400 Subject: [Mailman-Users] time-release emails In-Reply-To: <006101c2447c$ed72c370$6701a8c0@DAVIN> Message-ID: This is just an idea, untested: Run another MTA process, maybe on another port proxied out and have procmail filter out the list traffic. This 2nd MTA process would have to run in queue only mode until you want them sent out. Then just set up a crontab to change the MTA args and send a SIGHUP. -zeek > -----Original Message----- > From: mailman-users-admin at python.org > [mailto:mailman-users-admin at python.org]On Behalf Of Davin Dahlgren > Sent: Thursday, August 15, 2002 12:57 PM > To: mailman-users at python.org > Subject: [Mailman-Users] time-release emails > > > Is there a way to specify for Mailman to hold messages until a certain > day and time before sending them out? We would like to send messages out > on Friday, but have them delivered on Saturday and Sunday. Is this > possible with Mailman? > > Thanks. > > > ------------------------------------------------------ > Mailman-Users mailing list > Mailman-Users at python.org > 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/ > From mary.y.wang at boeing.com Thu Aug 15 19:13:40 2002 From: mary.y.wang at boeing.com (Wang, Mary Y) Date: Thu, 15 Aug 2002 10:13:40 -0700 Subject: [Mailman-Users] Add Security Features in PHP Message-ID: <9C2F3AD0B86DC94B987EC4FB97C7A32405EEAC62@XCH-SW-08.sw.nos.boeing.com> Hi Wash, I am sorry that I didn't make it clear. I have a web collaboration tool that is using the Mailman for the mailing list service. Every user is required to log in in order to use the collaboration tool. The security checking that I was talking about is to check user's person status against Boeing's internal database. All this security/log in checking is written in php. What I am saying is that I don't want any users access Mailman pages unless he/she is logged in. I don't know really know how to program in Python yet. Is there anyway that I can interface Mailman with PHP code? Thanks in advance. Mary -----Original Message----- From: Odhiambo Washington [mailto:wash at wananchi.com] Sent: 14 August, 2002 10:54 PM To: mailman-users at python.org Subject: Re: [Mailman-Users] Add Security Features in PHP * Wang, Mary Y [20020815 00:16]: wrote: > Hi, > Is there anyway that Mailman can interface with PHP? I have some php > security code that I would like to add for accessing the Mailman pages. Hi Mary, What do you feel is lacking (so far) in terms of the security that mailman provides? Not that I am negating your question. I am still so new to mailman but I am also satisfied with the level of security that it gives so far, in terms of access to list admin, members list, archives. Well maybe for me I'm not anal about security but those seem enough to me. Maybe you should join the dev team and introduce new features ;-) cheers - wash +----------------------------------+---------------------------------------- -+ Odhiambo Washington, wash at wananchi.com . WANANCHI ONLINE LTD (Nairobi, KE) | http://ns2.wananchi.com/~wash/ . 1ere Etage, Loita Hse, Loita St., | GSM: (+254) 722 743 223 . # 10286, 00100 NAIROBI | +---------------------------------+----------------------------------------- -+ "Oh My God! They killed init! You Bastards!" --from a /. post ++ ``That Ariel Sharon. Boy, he sure is controversial. Most Western countries would have to have a military coup before they enjoyed a leader of that caliber.'' (Sydney Webb) ------------------------------------------------------ Mailman-Users mailing list Mailman-Users at python.org 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/ From chris.a.adams at state.or.us Thu Aug 15 19:37:35 2002 From: chris.a.adams at state.or.us (Christopher Adams) Date: Thu, 15 Aug 2002 10:37:35 -0700 Subject: [Mailman-Users] Mailman or Postfix error? Message-ID: <3D5BE6DF.63F7FC3D@state.or.us> I am unsure if this is a Postfix error or Mailman. I apologize if it doesn't pertain to whatever list you subscribe to. I have read some of the archives and seems to be a permission problem. I would most appreciate it if someone could point me in the right direction. Here is the message that I get when I post a message to a list. I have other functional lists, but all new lists created result in this problem, though even that behavior is variable, which makes it really hard to figure out. : cannot append message to destination file /|home/mailman/mail/wrapper post hrcom-net: cannot create file exclusively: No such file or directory -- Christopher Adams Oregon State Library 503-378-4243 x258 chris.a.adams at state.or.us From cprg at cprg.net Thu Aug 15 19:50:39 2002 From: cprg at cprg.net (MISTER Support Desk) Date: Thu, 15 Aug 2002 13:50:39 -0400 Subject: [Mailman-Users] Subscribe like majordomo or listserv References: Message-ID: <006701c24484$457d3300$0100007f@vineln01.nj.comcast.net> I suspect you are looking to query multiple lists? Not available. Autoresponders are specific to each list. List-Help: List-Post: List-Subscribe: , List-Id: Mailman mailing list management users List-Unsubscribe: , List-Archive: ===== List of public lists on specific server is available as a web page, but not autoresponder: http://mail.python.org/mailman/listinfo/ SD ----- Original Message ----- From: "zeek" To: Sent: Thursday, August 15, 2002 12:30 PM Subject: [Mailman-Users] Subscribe like majordomo or listserv | | Greetings, | | I asked this question earlier but I don't think it was clearly articulated. | Since then I've searched far and wide for answers but have not found them. | | | I'd like to provide a single address that would make queries to all lists | available -request at xyz.com won't suffice. This address would | allow for such commands as "help," "lists," "show ," and etc. As | far as I can tell there is no way to do this with mailman at this time. If | there is and I'm overlooking it, please let me know. If there really isn't, | is this slated as a future feature? Hey, that sounds kinda funny. | | Cheers, | -zeek | | | ------------------------------------------------------ | Mailman-Users mailing list | Mailman-Users at python.org | 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/ | | From wash at wananchi.com Thu Aug 15 20:16:11 2002 From: wash at wananchi.com (Odhiambo Washington) Date: Thu, 15 Aug 2002 21:16:11 +0300 Subject: [Mailman-Users] Add Security Features in PHP In-Reply-To: <9C2F3AD0B86DC94B987EC4FB97C7A32405EEAC62@XCH-SW-08.sw.nos.boeing.com> References: <9C2F3AD0B86DC94B987EC4FB97C7A32405EEAC62@XCH-SW-08.sw.nos.boeing.com> Message-ID: <20020815181611.GA92104@ns2.wananchi.com> * Wang, Mary Y [20020815 20:14]: wrote: > Hi Wash, > > I am sorry that I didn't make it clear. I have a web collaboration tool > that is using the Mailman for the mailing list service. Every user is > required to log in in order to use the collaboration tool. The security > checking that I was talking about is to check user's person status against > Boeing's internal database. All this security/log in checking is written in > php. What I am saying is that I don't want any users access Mailman pages > unless he/she is logged in. I don't know really know how to program in > Python yet. > > Is there anyway that I can interface Mailman with PHP code? > Hi Mary , Any chance that you can use a .htaccess on the mailman pages - that ht.access authentication against Boeing's Internal DB?? Apache has got something called mod_auth_* modules you can use with your Db, for example you can look at this: http://httpd.apache.org/docs-2.0/mod/mod_auth_dbm.html as a start just my US$ 0.02 ;-) > > > -----Original Message----- > From: Odhiambo Washington [mailto:wash at wananchi.com] > Sent: 14 August, 2002 10:54 PM > To: mailman-users at python.org > Subject: Re: [Mailman-Users] Add Security Features in PHP > > > * Wang, Mary Y [20020815 00:16]: wrote: > > Hi, > > Is there anyway that Mailman can interface with PHP? I have some php > > security code that I would like to add for accessing the Mailman pages. > > > Hi Mary, > > What do you feel is lacking (so far) in terms of the security that mailman > provides? Not that I am negating your question. I am still so new to mailman > but I am also satisfied with the level of security that it gives so far, in > terms of access to list admin, members list, archives. Well maybe for me I'm > not anal about security but those seem enough to me. > Maybe you should join the dev team and introduce new features ;-) > > > cheers > - wash > +----------------------------------+---------------------------------------- > -+ > Odhiambo Washington, wash at wananchi.com . WANANCHI ONLINE LTD (Nairobi, KE) > | > http://ns2.wananchi.com/~wash/ . 1ere Etage, Loita Hse, Loita St., > | > GSM: (+254) 722 743 223 . # 10286, 00100 NAIROBI > | > +---------------------------------+----------------------------------------- > -+ > "Oh My God! They killed init! You Bastards!" > --from a /. post > > ++ > ``That Ariel Sharon. Boy, he sure is controversial. > Most Western countries would have to have a military coup > before they enjoyed a leader of that caliber.'' (Sydney Webb) > > ------------------------------------------------------ > Mailman-Users mailing list > Mailman-Users at python.org > 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/ -Wash -- Odhiambo Washington "The box said 'Requires Wananchi Online Ltd. www.wananchi.com Windows 95, NT, or better,' Tel: +254 2 313985-9 +254 2 313922 so I installed FreeBSD." GSM: +254 72 743223 +254 733 744121 This sig is McQ! :-) Vital papers will demonstrate their vitality by spontaneously moving from where you left them to where you can't find them. From nikkor28 at pair.com Wed Aug 14 18:00:44 2002 From: nikkor28 at pair.com (Will Galloway) Date: Wed, 14 Aug 2002 09:00:44 -0700 Subject: [Mailman-Users] Daily Digests and other issues In-Reply-To: <200208140335.g7E3ZTL32173@salsa.haht.com> References: <3.0.5.32.20020813202213.007eb9f0@209.197.113.96> <3.0.5.32.20020813202213.007eb9f0@209.197.113.96> Message-ID: <3.0.5.32.20020814090044.0095add0@scire.pair.com> Thanks very much. I'll see what pair can do with this. Will Galloway At 09:29 PM 08/13/2002 -0400, Jon Carnes wrote: >The new version runs a daemon that handles the mail for the lists. It is >more efficient than the current cron induced qrunner triggers; but I don't >think that the resources saved will be that significant. You should >probably upgrade your server (better processor and a SCSI disk sub-system). > >Even if the resources are stretched, the new version should do a better job >of handling the checks for sending out Digests. > >> >> Other stuff: >> Duplicate and frivolous subscriptions are annoying, and a "discard" >> option >> for >> sub. requests would be much appreciated. Awareness of a pre-existing >> sub. >> request from the same address should be implemented. Rejection just >> confuses >> legitimate (albeit impatient) subscribers, and encourages people who are > >Available in the new version > >> >> messing around to keep trying. In the same vein, the ability to >> modify/eliminate >> the default rejection message for posts would avoid antagonizing people >> who >> need coaching now and then. If true moderation and customization of all >> the >> various messages is forthcoming, then that's ideal. > >Also available in the new version > > > From mpseas at samara.una.ac.cr Wed Aug 14 21:36:55 2002 From: mpseas at samara.una.ac.cr (Maykol Phillips Seas) Date: Thu, 15 Aug 2002 01:36:55 +0600 (GMT) Subject: [Mailman-Users] No such file or directory: '/home/mailman/qfiles/x.msg' Message-ID: ------------------------------------------------------------ Correo revisado por Interscan VirusWall 3.7. Universidad Nacional. ------------------------------------------------------------ -------------- next part -------------- Hello: Maybe, somebody of you know about the following error: Aug 15 01:30:02 2002 qrunner(2047): OSError : [Errno 2] No such file or directory: '/home/mailman/qfiles/x.msg' Aug 15 01:31:01 2002 qrunner(2054): Traceback (innermost last): Aug 15 01:31:01 2002 qrunner(2054): File "/home/mailman/cron/qrunner", line 283, in ? Aug 15 01:31:01 2002 qrunner(2054): kids = main(lock) Aug 15 01:31:01 2002 qrunner(2054): File "/home/mailman/cron/qrunner", line 205, in main My queue (qfiles) is full of messages, but Mailman is not sending e-mails. Thanks. mpseas at una.ac.cr From wietse at porcupine.org Thu Aug 15 20:05:51 2002 From: wietse at porcupine.org (Wietse Venema) Date: Thu, 15 Aug 2002 14:05:51 -0400 (EDT) Subject: [Mailman-Users] Re: Mailman or Postfix error? In-Reply-To: <3D5BE6DF.63F7FC3D@state.or.us> "from Christopher Adams at Aug 15, 2002 10:37:35 am" Message-ID: <20020815180551.025CDBC071@spike.porcupine.org> You swapped the | and / characters. Wietse Christopher Adams: > I am unsure if this is a Postfix error or Mailman. I apologize if it doesn't > pertain to whatever list you subscribe to. I have read some of the archives and > seems to be a permission problem. I would most appreciate it if someone could > point me in the right direction. Here is the message that I get when I post a > message to a list. I have other functional lists, but all new lists created > result in this problem, though even that behavior is variable, which makes it > really hard to figure out. > > : cannot append message to destination file > /|home/mailman/mail/wrapper post hrcom-net: cannot create file exclusively: > No such file or directory > > -- > Christopher Adams > Oregon State Library > 503-378-4243 x258 > chris.a.adams at state.or.us > - > To unsubscribe, send mail to majordomo at postfix.org with content > (not subject): unsubscribe postfix-users > > From barry at python.org Thu Aug 15 20:30:08 2002 From: barry at python.org (Barry A. Warsaw) Date: Thu, 15 Aug 2002 14:30:08 -0400 Subject: [Mailman-Users] Mailman broken in Debian 3.0 Message-ID: <15707.62256.740221.744063@anthem.wooz.org> With Ben's permission I'm forwarding this message to these lists. We'll have to add this to the faqwiz at the least, and probably the MM2.0.x README file (although I'm hoping to avoid a 2.0.14 :). Brace yourselves, -Barry -------------- next part -------------- An embedded message was scrubbed... From: Ben Gertzfield Subject: Heads-up: Debian 3.0 (woody) shipped broken mailman Date: Thu, 15 Aug 2002 10:35:22 -0700 Size: 2078 Url: http://mail.python.org/pipermail/mailman-users/attachments/20020815/b6e7dd6f/attachment.mht From olucioe at hotmail.com Fri Aug 16 02:15:20 2002 From: olucioe at hotmail.com (Oswaldo Lucio Estrada) Date: Thu, 15 Aug 2002 19:15:20 -0500 Subject: [Mailman-Users] Regreso de correos. Message-ID: Hola lista. Necesito un poco de se ayuda. Intale mailman sin ningun problema, cree una lista llamada doctores, agrege a otros dos compa?eros y a mi mismo como miembros de esa lista. A los tres no llego el correo de bienvenida que envio la lista doctores, pero al enviar yo un correo a la lista se me regresa de la siguiente forma: This is a MIME-encapsulated message Reporting-MTA: dns; valdo.uadec.mx Arrival-Date: Thu, 15 Aug 2002 18:46:06 -0500 Final-Recipient: RFC822; doctores at valdo.uadec.mx X-Actual-Recipient: X-Unix; |/home/staff/mailman/mail/wrapper post doctores Action: failed Status: 5.5.0 Diagnostic-Code: X-Unix; 69 Last-Attempt-Date: Thu, 15 Aug 2002 18:46:11 -0500 -------------------------------------------------------------------------------- Return-Path: Received: (from apache at localhost) by valdo.uadec.mx (8.11.6/8.11.2) id g7FNk6p17542; Thu, 15 Aug 2002 18:46:06 -0500 Date: Thu, 15 Aug 2002 18:46:06 -0500 Message-Id: <200208152346.g7FNk6p17542 at valdo.uadec.mx> X-Authentication-Warning: valdo.uadec.mx: apache set sender to olucio at valdo.uadec.mx using -f From: "Oswaldo Lucio Estrada" To: doctores at valdo.uadec.mx Subject: sdasdas X-Mailer: NeoMail 1.25 X-IPAddress: 148.212.1.157 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Que esta pasando. El maillog me despliega esto: Aug 15 18:46:11 mail smrsh: uid 8: attempt to use wrapper post doctores Aug 15 18:46:11 mail sendmail[17545]: g7FNk6p17542: to="|/home/staff/mailman/mail/wrapper post doctores", ctladdr=doctores at valdo.uadec.mx (8/0) , delay=00:00:05, xdelay=00:00:00, mailer=prog, pri=30271, dsn=5.0.0, stat=Service unavailable Aug 15 18:46:11 mail sendmail[17545]: g7FNk6p17542: g7FNkBo17545: DSN: Service unavailable Aug 15 18:46:11 mail sendmail[17545]: g7FNkBo17545: to=valdo at mail.uadec.mx, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=30371, dsn=2.0 .0, stat=Sent Nuevamente que pasa: De antemano gracias. Atte: Oswaldo _________________________________________________________________ Charle con sus amigos online usando MSN Messenger: http://messenger.msn.com From mailman-users at imc.nl Fri Aug 16 11:13:20 2002 From: mailman-users at imc.nl (Roelf Schreurs) Date: Fri, 16 Aug 2002 11:13:20 +0200 Subject: [Mailman-Users] more htdig problems Message-ID: <000901c24505$2a401130$c764a8c0@ads.intra.imc> Hi Running mailman 2.1b3 (newest patches) with htdig. I have a couple of lists but the search only works for some. When I run nightly_htdig I get errors with some lists and other work. Here is the ouput to show what is happening. su-2.05a$ ./nightly_htdig -v htdig'ing archive of list: openbsd /usr/bin/sort: mkstemp error: Permission denied htmerge: Word sort failed htdig'ing archive of list: humor As you can see, the list "openbsd" gives errors but the list "humor" works fine. Therefore I can sucsessfully search the "humor" archives, but the "openbsd" archives gives and error when I try and search them. (Unable to read document index file Did you run htmerge?) I did a "chown -R mailman:mailman /opt/mailman" to make sure all permision is the same. I found that the lists that do work, are the ones created after I integrated htdig. Any idea how to fix the lists that was created before htdig intergration? (PS. I have done a blow_away_htdig) Thanks Roelf From john at userfrenzy.com Fri Aug 16 14:59:47 2002 From: john at userfrenzy.com (John Handelaar) Date: Fri, 16 Aug 2002 13:59:47 +0100 Subject: [Mailman-Users] Possibly dumb question re: new install Message-ID: Hi all I've just installed Mailman 2.0.13 on top of QMail, started a test list, and everything looks peachy... ...except that the archive page shows only the full raw archive and a messages stating that 'Currently there are no archives'. I've searched the archive here and the FAQ but found nothing relevant. Am I missing a symlink somewhere, or a cron task, or a permission? Thanks in advance... ------------------------------------------ John Handelaar T +44 20 8933 1494 M +44 7930 681789 F +44 870 169 7657 E john at userfrenzy.com ------------------------------------------ From adam at odu.edu Fri Aug 16 15:48:43 2002 From: adam at odu.edu (Adam Brons) Date: Fri, 16 Aug 2002 09:48:43 -0400 Subject: [Mailman-Users] Moving mailman to new server and upgrading mailman In-Reply-To: References: Message-ID: <20020816134843.GA32738@peldor.occs.odu.edu> Anna, Thanks for the link it helped. To help anyone else that may have to problem. Here's the steps I took some are borrowed from the URL below: 1) tar-balled the mailman 1.x on server 'A' once it was "offline". 2) copied/extracted it to server 'B' 3) re-configured mailman 1.x using the new $PREFIX on server 'B' - make;make install (only do this if you have not modified the mailman code, otherwise you MIGHT overwrite some of your changes - this gets all the Mailman/Cgi/* using the write path and fixes Default.py, and the various paths.py 4) use withlist in a shell script to update the archive paths in each config.db file under lists/ - if you follow the link below it links to examples of shell scripts you can use 5) NOW go to your mailman 2.x directory and do a configure with the $PREFIX the same as mailman 1.x you copied onto server 'B'. - make; make install - make install "should" update without a problem -- mine did And there you have... The one step under http://www.mail-archive.com/mailman-users at python.org/msg11052.html which I disagreed with is recreating all the lists and then copying the config.db back over top of the new list. I'm not sure what was gained by that. I skipped that step and everything is working fine. From what I've seen looking through the code mailman does NOT as of 2.0.13 keep a central database of lists, so as I said I don't see what recreating all the lists buys you. Hope this helps -- Adam Brons Systems Engineer / Unix Support Group Office of Computing and Communications Services Old Dominion University - Norfolk, Virginia. USA DSA ID 7680A17E: 7E88 F9EC 0799 3260 49DA DB77 0327 D32B 7680 A17E On Thu, Aug 15, 2002 at 09:21:42AM -0700, Fong, Anna wrote: > Subject: RE: [Mailman-Users] Moving mailman to new server and upgrading mailman > Date: Thu, 15 Aug 2002 09:21:42 -0700 > From: "Fong, Anna" > To: "Adam Brons" , > > Adam, > > Try this thread: > > http://www.mail-archive.com/mailman-users at python.org/msg11052.html > > > Hope this helps, > Anna > > > -------------------------------------------------------- > > Anna Q. Fong, Webmaster > California Data Exchange Center > > > -----Original Message----- > > From: mailman-users-admin at python.org [SMTP:mailman-users-admin at python.org] On Behalf Of Adam Brons > > Sent: Thursday, August 15, 2002 6:36 AM > > To: mailman-users at python.org > > Subject: [Mailman-Users] Moving mailman to new server and upgrading mailman > > > > I'm looking for some advice, here's the situation: > > > > I have mailman 1.x installed on server 'A'. We're upgrading mailman to > > 2.x but we're also moving it to server 'B'. On server 'A' the install > > directory for mailman is /usr0/mailman. On server 'B' the install > > directory for mailman is going to be /usr1/mailman. > > > > Symlinking /usr0/mailman to /usr1/mailman on server 'B' is NOT an option. > > > > Would it be easier to just do a fresh install of mailman 2.x on server 'B' > > and manually migrate the lists from the old server following the steps in > > "UPGRADING" and fixing whatever else may arise. Or should I copy the > > installation on server 'A' to server 'B' go through and make all the > > changes where the path is wrong and then do a make install of mailman 2.x > > on top of mailman 1.x? Or is there some much easier way to do this? > > > > Any advice would be greatly appreciated. > > > > -- > > Adam Brons Systems Engineer / Unix Support Group > > Office of Computing and Communications Services > > Old Dominion University - Norfolk, Virginia. USA > > > > DSA ID 7680A17E: 7E88 F9EC 0799 3260 49DA DB77 0327 D32B 7680 A17E > > From nathan at lakesidepress.org Fri Aug 16 17:03:23 2002 From: nathan at lakesidepress.org (Nathan A. McQuillen) Date: Fri, 16 Aug 2002 10:03:23 -0500 Subject: [Mailman-Users] Regreso de correos. [traduccion | translation] In-Reply-To: Message-ID: I can't answer the question, but I'll provide a translation: ------------------------- Hello list. I need a little help. I installed Mailman with no problems, created a list called 'doctores', and added two colleagues and myself as members of the list. None of the three received the welcome message sent by the 'doctores' list, and upon my sending a message to the list, it was returned in the following form: > This is a MIME-encapsulated message > > Reporting-MTA: dns; valdo.uadec.mx > Arrival-Date: Thu, 15 Aug 2002 18:46:06 -0500 > > Final-Recipient: RFC822; doctores at valdo.uadec.mx > X-Actual-Recipient: X-Unix; |/home/staff/mailman/mail/wrapper post doctores > Action: failed > Status: 5.5.0 > Diagnostic-Code: X-Unix; 69 > Last-Attempt-Date: Thu, 15 Aug 2002 18:46:11 -0500 > > > ------------------------------------------------------------------------------ > -- > Return-Path: > Received: (from apache at localhost) > by valdo.uadec.mx (8.11.6/8.11.2) id g7FNk6p17542; > Thu, 15 Aug 2002 18:46:06 -0500 > Date: Thu, 15 Aug 2002 18:46:06 -0500 > Message-Id: <200208152346.g7FNk6p17542 at valdo.uadec.mx> > X-Authentication-Warning: valdo.uadec.mx: apache set sender to > olucio at valdo.uadec.mx using -f > From: "Oswaldo Lucio Estrada" > To: doctores at valdo.uadec.mx > Subject: sdasdas > X-Mailer: NeoMail 1.25 > X-IPAddress: 148.212.1.157 > MIME-Version: 1.0 > Content-Type: text/plain; charset=iso-8859-1 What's going on? The maillog records this: > Aug 15 18:46:11 mail smrsh: uid 8: attempt to use wrapper post doctores > Aug 15 18:46:11 mail sendmail[17545]: g7FNk6p17542: > to="|/home/staff/mailman/mail/wrapper post doctores", > ctladdr=doctores at valdo.uadec.mx (8/0) > , delay=00:00:05, xdelay=00:00:00, mailer=prog, pri=30271, dsn=5.0.0, > stat=Service unavailable > Aug 15 18:46:11 mail sendmail[17545]: g7FNk6p17542: g7FNkBo17545: DSN: > Service unavailable > Aug 15 18:46:11 mail sendmail[17545]: g7FNkBo17545: to=valdo at mail.uadec.mx, > delay=00:00:00, xdelay=00:00:00, mailer=local, pri=30371, dsn=2.0 > .0, stat=Sent Again, what's going on? Thanks in advance, Oswald. ------------------- On 8/15/02 7:15 PM, "Oswaldo Lucio Estrada" wrote: > Hola lista. > > Necesito un poco de se ayuda. > > Intale mailman sin ningun problema, cree una lista llamada doctores, agrege > a otros dos compa?eros y a mi mismo como miembros de esa lista. > > A los tres no llego el correo de bienvenida que envio la lista doctores, > pero al enviar yo un correo a la lista se me regresa de la siguiente forma: > > This is a MIME-encapsulated message > > Reporting-MTA: dns; valdo.uadec.mx > Arrival-Date: Thu, 15 Aug 2002 18:46:06 -0500 > > Final-Recipient: RFC822; doctores at valdo.uadec.mx > X-Actual-Recipient: X-Unix; |/home/staff/mailman/mail/wrapper post doctores > Action: failed > Status: 5.5.0 > Diagnostic-Code: X-Unix; 69 > Last-Attempt-Date: Thu, 15 Aug 2002 18:46:11 -0500 > > > ------------------------------------------------------------------------------ > -- > Return-Path: > Received: (from apache at localhost) > by valdo.uadec.mx (8.11.6/8.11.2) id g7FNk6p17542; > Thu, 15 Aug 2002 18:46:06 -0500 > Date: Thu, 15 Aug 2002 18:46:06 -0500 > Message-Id: <200208152346.g7FNk6p17542 at valdo.uadec.mx> > X-Authentication-Warning: valdo.uadec.mx: apache set sender to > olucio at valdo.uadec.mx using -f > From: "Oswaldo Lucio Estrada" > To: doctores at valdo.uadec.mx > Subject: sdasdas > X-Mailer: NeoMail 1.25 > X-IPAddress: 148.212.1.157 > MIME-Version: 1.0 > Content-Type: text/plain; charset=iso-8859-1 > > Que esta pasando. > > El maillog me despliega esto: > > Aug 15 18:46:11 mail smrsh: uid 8: attempt to use wrapper post doctores > Aug 15 18:46:11 mail sendmail[17545]: g7FNk6p17542: > to="|/home/staff/mailman/mail/wrapper post doctores", > ctladdr=doctores at valdo.uadec.mx (8/0) > , delay=00:00:05, xdelay=00:00:00, mailer=prog, pri=30271, dsn=5.0.0, > stat=Service unavailable > Aug 15 18:46:11 mail sendmail[17545]: g7FNk6p17542: g7FNkBo17545: DSN: > Service unavailable > Aug 15 18:46:11 mail sendmail[17545]: g7FNkBo17545: to=valdo at mail.uadec.mx, > delay=00:00:00, xdelay=00:00:00, mailer=local, pri=30371, dsn=2.0 > .0, stat=Sent > > Nuevamente que pasa: > > De antemano gracias. > > Atte: > Oswaldo > > > _________________________________________________________________ > Charle con sus amigos online usando MSN Messenger: http://messenger.msn.com > > > ------------------------------------------------------ > Mailman-Users mailing list > Mailman-Users at python.org > 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/ > > From anna at water.ca.gov Fri Aug 16 18:26:40 2002 From: anna at water.ca.gov (Fong, Anna) Date: Fri, 16 Aug 2002 09:26:40 -0700 Subject: [Mailman-Users] Moving mailman to new server and upgrading mailman Message-ID: You're welcome Adam. And Thank You for listing your steps to add to our collective knowledge. Regarding your question about recreating the lists, my situation was moving 1.x lists from an installation I owned to an existing 2.x installation (2.0.8) owned by someone else. It was not possible or practical to reconfigure the 2.x installation. (Basically, I had to go along with what the other guy was comfortable and willing to do to accommodate my move.) > -----Original Message----- > From: mailman-users-admin at python.org [SMTP:mailman-users-admin at python.org] On Behalf Of Adam Brons > Sent: Friday, August 16, 2002 6:49 AM > To: mailman-users at python.org > Subject: Re: [Mailman-Users] Moving mailman to new server and upgrading mailman > > Anna, > > Thanks for the link it helped. > > To help anyone else that may have to problem. Here's the steps I took > some are borrowed from the URL below: > > 1) tar-balled the mailman 1.x on server 'A' once it was "offline". > 2) copied/extracted it to server 'B' > 3) re-configured mailman 1.x using the new $PREFIX on server 'B' > - make;make install (only do this if you have not modified the mailman > code, otherwise you MIGHT overwrite some of your changes > - this gets all the Mailman/Cgi/* using the write path and fixes > Default.py, and the various paths.py > 4) use withlist in a shell script to update the archive paths in each > config.db file under lists/ > - if you follow the link below it links to examples of shell scripts > you can use > 5) NOW go to your mailman 2.x directory and do a configure with the > $PREFIX the same as mailman 1.x you copied onto server 'B'. > - make; make install > - make install "should" update without a problem -- mine did > > And there you have... The one step under > http://www.mail-archive.com/mailman-users at python.org/msg11052.html which I > disagreed with is recreating all the lists and then copying the config.db > back over top of the new list. I'm not sure what was gained by that. I > skipped that step and everything is working fine. From what I've seen > looking through the code mailman does NOT as of 2.0.13 keep a central > database of lists, so as I said I don't see what recreating all the lists > buys you. > > Hope this helps > > -- > Adam Brons Systems Engineer / Unix Support Group > Office of Computing and Communications Services > Old Dominion University - Norfolk, Virginia. USA > > DSA ID 7680A17E: 7E88 F9EC 0799 3260 49DA DB77 0327 D32B 7680 A17E > > On Thu, Aug 15, 2002 at 09:21:42AM -0700, Fong, Anna wrote: > > Subject: RE: [Mailman-Users] Moving mailman to new server and upgrading mailman > > Date: Thu, 15 Aug 2002 09:21:42 -0700 > > From: "Fong, Anna" > > To: "Adam Brons" , > > > > Adam, > > > > Try this thread: > > > > http://www.mail-archive.com/mailman-users at python.org/msg11052.html > > > > > > Hope this helps, > > Anna > > > > > > -------------------------------------------------------- > > > > Anna Q. Fong, Webmaster > > California Data Exchange Center > > > > > -----Original Message----- > > > From: mailman-users-admin at python.org [SMTP:mailman-users-admin at python.org] On Behalf Of Adam Brons > > > Sent: Thursday, August 15, 2002 6:36 AM > > > To: mailman-users at python.org > > > Subject: [Mailman-Users] Moving mailman to new server and upgrading mailman > > > > > > I'm looking for some advice, here's the situation: > > > > > > I have mailman 1.x installed on server 'A'. We're upgrading mailman to > > > 2.x but we're also moving it to server 'B'. On server 'A' the install > > > directory for mailman is /usr0/mailman. On server 'B' the install > > > directory for mailman is going to be /usr1/mailman. > > > > > > Symlinking /usr0/mailman to /usr1/mailman on server 'B' is NOT an option.> > > > > > > Would it be easier to just do a fresh install of mailman 2.x on server 'B' > > > and manually migrate the lists from the old server following the steps in > > > "UPGRADING" and fixing whatever else may arise. Or should I copy the > > > installation on server 'A' to server 'B' go through and make all the > > > changes where the path is wrong and then do a make install of mailman 2.x > > > on top of mailman 1.x? Or is there some much easier way to do this? > > > > > > Any advice would be greatly appreciated. > > > > > > -- > > > Adam Brons Systems Engineer / Unix Support Group > > > Office of Computing and Communications Services > > > Old Dominion University - Norfolk, Virginia. USA > > > > > > DSA ID 7680A17E: 7E88 F9EC 0799 3260 49DA DB77 0327 D32B 7680 A17E > > > > From support at iquest.ucsb.edu Fri Aug 16 19:27:48 2002 From: support at iquest.ucsb.edu (Support) Date: 16 Aug 2002 10:27:48 -0700 Subject: [Mailman-Users] Anyone's solution to 'WANTED gid 0, GOT gid 12' problem Message-ID: <1029518868.1395.12.camel@chirpy-boy.iquest.ucsb.edu> Hi, Ive been having the same problem as some other people with user subscription problems. I try to subscribe but get a message like this in return ------------------ ----- The following addresses had permanent fatal errors ----- "|/home/mailman/mail/wrapper mailcmd testlist" (reason: 2) (expanded from: ) ----- Transcript of session follows ----- Failure to exec script. WANTED gid 0, GOT gid 12. (Reconfigure to take 12?) 554 5.3.0 unknown mailer error 2 ------------------- Ive tried many suggestions but I haven't gotten it to work. Has anyone figured this problem out? what was your solution. thanx From tim at robnett.net Fri Aug 16 21:40:53 2002 From: tim at robnett.net (Timothy R. Robnett) Date: Fri, 16 Aug 2002 12:40:53 -0700 Subject: [Mailman-Users] How to troubleshoot failure to post Message-ID: <20020816194053.GD30387@polycarp.robnett.net> A few days ago I posted about a MM install I was having some difficulty with. The list assisted and the problem was resolved, thanks! I completed my testing and went to deploy MM on a production server. I downloaded and compiled the source exactly the same on the production server as I had the testing server. Everything went fine, no errors, bin/check_perms says that all is good. Using bin/newlist I created a new list and using the web interface configured it. When I try to post to the list I can see in the web logs where the alias file invokes the "/home/mailman/mail/wrapper post fei" but that is where it stops. None of the mailing list members ever get the message and I can find no other logs pointing to where the process died. I have compared this to my other install which works perfectly and can find no differences. If I su to mailman I can invoke a wrapper at the command prompt, i.e. ./wrapper post fei Message-ID: <20020816204447.47511.qmail@web11502.mail.yahoo.com> can somebody unsubscribe my ass from this list!! Raquel Rice wrote:On Thu, 8 Aug 2002 16:00:58 -0400 "Support Desk" wrote: > > Ha! You self-righteous hippo-crit! http://PaulsFunHouse.com/ > initiates a pop-up for "adult" lists "Pure-Humor".. And carries > links for "adult humor"? Give us a break! Yeah, maybe Tom's reply > was little tough, maybe Tom was having a bad day, but sounds like > the pot calling the kettle black, pal. > > You really think anyone here will miss you? You think you are > depriving us of anything by leaving? Certainly no monetary loss, > since Mailman is open source. > > BTW: list is not moderated, it's one of those values in the USA > called freedom of speech! Don't let the CD-ROM door hit your > behind on your way out. > > SD I'm likely to catch hell over this ... but isn't "free speech" a sad excuse for being rude? -- Raquel ============================================================ Much unhappiness has come into the world because of bewilderment and things left unsaid. --Fyodor Dostoyevsky ------------------------------------------------------ Mailman-Users mailing list Mailman-Users at python.org 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/ --------------------------------- Do You Yahoo!? HotJobs, a Yahoo! service - Search Thousands of New Jobs -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/mailman-users/attachments/20020816/4fe51161/attachment.htm From chuqui at plaidworks.com Fri Aug 16 23:07:53 2002 From: chuqui at plaidworks.com (Chuq Von Rospach) Date: Fri, 16 Aug 2002 14:07:53 -0700 Subject: [Mailman-Users] mailman In-Reply-To: <20020816204447.47511.qmail@web11502.mail.yahoo.com> Message-ID: On 8/16/02 1:44 PM, "Steven C. Young" wrote: > can somebody unsubscribe my ass from this list!! Yes, but it needs to be someone involved with the list. Wchih leaves out everyone on the mailman-users list you just annoyed. We can?t help. -- Chuq Von Rospach, Architech chuqui at plaidworks.com -- http://www.chuqui.com/ IMHO: Jargon. Acronym for In My Humble Opinion. Used to flag as an opinion something that is clearly from context an opinion to everyone except the mentally dense. Opinions flagged by IMHO are actually rarely humble. IMHO. (source: third unabridged dictionary of chuqui-isms). -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/mailman-users/attachments/20020816/a817d17e/attachment.html From miscsmithpd at hotmail.com Fri Aug 16 07:41:36 2002 From: miscsmithpd at hotmail.com (Paul Smith) Date: Fri, 16 Aug 2002 05:41:36 +0000 Subject: [Mailman-Users] How do I subscribe to a list by email ? Message-ID: I would like to create a subscribe / unsubscribe facility on my list rather that getting people to go to the admin page. I was hoping to get them to reply with unsubscribe in the body or subject line ?/ How do I do this, or can you direct me ?/ Thanks _________________________________________________________________ Join the world?s largest e-mail service with MSN Hotmail. http://www.hotmail.com From summer at ComputerDatasafe.com.au Fri Aug 16 09:20:56 2002 From: summer at ComputerDatasafe.com.au (John) Date: Fri, 16 Aug 2002 15:20:56 +0800 Subject: [Mailman-Users] reply_goes_to_list not respected Message-ID: <3D5CA7D8.2020803@ComputerDatasafe.com.au> I can't use the bug reporter at sourceforge. Here is what I tried to report. Where are replies to list messages directed? Poster is strongly recommended for most mailing lists. (Details) Poster This list Explicit address Poster is checked. To: "N2K Broadcast" Subject: New Message System Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 From: nw2000-admin at mail.computerdatasafe.com.au Reply-To: nw2000 at mail.computerdatasafe.com.au Sender: nw2000-admin at mail.computerdatasafe.com.au Errors-To: nw2000-admin at mail.computerdatasafe.com.au X-BeenThere: nw2000 at mail.computerdatasafe.com.au X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: For members of Network 2000 to keep in touch with each other List-Unsubscribe: , List-Archive: Date: Fri, 16 Aug 2002 10:18:09 +0800 Status: R X-Status: N From davebaker at benefitslink.com Fri Aug 16 22:05:15 2002 From: davebaker at benefitslink.com (Dave Baker) Date: Fri, 16 Aug 2002 16:05:15 -0400 Subject: [Mailman-Users] Is the instructions page on the web (for Mailman) broken? Message-ID: <000001c24560$afd6c4a0$6501a8c0@dimen4500> http://www.gnu.org/software/mailman/install-start.html Isn't this page of instructions for Mailman broken? I see very few instructions; it looks garbled. Thanks, Dave Baker From tim at robnett.net Fri Aug 16 23:40:00 2002 From: tim at robnett.net (Timothy R. Robnett) Date: Fri, 16 Aug 2002 14:40:00 -0700 Subject: [Mailman-Users] Is the instructions page on the web (for Mailman) broken? In-Reply-To: <000001c24560$afd6c4a0$6501a8c0@dimen4500> References: <000001c24560$afd6c4a0$6501a8c0@dimen4500> Message-ID: <20020816214000.GA30660@polycarp.robnett.net> On Fri Aug 16, 2002 at 04:05:15PM -0400, Dave Baker wrote: > http://www.gnu.org/software/mailman/install-start.html > > Isn't this page of instructions for Mailman broken? I see very few > instructions; it looks garbled. Looks like an English web page to me. Does www.list.org/install-start.html present the same problem for you? -- Regards, Timothy R. Robnett mailto:tim at robnett.net http://www.robnett.net/~tim/ "If passion drives you, let reason hold the reins." Benjamin Franklin From wolf at wolfstream.net Fri Aug 16 23:45:50 2002 From: wolf at wolfstream.net (Tom Whiting) Date: Fri, 16 Aug 2002 16:45:50 -0500 Subject: [Mailman-Users] Anyone's solution to 'WANTED gid 0, GOT gid 12' problem In-Reply-To: <1029518868.1395.12.camel@chirpy-boy.iquest.ucsb.edu> References: <1029518868.1395.12.camel@chirpy-boy.iquest.ucsb.edu> Message-ID: <200208161645.50999.wolf@wolfstream.net> > ----- Transcript of session follows ----- > Failure to exec script. WANTED gid 0, GOT gid 12. (Reconfigure to take > 12?) do what it says read the manual for HOW to configure with gid's ---------------------------------------------------- TJW: Head tech, Dreamless Realms Mud: http://dreamless.wolfstream.net Snippets http://dreamless.wolfstream.net/ Telnet dreamless.wolfstream.net:9275 The OLC Pages http://olc.wolfstream.net ---------------------------------------------------- From tim at robnett.net Fri Aug 16 23:48:20 2002 From: tim at robnett.net (Timothy R. Robnett) Date: Fri, 16 Aug 2002 14:48:20 -0700 Subject: [Mailman-Users] How do I subscribe to a list by email ? In-Reply-To: References: Message-ID: <20020816214820.GC30660@polycarp.robnett.net> On Fri Aug 16, 2002 at 05:41:36AM +0000, Paul Smith wrote: > > > I would like to create a subscribe / unsubscribe facility on my list rather > that getting people to go to the admin page. > > I was hoping to get them to reply with unsubscribe in the body or subject > line ?/ > > How do I do this, or can you direct me ?/ Try posting to [listname]-request at foo.org with a subject of help. That will yield something akin to: subscribe [password] [digest-option] [address=
] Subscribe to the mailing list. Your password must be given to unsubscribe or change your options. When you subscribe to the list, you'll be reminded of your password periodically. 'digest-option' may be either: 'nodigest' or 'digest' (no quotes!) If you wish to subscribe an address other than the address you send this request from, you may specify "address=" (no brackets around the email address, no quotes!) unsubscribe [address] Unsubscribe from the mailing list. Your password must match the one you gave when you subscribed. If you are trying to unsubscribe from a different address than the one you subscribed from, you may specify it in the 'address' field. who See everyone who is on this mailing list. info View the introductory information for this list. lists See what mailing lists are run by this Mailman server. help This message. HTH -- Regards, Timothy R. Robnett mailto:tim at robnett.net http://www.robnett.net/~tim/ "I know not what course others may take; but as for me, give me liberty, or give me death." Patrick Henry From pgrimpo at inspirmedia.org Sat Aug 17 09:22:03 2002 From: pgrimpo at inspirmedia.org (Phil Grimpo) Date: Sat, 17 Aug 2002 02:22:03 -0500 Subject: [Mailman-Users] Messages not getting sent off the server. Message-ID: I've got a situation where I had to make some IP changes to my network. Now when Mailman gets requests, they'll get archived and sent to local clients on the Linux box, but mail will not get sent out. I'm running Mailman on top of QMail. Any ideas? The logs aren't showing anything unusual. -Grimps -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/mailman-users/attachments/20020817/27cdabda/attachment.htm From wash at wananchi.com Sat Aug 17 17:35:51 2002 From: wash at wananchi.com (Odhiambo Washington) Date: Sat, 17 Aug 2002 18:35:51 +0300 Subject: [Mailman-Users] Running qrunner as daemon ?? Message-ID: <20020817153551.GB5818@ns2.wananchi.com> Hello List Managers Is it allowed to run qrunner (2.1b3) as a daemon? If not what is the recommended way? cheers - wash +----------------------------------+-----------------------------------------+ Odhiambo Washington, wash at wananchi.com . WANANCHI ONLINE LTD (Nairobi, KE) | http://ns2.wananchi.com/~wash/ . 1ere Etage, Loita Hse, Loita St., | GSM: (+254) 722 743 223 . # 10286, 00100 NAIROBI | +---------------------------------+------------------------------------------+ "Oh My God! They killed init! You Bastards!" --from a /. post ++ ``That Ariel Sharon. Boy, he sure is controversial. Most Western countries would have to have a military coup before they enjoyed a leader of that caliber.'' (Sydney Webb) From wash at wananchi.com Sat Aug 17 19:30:38 2002 From: wash at wananchi.com (Odhiambo Washington) Date: Sat, 17 Aug 2002 20:30:38 +0300 Subject: [Mailman-Users] mailman-2.1b3 + Htdig Message-ID: <20020817173038.GA74216@ns2.wananchi.com> Is the configuration of htdig intergration for 2.1b3 any different than 2.0.x ? I have done that but on test I get an error: beastie% sudo ./nightly_htdig -v Skipping htdig for list; no htdig setup: freebsd-geeks cheers - wash +----------------------------------+-----------------------------------------+ Odhiambo Washington, wash at wananchi.com . WANANCHI ONLINE LTD (Nairobi, KE) | http://ns2.wananchi.com/~wash/ . 1ere Etage, Loita Hse, Loita St., | GSM: (+254) 722 743 223 . # 10286, 00100 NAIROBI | +---------------------------------+------------------------------------------+ "Oh My God! They killed init! You Bastards!" --from a /. post ++ ``That Ariel Sharon. Boy, he sure is controversial. Most Western countries would have to have a military coup before they enjoyed a leader of that caliber.'' (Sydney Webb) From wash at wananchi.com Sat Aug 17 19:44:14 2002 From: wash at wananchi.com (Odhiambo Washington) Date: Sat, 17 Aug 2002 20:44:14 +0300 Subject: [Mailman-Users] Mailman + Virtual Hosting Message-ID: <20020817174414.GC74216@ns2.wananchi.com> I am fairly familiar with setup of mailman using the primary domain name. I do have virtual domains which I handle e-mail for (ISP setup) and one of them has asked me to host a list for them. I am lost as to how to go about it. I have seen a writeup by Nigel about Exim+Mailman but his setup kind deals with pure virtual hosting, unless I misread it of course. Someone has any pointers for 2.0.x or 2.1(b3) ?? cheers - wash +----------------------------------+-----------------------------------------+ Odhiambo Washington, wash at wananchi.com . WANANCHI ONLINE LTD (Nairobi, KE) | http://ns2.wananchi.com/~wash/ . 1ere Etage, Loita Hse, Loita St., | GSM: (+254) 722 743 223 . # 10286, 00100 NAIROBI | +---------------------------------+------------------------------------------+ "Oh My God! They killed init! You Bastards!" --from a /. post ++ ``That Ariel Sharon. Boy, he sure is controversial. Most Western countries would have to have a military coup before they enjoyed a leader of that caliber.'' (Sydney Webb) From vanhorn at whidbey.com Sat Aug 17 21:04:21 2002 From: vanhorn at whidbey.com (G. Armour Van Horn) Date: Sat, 17 Aug 2002 12:04:21 -0700 Subject: [Mailman-Users] Missing footer References: <20020817173038.GA74216@ns2.wananchi.com> Message-ID: <3D5E9E35.410221FD@whidbey.com> I'm using Mailman 2.0.12 with the almost-2.0.13 patch. I have a new list that I created a couple of days ago, and the messages from the list do not have the footer on them. The information in the last part of the "Regular-member (non-digest) Options" page matches at least two other lists that are getting this information displayed on messages. Is there some other place where this is controlled? Also, the archives are a mess, looking just like the source of the MIME messages that were sent to the list. My other archives on the same machine look great with occasional MIME nonsense. Is this an abberation, or is it that all the members of this list are using substandard mail clients? (It is possible that every other member of this one list, other than myself, is using Outlook installed with all the default settings.) Van -- ---------------------------------------------------------- Sign up now for Quotes of the Day, a handful of quotations on a theme delivered every morning. Enlightenment! Daily, for free! mailto:twisted at whidbey.com?subject=Subscribe_QOTD For web hosting and maintenance, visit Van's home page: http://www.domainvanhorn.com/van/ ---------------------------------------------------------- From gerdt at mindspring.com Sat Aug 17 21:31:27 2002 From: gerdt at mindspring.com (Stephen Schowengerdt) Date: Sat, 17 Aug 2002 13:31:27 -0600 Subject: [Mailman-Users] Mailman not adding members Message-ID: I've just finished installing Mailman for the first time and I cannot add a member to the list. When I send a join request to the list, the list sends e-mail to the list owner and to the user who is trying to join for their confirmation. Once the confirmation is returned to the list, the user doesn't receive the welcome message and is not added to the list. The new user records are in the pending_subscription.db. Can anyone help me with this? Thank you in advance. Stephen Schowengerdt From pgrimpo at inspirmedia.org Sun Aug 18 00:02:19 2002 From: pgrimpo at inspirmedia.org (Phil Grimpo) Date: Sat, 17 Aug 2002 17:02:19 -0500 Subject: [Mailman-Users] Mailman on QMail with Closed Relay Message-ID: I recently closed my open relay in QMail and now Mailman will only send to users who have mailboxes on the local machine. It will not send 'off-site'. I have the IP of the local machine in the qmail-smtp file. Any ideas on what might have gotten messed up that this no longer works? -Grimps -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/mailman-users/attachments/20020817/7ac3e7aa/attachment.html From web at reportica.net Sun Aug 18 01:03:31 2002 From: web at reportica.net (Sheryl Coe) Date: Sat, 17 Aug 2002 19:03:31 -0400 Subject: [Mailman-Users] Mailman on QMail with Closed Relay In-Reply-To: Message-ID: <5.1.1.5.2.20020817184633.02fdd040@reportica.net> Dear Grimpo, We have qmail and mailman up and running in RH Linux. Is there something specific you can ask? What error message/response do you get? Do you have all local domains you want to relay for listed as mydomain.com and .mydomain.com in /var/qmail/control/rcpthosts? Stumbling in the dark here. Sheryl At 06:02 PM 08/17/2002, Phil Grimpo wrote: >I recently closed my open relay in QMail and now Mailman will only send to >users who have mailboxes on the local machine. It will not send off-site >. I have the IP of the local machine in the qmail-smtp file. Any ideas >on what might have gotten messed up that this no longer works? > > > >-Grimps From danielj at danieljweb.net Sun Aug 18 12:56:44 2002 From: danielj at danieljweb.net (Dan Juarez) Date: Sun, 18 Aug 2002 04:56:44 -0600 Subject: [Mailman-Users] Exporting List of Addresses Message-ID: <5.1.1.6.2.20020818045544.00b6f5f0@mail.danieljweb.net> How can I export my subscriber list (list of email addresses) out of MailMan? Thanks. DANIEL J WEB DESIGN Clean, Easy-to-Navigate Web Sites danielj at danieljweb.net http://www.danieljweb.net -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/mailman-users/attachments/20020818/2c291430/attachment.htm From pgrimpo at inspirmedia.org Mon Aug 19 06:27:47 2002 From: pgrimpo at inspirmedia.org (Phil Grimpo) Date: Sun, 18 Aug 2002 23:27:47 -0500 Subject: [Mailman-Users] Mailman on QMail with Closed Relay Message-ID: I've been checking the qmail logs and it looks like it doesn't even try to send messages off the server, I just see sending to local. Any idea what other logs I could check? -Phil Grimpo -----Original Message----- From: Al Sparks [mailto:data345 at yahoo.com] Sent: Sunday, August 18, 2002 12:35 PM To: Phil Grimpo Subject: RE: [Mailman-Users] Mailman on QMail with Closed Relay Actually, I was going by the documentation in "Life with qmail" by Dave Sill. His way to configures tcpserver a little different. I hadn't realized there was a more generic file structure for tcpserver in use. To ensure that tcpserver is accessing the right database file, do a ps -auxw | egrep tcpserver and see what the -x switch is set to. If it's tcserver -x /etc/tcprules.d/qmail-smtp.cdb and that's the name of your database file, then you're doing the right thing. I would also do a man tcprules to make sure the formatting and syntax of your tcprules file is correct. Lastly (or firstly), check the qmail logs and see if there's any errors in sending out messages. === Al --- Phil Grimpo wrote: > > I do not have a tcp.smtp file, but do have /etc/tcprules.d/ and did put > the entry in qmail-smtp and rebuilt the database. Do I need to have > tcp.smtp also? > > -Grimps > > > > -----Original Message----- > From: Al Sparks [mailto:data345 at yahoo.com] > Sent: Saturday, August 17, 2002 5:25 PM > To: Phil Grimpo > Subject: Re: [Mailman-Users] Mailman on QMail with Closed Relay > > > --- Phil Grimpo wrote: > > I recently closed my open relay in QMail and now Mailman will only > send > > to users who have mailboxes on the local machine. It will not send > > 'off-site'. I have the IP of the local machine in the qmail-smtp > file. > > Any ideas on what might have gotten messed up that this no longer > works? > > > > -Grimps > > > > Just to confirm, you have placed the entry in > /etc/tcp.smtp > and then ran > # tcprules /etc/tcp.smtp.cdb /etc/tcp.smtp.tmp < /etc/tcp.smtp > to update the database file? > > Also, it's "qmail" not "QMail" > === Al > > __________________________________________________ > Do You Yahoo!? > HotJobs - Search Thousands of New Jobs > http://www.hotjobs.com __________________________________________________ Do You Yahoo!? HotJobs - Search Thousands of New Jobs http://www.hotjobs.com From pgrimpo at inspirmedia.org Mon Aug 19 07:39:48 2002 From: pgrimpo at inspirmedia.org (Phil Grimpo) Date: Mon, 19 Aug 2002 00:39:48 -0500 Subject: [Mailman-Users] Questions about my logs. Message-ID: I've noticed that members are constantly coming up as "nomail" marked next to their name. I checked the bounce log and I'm seeing a lot of errors like - "1 more allowed over 431930 secs" What does that mean? I am noticing a serious CNAME lookup error in qmail (if anyone has insight on that, I'd like to know. Nearly every e-mail comes up with that error) so I'm guessing e-mail is bouncing and after x bounces it gets disabled? Is this correct? Also, what does the error mean: user at domain.com is not a member? Thanks! -Phil Grimpo -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/mailman-users/attachments/20020819/95aab280/attachment.html From bronto at csd-bes.net Mon Aug 19 08:28:38 2002 From: bronto at csd-bes.net (bronto) Date: Sun, 18 Aug 2002 23:28:38 -0700 Subject: [Mailman-Users] Can I use Webmin to create/manage .htaccess files? Message-ID: <5.1.1.6.0.20020818232536.00a135b0@pop3d.sbdsl.com> I need to be able to rapidly create and edit .htaccess files for my customers. I've only set one up once, months ago, and it works well for the directory it was intended for but I need to start doing this a lot. Can I use webmin for this? If so, is there a step-by-step somewhere? Thanks From bvo at atz.nl Mon Aug 19 09:57:42 2002 From: bvo at atz.nl (B. van Ouwerkerk) Date: Mon, 19 Aug 2002 09:57:42 +0200 Subject: [Mailman-Users] Can I use Webmin to create/manage .htaccess files? In-Reply-To: <5.1.1.6.0.20020818232536.00a135b0@pop3d.sbdsl.com> Message-ID: <4.3.2.7.2.20020819095521.02a51740@pop.atz-hosting.nl> At 23:28 18-8-02 -0700, bronto wrote: >I need to be able to rapidly create and edit .htaccess files for my >customers. I've only set one up once, months ago, and it works well for >the directory it was intended for but I need to start doing this a lot. > >Can I use webmin for this? If so, is there a step-by-step somewhere? Dunno. I suggest you give it a try. /me never uses something like webmin. If it doesn't fly I'm sure you will find several Perl and PHP scripts that can maintain and create .htaccess and password files. Bye, B. From R.Barrett at ftel.co.uk Mon Aug 19 13:22:54 2002 From: R.Barrett at ftel.co.uk (Richard Barrett) Date: Mon, 19 Aug 2002 12:22:54 +0100 Subject: [Mailman-Users] mailman-2.1b3 + Htdig In-Reply-To: <20020817173038.GA74216@ns2.wananchi.com> Message-ID: <5.1.0.14.2.20020819091051.00ae4e30@pop.ftel.co.uk> At 20:30 17/08/2002 +0300, Odhiambo Washington wrote: >Is the configuration of htdig intergration for 2.1b3 any different than >2.0.x ? Not as far as Mailman config variables are concerned. >I have done that but on test I get an error: > >beastie% sudo ./nightly_htdig -v >Skipping htdig for list; no htdig setup: freebsd-geeks > Check whether the directory $prefix/archives/private//htdig exists and if so whether there is a file called .conf in it. The per list htdig directory and the htdig conf file in it are created when the first message is sent to a list after: 1. mailman-htdig integration is installed and the archiving for the list is turned on. 2. after blow_away_htdig has been run in the case of archived list where mailman-htdig integration is installed. No message then no htdig setup for the list and hence nothing for nightly_htdig to do. As an aside, are you running nightly htdig as root user or the mailman user? If as root then why? Not that this should make any difference to the query you've raised. > cheers > - wash From wash at wananchi.com Mon Aug 19 13:42:02 2002 From: wash at wananchi.com (Odhiambo Washington) Date: Mon, 19 Aug 2002 14:42:02 +0300 Subject: [Mailman-Users] mailman-2.1b3 + Htdig In-Reply-To: <5.1.0.14.2.20020819091051.00ae4e30@pop.ftel.co.uk> References: <20020817173038.GA74216@ns2.wananchi.com> <5.1.0.14.2.20020819091051.00ae4e30@pop.ftel.co.uk> Message-ID: <20020819114202.GJ39386@ns2.wananchi.com> * Richard Barrett [20020819 14:23]: wrote: > At 20:30 17/08/2002 +0300, Odhiambo Washington wrote: > > >Is the configuration of htdig intergration for 2.1b3 any different than > >2.0.x ? > > Not as far as Mailman config variables are concerned. > > >I have done that but on test I get an error: > > > >beastie% sudo ./nightly_htdig -v > >Skipping htdig for list; no htdig setup: freebsd-geeks > > > > Check whether the directory $prefix/archives/private//htdig > exists and if so whether there is a file called .conf in it. It actually worked after I blew away everything and did things from scratch. I hate the methodology but it does work in experimental situations. > The per list htdig directory and the htdig conf file in it are created when > the first message is sent to a list after: > > 1. mailman-htdig integration is installed and the archiving for the list is > turned on. > > 2. after blow_away_htdig has been run in the case of archived list where > mailman-htdig integration is installed. > > No message then no htdig setup for the list and hence nothing for > nightly_htdig to do. > > As an aside, are you running nightly htdig as root user or the mailman > user? If as root then why? Not that this should make any difference to the > query you've raised. Runs as mailman. Thanks cheers - wash +----------------------------------+-----------------------------------------+ Odhiambo Washington, wash at wananchi.com . WANANCHI ONLINE LTD (Nairobi, KE) | http://ns2.wananchi.com/~wash/ . 1ere Etage, Loita Hse, Loita St., | GSM: (+254) 722 743 223 . # 10286, 00100 NAIROBI | +---------------------------------+------------------------------------------+ "Oh My God! They killed init! You Bastards!" --from a /. post ++ ``That Ariel Sharon. Boy, he sure is controversial. Most Western countries would have to have a military coup before they enjoyed a leader of that caliber.'' (Sydney Webb) From wash at wananchi.com Mon Aug 19 13:48:31 2002 From: wash at wananchi.com (Odhiambo Washington) Date: Mon, 19 Aug 2002 14:48:31 +0300 Subject: [Mailman-Users] Exporting List of Addresses In-Reply-To: <5.1.1.6.2.20020818045544.00b6f5f0@mail.danieljweb.net> References: <5.1.1.6.2.20020818045544.00b6f5f0@mail.danieljweb.net> Message-ID: <20020819114831.GM39386@ns2.wananchi.com> * Dan Juarez [20020818 13:57]: wrote: > How can I export my subscriber list (list of email addresses) out of > MailMan? cd $prefix/mailman/bin ./list_members listname > some_file cheers - wash +----------------------------------+-----------------------------------------+ Odhiambo Washington, wash at wananchi.com . WANANCHI ONLINE LTD (Nairobi, KE) | http://ns2.wananchi.com/~wash/ . 1ere Etage, Loita Hse, Loita St., | GSM: (+254) 722 743 223 . # 10286, 00100 NAIROBI | +---------------------------------+------------------------------------------+ "Oh My God! They killed init! You Bastards!" --from a /. post ++ ``That Ariel Sharon. Boy, he sure is controversial. Most Western countries would have to have a military coup before they enjoyed a leader of that caliber.'' (Sydney Webb) From john at userfrenzy.com Mon Aug 19 15:50:56 2002 From: john at userfrenzy.com (John Handelaar) Date: Mon, 19 Aug 2002 14:50:56 +0100 Subject: [Mailman-Users] What/who invokes Pipermail? Message-ID: Hi all Still trying to get to the bottom of the 'no threads showing on the archive page' problem, and it's not the same issue relating to headers and SpamAssassin which appears in the archives. So the next questions are: * How is Pipermail supposed to be invoked? Does one of the other processes call it? * Which Python script builds the indexes? * Which user should it be running as? Same as Mailman? * What are the permissions supposed to be on the mbox archives? * Where (if anywhere) is this failure to build being logged? It's just that nothing in the crontab.in file which is part of the installation seems to be obviously responsible for the archives being built, and looking through this list's archives turns up *loads* of problems identical to this but not a single answer. So if I can get to the bottom of it, it'll be in the archives for those who follow :-) Cheers ------------------------------------------ John Handelaar T +44 20 8933 1494 M +44 7930 681789 F +44 870 169 7657 E john at userfrenzy.com ------------------------------------------ From R.Barrett at ftel.co.uk Mon Aug 19 17:26:32 2002 From: R.Barrett at ftel.co.uk (Richard Barrett) Date: Mon, 19 Aug 2002 16:26:32 +0100 Subject: [Mailman-Users] mailman-2.1b3 + Htdig In-Reply-To: <20020819114202.GJ39386@ns2.wananchi.com> References: <5.1.0.14.2.20020819091051.00ae4e30@pop.ftel.co.uk> <20020817173038.GA74216@ns2.wananchi.com> <5.1.0.14.2.20020819091051.00ae4e30@pop.ftel.co.uk> Message-ID: <5.1.0.14.2.20020819135404.0485a468@pop.ftel.co.uk> At 14:42 19/08/2002 +0300, Odhiambo Washington wrote: >* Richard Barrett [20020819 14:23]: wrote: > > At 20:30 17/08/2002 +0300, Odhiambo Washington wrote: > > > > >Is the configuration of htdig intergration for 2.1b3 any different than > > >2.0.x ? > > > > Not as far as Mailman config variables are concerned. > > > > >I have done that but on test I get an error: > > > > > >beastie% sudo ./nightly_htdig -v > > >Skipping htdig for list; no htdig setup: freebsd-geeks > > > > > > > Check whether the directory $prefix/archives/private//htdig > > exists and if so whether there is a file called .conf in it. > > >It actually worked after I blew away everything and did things from scratch. >I hate the methodology but it does work in experimental situations. If the list was htidg searchable before you upgraded from MM 2.0.13 to 2.1b3 then you may have changed something so that there was no longer an htdig subdirectory in the list's HTML archive directory post-upgrade that was there pre-upgrade. The message "Skipping htdig for list; no htdig setup: " is simply saying that the $prefix/archives/private//htdig directory doesn't exist. It is this same test that tells the patched code whether the htdig stuff associated with a list has already been created when messages for the list are archived. If that stuff hasn't then it is created at that time. The normal process of upgrading MM should not have deleted the list's htdig related stuff. Upgrading MM versions does not normally require blow_away_htdig be run and per list htdig conf files and search indexes etc should carry forward unchanged. My test installation goes from 2.0.13 to 2.1b3 without any problems of this sort. The use of blow_away_htdig is only mandated in circumstances described in $build/INSTALL.htdig-mailman, when the Mailman archive path has been changed or when changes are made in some of MM's htdig related configuration variables. > > The per list htdig directory and the htdig conf file in it are created > when > > the first message is sent to a list after: > > Maybe I should have said "... the first message is sent to a list after either of the following:" > > 1. mailman-htdig integration is installed and the archiving for the > list is > > turned on. > > > > 2. after blow_away_htdig has been run in the case of archived list where > > mailman-htdig integration is installed. > > > > No message then no htdig setup for the list and hence nothing for > > nightly_htdig to do. > > From bronto at csd-bes.net Mon Aug 19 18:01:52 2002 From: bronto at csd-bes.net (bronto) Date: Mon, 19 Aug 2002 09:01:52 -0700 Subject: [Mailman-Users] Can I use Webmin to create/manage .htaccess files? In-Reply-To: <5.1.1.6.0.20020818232536.00a135b0@pop3d.sbdsl.com> References: <5.1.1.6.0.20020818232536.00a135b0@pop3d.sbdsl.com> Message-ID: Sorry everybody. I'm an idiot :') I meant to send this message to the webmin mailing list. Rob >I need to be able to rapidly create and edit .htaccess files for my >customers. I've only set one up once, months ago, and it works well >for the directory it was intended for but I need to start doing this >a lot. > >Can I use webmin for this? If so, is there a step-by-step somewhere? > >Thanks > > >------------------------------------------------------ >Mailman-Users mailing list >Mailman-Users at python.org >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/ From dene at ulmschneiders.com Mon Aug 19 18:10:58 2002 From: dene at ulmschneiders.com (Dene Ulmschneider) Date: Mon, 19 Aug 2002 12:10:58 -0400 Subject: [Mailman-Users] managing mailman lists through webmin version 0.990 Message-ID: <5.1.0.14.2.20020819115939.01c57fc8@192.168.1.111> Does anyone here know how to redirect Webmin to look in a different location for the mailman files? When I try to access the Mailman Manager through webmin - I get the following error: Cannot find Mailman files! Do you have Mailman installed? But I know I have mailman installed and working - it already has a few lists that are running correctly. Any help would be greatly appreciated. Thank you, Dene Ulmschneider ------------------------------------------------------------------------ home: 718.322.6636 office: 718.738.8859 pager: 917.654.0479 toll free: 888.891.6385 email: dene at ulmschneiders.com pager mail: denenow at ulmschneiders.com ------------------------------------------------------------------------ "Life is too short...-...you should have desert first" -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/mailman-users/attachments/20020819/de89f1c5/attachment.htm From mary.y.wang at boeing.com Mon Aug 19 18:22:40 2002 From: mary.y.wang at boeing.com (Wang, Mary Y) Date: Mon, 19 Aug 2002 09:22:40 -0700 Subject: [Mailman-Users] A long URL - 2 lines - second line is not clickable. Message-ID: <9C2F3AD0B86DC94B987EC4FB97C7A32405EEAC7C@XCH-SW-08.sw.nos.boeing.com> Hi, I am using Mailman 2.0.6-1 and Sendmail-8.11.6-3. My users are complaining about the line wrap problem when send mailing mail to the mail list with a long URL. It seems line wraps text lines that are longer than 80 characters with no white-space. If you include a long URL in a email message it usually gets split onto separate lines and the typical email reader within BCA (exchange) marks the first part of the link as clickable when usually it isn't. People have to paste the whole link back together manually in a web browser input dialog to get it to work. First, I thought it maybe a Sendmail problem. So I tried send a mail via Sendmail with a long URL and it appears to be fine. The long URL did split into two lines, and the second line is still highlighted as a href link, so there was no problem. By clicking the link, the browser would bring up the correct information. However, sending an email to the mail list is a different problem. For example, http://labtest.ca.boeing.com/~psim/NewRtPlatform/test_plate_form_notes.07_18 _02.html will show up with 2 lines and the second line would be ml and wouldn't be highlighted as part of the URL that is clickable. Any clue? Thanks for any help. We had this problem for about a year. I finally got a chance to look into it now. Mary (562) 797-1545 From ashley at pcraft.com Mon Aug 19 18:30:38 2002 From: ashley at pcraft.com (Ashley M. Kirchner) Date: Mon, 19 Aug 2002 10:30:38 -0600 Subject: [Mailman-Users] managing mailman lists through webmin version 0.990 References: <5.1.0.14.2.20020819115939.01c57fc8@192.168.1.111> Message-ID: <3D611D2E.23338741@pcraft.com> Dene Ulmschneider wrote: > Does anyone here know how to redirect Webmin to look in a different location for the mailman files? > > When I try to access the Mailman Manager through webmin - I get the following error: > Cannot find Mailman files! Do you have Mailman installed? > But I know I have mailman installed and working - it already has a few lists that are running correctly. > > Any help would be greatly appreciated. This is really a question for the webmin mailing list. I would assume there are configuration files for webmin where you can alter the default paths, however not using webmin myself, I can't verify that theory. -- H | "Life is the art of drawing without an eraser." - John Gardner +-------------------------------------------------------------------- Ashley M. Kirchner . 303.442.6410 x130 Director of Internet Operations / SysAdmin . 800.441.3873 x130 Photo Craft Laboratories, Inc. . 3550 Arapahoe Ave, #6 http://www.pcraft.com ..... . . . Boulder, CO 80303, U.S.A. From bronto at csd-bes.net Mon Aug 19 18:52:28 2002 From: bronto at csd-bes.net (bronto) Date: Mon, 19 Aug 2002 09:52:28 -0700 Subject: [Mailman-Users] managing mailman lists through webmin version 0.990 In-Reply-To: <3D611D2E.23338741@pcraft.com> References: <5.1.0.14.2.20020819115939.01c57fc8@192.168.1.111> <3D611D2E.23338741@pcraft.com> Message-ID: I think that Dene is referring to the mailman module that is/was available for webmin. Dene; unless you have urgent need, don't spend too much time on this. I never got the mailman module for webmin to work. I think is was for a 1.x version of mailman and that's quite old now. Plus, v2.1 of mailman is coming along nicely in beta testing and it has a fully featured web based mailing list creation interface, negating the need to have one in webmin. Rob >Dene Ulmschneider wrote: > >> Does anyone here know how to redirect Webmin to look in a >>different location for the mailman files? >> >> When I try to access the Mailman Manager through webmin - I get >>the following error: >> Cannot find Mailman files! Do you have Mailman installed? >> But I know I have mailman installed and working - it already has a >>few lists that are running correctly. >> >> Any help would be greatly appreciated. > > This is really a question for the webmin mailing list. I would >assume there are configuration files for webmin where you can alter >the default paths, however not using webmin myself, I can't verify >that theory. > >-- >H | "Life is the art of drawing without an eraser." - John Gardner > +-------------------------------------------------------------------- > Ashley M. Kirchner . 303.442.6410 x130 > Director of Internet Operations / SysAdmin . 800.441.3873 x130 > Photo Craft Laboratories, Inc. . 3550 Arapahoe Ave, #6 > http://www.pcraft.com ..... . . . Boulder, CO 80303, U.S.A. > > > > >------------------------------------------------------ >Mailman-Users mailing list >Mailman-Users at python.org >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/ From ashley at pcraft.com Mon Aug 19 21:27:30 2002 From: ashley at pcraft.com (Ashley M. Kirchner) Date: Mon, 19 Aug 2002 13:27:30 -0600 Subject: [Mailman-Users] Error log Message-ID: <3D6146A2.D143FF80@pcraft.com> Found these in my error log today. Can anyone explain them to me please? Aug 19 02:48:22 2002 (30100) Traceback (innermost last): File "/home/mailman/Mailman/Handlers/HandlerAPI.py", line 82, in do_pipeline func(mlist, msg, msgdata) File "/home/mailman/Mailman/Handlers/SMTPDirect.py", line 74, in process deliver(admin, msgtext, chunk, refused) File "/home/mailman/Mailman/Handlers/SMTPDirect.py", line 210, in deliver refused = conn.sendmail(envsender, recips, msgtext) File "/home/mailman/Mailman/pythonlib/smtplib.py", line 496, in sendmail (code,resp)=self.rcpt(each, rcpt_options) File "/home/mailman/Mailman/pythonlib/smtplib.py", line 379, in rcpt return self.getreply() File "/home/mailman/Mailman/pythonlib/smtplib.py", line 281, in getreply line = self.file.readline() File "/home/mailman/Mailman/Cgi/admin.py", line 143, in sigterm_handler sys.exit(0) SystemExit: 0 Aug 19 03:17:50 2002 (31635) Delivery exception: 0 Aug 19 03:17:50 2002 (31635) Traceback (innermost last): File "/home/mailman/Mailman/Handlers/HandlerAPI.py", line 82, in do_pipeline func(mlist, msg, msgdata) File "/home/mailman/Mailman/Handlers/SMTPDirect.py", line 77, in process mlist.Lock() File "/home/mailman/Mailman/MailList.py", line 1343, in Lock self.Load() File "/home/mailman/Mailman/MailList.py", line 892, in Load dict, e = self.__load(dbfile) File "/home/mailman/Mailman/MailList.py", line 875, in __load dict = marshal.load(fp) File "/home/mailman/Mailman/Cgi/admin.py", line 143, in sigterm_handler sys.exit(0) SystemExit: 0 Aug 19 03:17:50 2002 (31635) Delivery exception: Aug 19 03:17:50 2002 (31635) Traceback (innermost last): File "/home/mailman/Mailman/Handlers/HandlerAPI.py", line 82, in do_pipeline func(mlist, msg, msgdata) File "/home/mailman/Mailman/Handlers/SMTPDirect.py", line 68, in process mlist.Save() File "/home/mailman/Mailman/MailList.py", line 843, in Save self.__lock.refresh() File "/home/mailman/Mailman/LockFile.py", line 204, in refresh raise NotLockedError NotLockedError: Aug 19 11:22:42 2002 (9064) Delivery exception: 0 Aug 19 11:22:42 2002 (9064) Traceback (innermost last): File "/home/mailman/Mailman/Handlers/HandlerAPI.py", line 82, in do_pipeline func(mlist, msg, msgdata) File "/home/mailman/Mailman/Handlers/SMTPDirect.py", line 74, in process deliver(admin, msgtext, chunk, refused) File "/home/mailman/Mailman/Handlers/SMTPDirect.py", line 210, in deliver refused = conn.sendmail(envsender, recips, msgtext) File "/home/mailman/Mailman/pythonlib/smtplib.py", line 496, in sendmail (code,resp)=self.rcpt(each, rcpt_options) File "/home/mailman/Mailman/pythonlib/smtplib.py", line 379, in rcpt return self.getreply() File "/home/mailman/Mailman/pythonlib/smtplib.py", line 281, in getreply line = self.file.readline() File "/home/mailman/Mailman/Cgi/admin.py", line 143, in sigterm_handler sys.exit(0) SystemExit: 0 -- W | I haven't lost my mind; it's backed up on tape somewhere. +-------------------------------------------------------------------- Ashley M. Kirchner . 303.442.6410 x130 IT Director / SysAdmin / WebSmith . 800.441.3873 x130 Photo Craft Laboratories, Inc. . 3550 Arapahoe Ave. #6 http://www.pcraft.com ..... . . . Boulder, CO 80303, U.S.A. From jwblist at olympus.net Mon Aug 19 23:08:40 2002 From: jwblist at olympus.net (John W Baxter) Date: Mon, 19 Aug 2002 14:08:40 -0700 Subject: [Mailman-Users] A long URL - 2 lines - second line is not clickable. In-Reply-To: <9C2F3AD0B86DC94B987EC4FB97C7A32405EEAC7C@XCH-SW-08.sw.nos.boeing.com> References: <9C2F3AD0B86DC94B987EC4FB97C7A32405EEAC7C@XCH-SW-08.sw.nos.boeing.com> Message-ID: At 9:22 -0700 8/19/2002, Wang, Mary Y wrote: >For example, >http://labtest.ca.boeing.com/~psim/NewRtPlatform/test_plate_form_notes.07_18 >_02.html will show up with 2 lines and the second line would be ml and >wouldn't be highlighted as part of the URL that is clickable. > >Any clue? > >Thanks for any help. We had this problem for about a year. I finally got a >chance to look into it now. This stuff is so much easier in Macintosh land, where the convention is to surround the URL with <> and the mail clients know that a URL is inside the <> whether it's split across lines or not. Oh, well. --John -- John Baxter jwblist at olympus.net Port Ludlow, WA, USA From sead at arraycomm.com Tue Aug 20 00:40:19 2002 From: sead at arraycomm.com (Sead Mujushi) Date: Mon, 19 Aug 2002 15:40:19 -0700 Subject: [Mailman-Users] Non-member postings to list automatically rejected Message-ID: <1737975746.1029771619@[172.16.1.93]> Hi, how can I configure a list so that postings from non-members are automatically rejected with no action required on my part as an administrator? From olucioe at hotmail.com Tue Aug 20 01:56:19 2002 From: olucioe at hotmail.com (Oswaldo Lucio Estrada) Date: Mon, 19 Aug 2002 18:56:19 -0500 Subject: [Mailman-Users] please they answer (help me). Message-ID: Hello list. I need a little help. I installed Mailman with no problems, created a list called 'doctores', and added two colleagues and myself as members of the list. None of the three received the welcome message sent by the 'doctores' list, and upon my sending a message to the list, it was returned in the following form: >This is a MIME-encapsulated message > >Reporting-MTA: dns; valdo.uadec.mx >Arrival-Date: Thu, 15 Aug 2002 18:46:06 -0500 > >Final-Recipient: RFC822; doctores at valdo.uadec.mx >X-Actual-Recipient: X-Unix; |/home/staff/mailman/mail/wrapper post doctores >Action: failed >Status: 5.5.0 >Diagnostic-Code: X-Unix; 69 >Last-Attempt-Date: Thu, 15 Aug 2002 18:46:11 -0500 > > >------------------------------------------------------------------------------ >-- >Return-Path: >Received: (from apache at localhost) > by valdo.uadec.mx (8.11.6/8.11.2) id g7FNk6p17542; > Thu, 15 Aug 2002 18:46:06 -0500 >Date: Thu, 15 Aug 2002 18:46:06 -0500 >Message-Id: <200208152346.g7FNk6p17542 at valdo.uadec.mx> >X-Authentication-Warning: valdo.uadec.mx: apache set sender to >olucio at valdo.uadec.mx using -f >From: "Oswaldo Lucio Estrada" >To: doctores at valdo.uadec.mx >Subject: sdasdas >X-Mailer: NeoMail 1.25 >X-IPAddress: 148.212.1.157 >MIME-Version: 1.0 >Content-Type: text/plain; charset=iso-8859-1 What's going on? The maillog records this: >Aug 15 18:46:11 mail smrsh: uid 8: attempt to use wrapper post doctores >Aug 15 18:46:11 mail sendmail[17545]: g7FNk6p17542: >to="|/home/staff/mailman/mail/wrapper post doctores", >ctladdr=doctores at valdo.uadec.mx (8/0) >, delay=00:00:05, xdelay=00:00:00, mailer=prog, pri=30271, dsn=5.0.0, >stat=Service unavailable >Aug 15 18:46:11 mail sendmail[17545]: g7FNk6p17542: g7FNkBo17545: DSN: >Service unavailable >Aug 15 18:46:11 mail sendmail[17545]: g7FNkBo17545: to=valdo at mail.uadec.mx, >delay=00:00:00, xdelay=00:00:00, mailer=local, pri=30371, dsn=2.0 >.0, stat=Sent Again, what's going on? Thanks in advance, Oswald. _________________________________________________________________ MSN Fotos: la forma m?s f?cil de compartir e imprimir fotos. http://photos.msn.es/support/worldwide.aspx From data345 at yahoo.com Tue Aug 20 04:30:33 2002 From: data345 at yahoo.com (Al Sparks) Date: Mon, 19 Aug 2002 19:30:33 -0700 (PDT) Subject: [Mailman-Users] Mailman on QMail with Closed Relay In-Reply-To: Message-ID: <20020820023033.14499.qmail@web9704.mail.yahoo.com> When something like that happens, it occurs to me that qmail "thinks" it's more than one host. This is also called virtual hosting. Check /PATH/TO/qmail/control/rcpthosts and see if you have more than one entry. Also see if you inadvertently wildcarded an entry. For example, if you have .heaven.af.mil then you've stated that you are receiving mail for any email message in that domain (such as somebody at hell.heaven.af.mil; assuming the account "somebody" is on your machine). If rcpthosts doesn't exist, then the setting defaults to "me". One other thing: There are 2 separate logs on qmail, one for smtp and the other for local delivery. With my configuration of qmail I have my logs located in /PATH/TO/qmail/supervise There are 2 directories, qmail-send qmail-smtpd I'm not sure if you're aware of mailman's logs, they are usually located in /PATH/TO/mailman/logs === Al --- Phil Grimpo wrote: > I've been checking the qmail logs and it looks like it doesn't even try > to send messages off the server, I just see sending to local. Any idea > what other logs I could check? > > -Phil Grimpo > > > > -----Original Message----- > From: Al Sparks [mailto:data345 at yahoo.com] > Sent: Sunday, August 18, 2002 12:35 PM > To: Phil Grimpo > Subject: RE: [Mailman-Users] Mailman on QMail with Closed Relay > > Actually, I was going by the documentation in "Life with qmail" by Dave > Sill. His way to configures tcpserver a little different. I hadn't > realized there was a more generic file structure for tcpserver in use. > To ensure that tcpserver is accessing the right database file, do a > ps -auxw | egrep tcpserver > and see what the -x switch is set to. If it's > tcserver -x /etc/tcprules.d/qmail-smtp.cdb > and that's the name of your database file, then you're doing the right > thing. I would also do a > man tcprules > to make sure the formatting and syntax of your tcprules file is correct. > > Lastly (or firstly), check the qmail logs and see if there's any errors > in sending out messages. > === Al > > --- Phil Grimpo wrote: > > > > I do not have a tcp.smtp file, but do have /etc/tcprules.d/ and did > put > > the entry in qmail-smtp and rebuilt the database. Do I need to have > > tcp.smtp also? > > > > -Grimps > > > > > > > > -----Original Message----- > > From: Al Sparks [mailto:data345 at yahoo.com] > > Sent: Saturday, August 17, 2002 5:25 PM > > To: Phil Grimpo > > Subject: Re: [Mailman-Users] Mailman on QMail with Closed Relay > > > > > > --- Phil Grimpo wrote: > > > I recently closed my open relay in QMail and now Mailman will only > > send > > > to users who have mailboxes on the local machine. It will not send > > > 'off-site'. I have the IP of the local machine in the qmail-smtp > > file. > > > Any ideas on what might have gotten messed up that this no longer > > works? > > > > > > -Grimps > > > > > > > Just to confirm, you have placed the entry in > > /etc/tcp.smtp > > and then ran > > # tcprules /etc/tcp.smtp.cdb /etc/tcp.smtp.tmp < /etc/tcp.smtp > > to update the database file? > > > > Also, it's "qmail" not "QMail" > > === Al > > > > __________________________________________________ > > Do You Yahoo!? > > HotJobs - Search Thousands of New Jobs > > http://www.hotjobs.com > > > __________________________________________________ > Do You Yahoo!? > HotJobs - Search Thousands of New Jobs > http://www.hotjobs.com > > ------------------------------------------------------ > Mailman-Users mailing list > Mailman-Users at python.org > 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/ __________________________________________________ Do You Yahoo!? HotJobs - Search Thousands of New Jobs http://www.hotjobs.com From data345 at yahoo.com Tue Aug 20 04:54:29 2002 From: data345 at yahoo.com (Al Sparks) Date: Mon, 19 Aug 2002 19:54:29 -0700 (PDT) Subject: [Mailman-Users] Mailman on QMail with Closed Relay In-Reply-To: <20020820023033.14499.qmail@web9704.mail.yahoo.com> Message-ID: <20020820025429.53130.qmail@web9702.mail.yahoo.com> Another file to check is /PATH/TO/qmail/control/locals The "rcpthosts" file affects your smtpd process, and "locals" affects qmail-send. === Al --- Al Sparks wrote: > When something like that happens, it occurs to me that qmail "thinks" > it's more than one host. This is also called virtual hosting. > > Check > /PATH/TO/qmail/control/rcpthosts > and see if you have more than one entry. Also see if you inadvertently > wildcarded an entry. For example, if you have > .heaven.af.mil > then you've stated that you are receiving mail for any email message > in that domain (such as somebody at hell.heaven.af.mil; assuming the account > "somebody" is on your machine). > > If rcpthosts doesn't exist, then the setting defaults to "me". > > One other thing: There are 2 separate logs on qmail, one for smtp > and the other for local delivery. With my configuration of qmail > I have my logs located in > /PATH/TO/qmail/supervise > There are 2 directories, > qmail-send qmail-smtpd > > I'm not sure if you're aware of mailman's logs, they are usually located > in > /PATH/TO/mailman/logs > > === Al > > --- Phil Grimpo wrote: > > I've been checking the qmail logs and it looks like it doesn't even try > > to send messages off the server, I just see sending to local. Any idea > > what other logs I could check? > > > > -Phil Grimpo > > > > > > > > -----Original Message----- > > From: Al Sparks [mailto:data345 at yahoo.com] > > Sent: Sunday, August 18, 2002 12:35 PM > > To: Phil Grimpo > > Subject: RE: [Mailman-Users] Mailman on QMail with Closed Relay > > > > Actually, I was going by the documentation in "Life with qmail" by Dave > > Sill. His way to configures tcpserver a little different. I hadn't > > realized there was a more generic file structure for tcpserver in use. > > To ensure that tcpserver is accessing the right database file, do a > > ps -auxw | egrep tcpserver > > and see what the -x switch is set to. If it's > > tcserver -x /etc/tcprules.d/qmail-smtp.cdb > > and that's the name of your database file, then you're doing the right > > thing. I would also do a > > man tcprules > > to make sure the formatting and syntax of your tcprules file is correct. > > > > Lastly (or firstly), check the qmail logs and see if there's any errors > > in sending out messages. > > === Al > > > > --- Phil Grimpo wrote: > > > > > > I do not have a tcp.smtp file, but do have /etc/tcprules.d/ and did > > put > > > the entry in qmail-smtp and rebuilt the database. Do I need to have > > > tcp.smtp also? > > > > > > -Grimps > > > > > > > > > > > > -----Original Message----- > > > From: Al Sparks [mailto:data345 at yahoo.com] > > > Sent: Saturday, August 17, 2002 5:25 PM > > > To: Phil Grimpo > > > Subject: Re: [Mailman-Users] Mailman on QMail with Closed Relay > > > > > > > > > --- Phil Grimpo wrote: > > > > I recently closed my open relay in QMail and now Mailman will only > > > send > > > > to users who have mailboxes on the local machine. It will not send > > > > 'off-site'. I have the IP of the local machine in the qmail-smtp > > > file. > > > > Any ideas on what might have gotten messed up that this no longer > > > works? > > > > > > > > -Grimps > > > > > > > > > > Just to confirm, you have placed the entry in > > > /etc/tcp.smtp > > > and then ran > > > # tcprules /etc/tcp.smtp.cdb /etc/tcp.smtp.tmp < /etc/tcp.smtp > > > to update the database file? > > > > > > Also, it's "qmail" not "QMail" > > > === Al > > > > > > __________________________________________________ > > > Do You Yahoo!? > > > HotJobs - Search Thousands of New Jobs > > > http://www.hotjobs.com > > > > > > __________________________________________________ > > Do You Yahoo!? > > HotJobs - Search Thousands of New Jobs > > http://www.hotjobs.com > > > > ------------------------------------------------------ > > Mailman-Users mailing list > > Mailman-Users at python.org > > 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/ > > > __________________________________________________ > Do You Yahoo!? > HotJobs - Search Thousands of New Jobs > http://www.hotjobs.com > > ------------------------------------------------------ > Mailman-Users mailing list > Mailman-Users at python.org > 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/ __________________________________________________ Do You Yahoo!? HotJobs - Search Thousands of New Jobs http://www.hotjobs.com From bob at nleaudio.com Tue Aug 20 05:37:15 2002 From: bob at nleaudio.com (Bob Puff@NLE) Date: Mon, 19 Aug 2002 23:37:15 -0400 Subject: [Mailman-Users] Postfix patches In-Reply-To: <20020820025501.20374.52251.Mailman@mail.python.org> References: <20020820025501.20374.52251.Mailman@mail.python.org> Message-ID: <20020820033715.M55073@nleaudio.com> Just wanted to let everyone know that Wietse just released a new snapshot version of Postfix which addresses the "Mail forwarding Loop" problems that I've reported previously. This fixes the problem of bad MS mail servers re-injecting delivered mail into mailing lists, and causing bounce messages to go to the original posters. Bob From polethiopia at yahoo.com Tue Aug 20 09:43:17 2002 From: polethiopia at yahoo.com (Political Ethiopia) Date: Tue, 20 Aug 2002 00:43:17 -0700 (PDT) Subject: [Mailman-Users] Bug problem ( Version 2.0.11 ) In-Reply-To: <3D59A9F4.8030601@cips.nokia.com> Message-ID: <20020820074317.89509.qmail@web11707.mail.yahoo.com> Dear Sir, Thank you for your prompt reply. I tried the way you told me. But I can't resolve the problem. My today's problem says: " Bug in Mailman version 2.0.11 We're sorry, we hit a bug! Please inform the webmaster for this site of this problem. Printing of traceback and other system information has been explicitly inhibited, but the webmaster can find this information in the Mailman error logs. " please revise the bug message and help me in resolving the problem. Thank you in advance, Yours, Dawit Yohanes List owner of Pol.Ethiopia --- Gary Verhulp wrote: > I have seen this error as well. > . > > First of all, go read your mailman error logs. It > tells you to do that in > the error message. If you do that you will probably > not need to read the > rest of my reply:) They are located (at least on my > sys )in > /var/mailman/logs/error > Here's what happened in my case: > > I got errno 13 Permission Denied. on the db file for > the alias i was > trying to submit > an admin request for. > > What did I do? > > I changed the perms! > Wham! > It's all good. > This may be a temp/kludge fix, but we shall see. > > And let me just say that Mailman is a fine fine > Maillist manager! > As soon as they put a searchable archive ability it > will be the best. > > > Political Ethiopia wrote: > > >Dear Sirs, > > > >I have been running pol.ethiopia mail list for some > >years now. These days however, I have been blocked > >acess by the following message: > > > >"Bug in Mailman version 2.0.8 > > > > We're sorry, we hit a bug! > > > > Please inform the webmaster for this site of this > > problem. Printing of traceback and other system > > information has been explicitly inhibitd, but the > > webmaster can find this information in the Mialman > > > errir logs. " > > > >Can you please look into this matter and help me > >resolve the problem so that thew list can function? > > > >Thanking you in advance, > > > >Yours, > > > >Dawit Yohannes > >List owner of Pol.Ethiopia. > > > > > >__________________________________________________ > >Do You Yahoo!? > >HotJobs - Search Thousands of New Jobs > >http://www.hotjobs.com > > > >------------------------------------------------------ > >Mailman-Users mailing list > >Mailman-Users at python.org > >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/ > > > > > > > > > > __________________________________________________ Do You Yahoo!? HotJobs - Search Thousands of New Jobs http://www.hotjobs.com From ahkitj at jnawk.net.nz Tue Aug 20 10:20:32 2002 From: ahkitj at jnawk.net.nz (Jonathan Ah Kit) Date: Tue, 20 Aug 2002 20:20:32 +1200 (NZST) Subject: [Mailman-Users] duplicate admin reminders message Message-ID: Hi all, I've searched through the mailing list and FAQ and I'm not sure how to approach this issue. I'm running the Debian package 2.0.12-1, IIRC, with Exim. Each morning I get my admin reminders at 0530 local time, as I've told cron. However, at around 0628ish for the last two mornings (that was when I gave myself a pile of admin requests) I've been getting a duplicate one. I've tried my usual strategies for figuring this out. The list only has one admin address, and that address only redirects to one address. ID numbers in the headers are different, as well as the date header. So, to cut a long story short, I strongly suspect cron, but I can't see anything that would execute at 0628. The requisite Mailman lines of my cron are... > MAILTO="" > 30 5 * * * python -S /usr/lib/mailman/cron/senddigests ; python -S /usr/lib/mailman/cron/checkdbs ; python -S /usr/lib/mailman/cron/nightly_gzip -v >> /home/ahkitj/mailmanlog.log > MAILTO="" > 0,5,10,15,20,25,30,35,40,45,50,55 * * * * python -S /usr/lib/mailman/cron/qrunner > MAILTO="" > 30 5 1 * * python -S /usr/lib/mailman/cron/mailpasswds Is this likely to be where my problem is? Or is it Exim? Or does someone want to see a pair of the e-mails I'm getting? I guess it's not a big problem, as I only have one serious 'production' list. But it is piquing my curiousity. Thanks, regards, Jonathan. -- Jonathan Ah Kit - Lower Hutt - New Zealand jonathan at ah-kit.dropbear.id.au - http://www.ah-kit.dropbear.id.au/ ahkitj at paradise.net.nz - ICQ#9747234 - http://www.electric.gen.nz/ Away message: Looking for adhesive tape, not Alibrandi. From cprg at cprg.net Tue Aug 20 01:54:32 2002 From: cprg at cprg.net (MISTER Support Desk) Date: Mon, 19 Aug 2002 19:54:32 -0400 Subject: [Mailman-Users] A long URL - 2 lines - second line is not clickable. References: <9C2F3AD0B86DC94B987EC4FB97C7A32405EEAC7C@XCH-SW-08.sw.nos.boeing.com> Message-ID: <002c01c247db$c5825c60$bcc92c44@unknown> So, using html email this problem is overcome by hiding the overly long url in the source code; but, then, there are those who complain about html email, or, use inferior mail readers that don't have a clue how to read html. This url is too long: click here! SD ----- Original Message ----- From: Wang, Mary Y To: 'Mailman-Users at python.org' Sent: Monday, August 19, 2002 12:22 PM Subject: [Mailman-Users] A long URL - 2 lines - second line is not clickable. Hi, I am using Mailman 2.0.6-1 and Sendmail-8.11.6-3. My users are complaining about the line wrap problem when send mailing mail to the mail list with a long URL. It seems line wraps text lines that are longer than 80 characters with no white-space. If you include a long URL in a email message it usually gets split onto separate lines and the typical email reader within BCA (exchange) marks the first part of the link as clickable when usually it isn't. People have to paste the whole link back together manually in a web browser input dialog to get it to work. First, I thought it maybe a Sendmail problem. So I tried send a mail via Sendmail with a long URL and it appears to be fine. The long URL did split into two lines, and the second line is still highlighted as a href link, so there was no problem. By clicking the link, the browser would bring up the correct information. However, sending an email to the mail list is a different problem. For example, http://labtest.ca.boeing.com/~psim/NewRtPlatform/test_plate_form_notes.07_18 _02.html will show up with 2 lines and the second line would be ml and wouldn't be highlighted as part of the URL that is clickable. Any clue? Thanks for any help. We had this problem for about a year. I finally got a chance to look into it now. Mary (562) 797-1545 ------------------------------------------------------ Mailman-Users mailing list Mailman-Users at python.org 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/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/mailman-users/attachments/20020819/53d22b15/attachment.html From detlef.neubauer at charite.de Tue Aug 20 14:50:35 2002 From: detlef.neubauer at charite.de (Detlef Neubauer) Date: 20 Aug 2002 14:50:35 +0200 Subject: [Mailman-Users] A long URL - 2 lines - second line is not clickable. In-Reply-To: "Wang, Mary Y"'s message of "Mon, 19 Aug 2002 09:22:40 -0700" References: <9C2F3AD0B86DC94B987EC4FB97C7A32405EEAC7C@XCH-SW-08.sw.nos.boeing.com> Message-ID: "Wang, Mary Y" writes: > For example, > http://labtest.ca.boeing.com/~psim/NewRtPlatform/test_plate_form_notes.07_18 > _02.html will show up with 2 lines and the second line would be ml and > wouldn't be highlighted as part of the URL that is clickable. > > Any clue? It's not a mailman or MTA problem. The Problem is located in the MUA. With my MUA i can send long lines. http://labtest.ca.boeing.com/~psim/NewRtPlatform/test_plate_form_notes.07_18_02.html Please send no Cc. I answer only via the list. Detlef Neubauer -- .oO GnuPG Key auf http://www.keyserver.net/ Oo. From rhorer at swbell.net Tue Aug 20 15:16:00 2002 From: rhorer at swbell.net (Kyle Rhorer) Date: Tue, 20 Aug 2002 08:16:00 -0500 Subject: [Mailman-Users] creating list takes forever In-Reply-To: <1029368431.3d5aea6f2eab1@correoweb.iest.edu.mx> References: <1029368431.3d5aea6f2eab1@correoweb.iest.edu.mx> Message-ID: <200208142012.07888.rhorer@swbell.net> On Wednesday 14 August 2002 18:40, Luis Julian Dominguez Perez wrote: > Recently when trying to create a new list after asking me for a > password the programs hangs [...] > I have Mailman version 2.0.11 and redhat 7.2 with several 7.3 > patches. You don't mention which MTA you're using. With Postfix, if aliases.db doesn't exist then you'll get the same symptoms (for example on the first list of a new install). "su - mailman" and run "/usr/sbin/postalias aliases" and your problem will likely disappear. If aliases.db does already exist, make sure the ownership and permissions are correct. I don't know if a similar fix would work for sendmail, and I know nothing about qmail or exim. Espero que le ayude, Kyle -- A dog knows its master. A cat knows it's master. From mailman-users at imc.nl Tue Aug 20 15:56:13 2002 From: mailman-users at imc.nl (Roelf Schreurs) Date: Tue, 20 Aug 2002 15:56:13 +0200 Subject: [Mailman-Users] long/short option in search refine Message-ID: <000901c24851$58842000$c764a8c0@ads.intra.imc> Hi I changed my mailman/htdig and removed the option of "Format" with long/short. That working fine, but when I search and get the replies, I get the option to refine the search and the "Format" option is back. I can't find where to delete this. Anybody that can clear this up please? Thanks From deanna at freeshell.org Tue Aug 20 16:56:04 2002 From: deanna at freeshell.org (Deanna Phillips) Date: Tue, 20 Aug 2002 14:56:04 +0000 Subject: [Mailman-Users] qrunner and list_members errors. Message-ID: Hi, We've been getting a handful of qrunner errors a day, that look something like this: Traceback (innermost last): File "/usr/local/mailman/cron/qrunner", line 85, in ? from Mailman import MailList ValueError: bad marshal data or Traceback (innermost last): File "/usr/local/mailman/cron/qrunner", line 85, in ? from Mailman import MailList File "/usr/local/mailman/Mailman/MailList.py", line 44, in ? from Mailman.HTMLFormatter import HTMLFormatter ValueError: bad marshal data I tried rebuilding all of the *.pyc files on our 2.0.8 installation, then tried upgrading to 2.0.13 and the problem continues. It seems to die in different places (importing MailList or HTMLFormatter). I'm not sure whether or not this is a serious error, since I don't see any evidence of mail not getting delivered. However, I have a shell script that I run nightly to list all members of all of our lists (around 500 lists and 25,000 subscribers) and concatenate them into a file. All the script asks from mailman is a list_members on each list. This has been failing with errors like this: Traceback (innermost last): File "../bin/list_members", line 59, in ? from Mailman import MailList File "/usr/local/mailman/Mailman/MailList.py", line 38, in ? from Mailman import LockFile ValueError: bad marshal data and Traceback (innermost last): File "../bin/list_members", line 59, in ? from Mailman import MailList File "/usr/local/mailman/Mailman/MailList.py", line 41, in ? from Mailman.ListAdmin import ListAdmin File "/usr/local/mailman/Mailman/ListAdmin.py", line 33, in ? from Mailman import Message ValueError: bad marshal data and then finally: Traceback (innermost last): File "../bin/list_members", line 59, in ? from Mailman import MailList MemoryError This is a Debian system running Mailman 2.0.13 with Python 2.2.1, 900 MHz Athlon processor, 256 MB of RAM and 1 GB of swap, if that matters. Any help would be appreciated. Thanks, Deanna From R.Barrett at ftel.co.uk Tue Aug 20 17:47:31 2002 From: R.Barrett at ftel.co.uk (Richard Barrett) Date: Tue, 20 Aug 2002 16:47:31 +0100 Subject: [Mailman-Users] A long URL - 2 lines - second line is not clickable. In-Reply-To: <9C2F3AD0B86DC94B987EC4FB97C7A32405EEAC7C@XCH-SW-08.sw.nos. boeing.com> Message-ID: <5.1.0.14.2.20020820155249.02d10e40@pop.ftel.co.uk> At 09:22 19/08/2002 -0700, Wang, Mary Y wrote: >Hi, >I am using Mailman 2.0.6-1 and Sendmail-8.11.6-3. My users are complaining >about the line wrap problem when send mailing mail to the mail list with a >long URL. It seems line wraps text lines that are longer than 80 characters >with no white-space. If you include a long URL in a email message it >usually gets split onto separate lines and the typical email reader within >BCA (exchange) marks the first part of the link as clickable when usually it >isn't. People have to paste the whole link back together manually in a web >browser input dialog to get it to work. > >First, I thought it maybe a Sendmail problem. So I tried send a mail via >Sendmail with a long URL and it appears to be fine. The long URL did split >into two lines, and the second line is still highlighted as a href link, so >there was no problem. By clicking the link, the browser would bring up the >correct information. > >However, sending an email to the mail list is a different problem. > >For example, >http://labtest.ca.boeing.com/~psim/NewRtPlatform/test_plate_form_notes.07_18 >_02.html will show up with 2 lines and the second line would be ml and >wouldn't be highlighted as part of the URL that is clickable. > >Any clue? > >Thanks for any help. We had this problem for about a year. I finally got a >chance to look into it now. > >Mary >(562) 797-1545 I suspect at the back of this is what RFC2822 says and how some Mail Agent code/configuration is interpreting the RFC: 2.1.1. Line Length Limits There are two limits that this standard places on the number of characters in a line. Each line of characters MUST be no more than 998 characters, and SHOULD be no more than 78 characters, excluding the CRLF. ... The more conservative 78 character recommendation is to accommodate the many implementations of user interfaces that display these messages which may truncate, or disastrously wrap, the display of more than 78 characters per line, in spite of the fact that such implementations are non-conformant to the intent of this specification (and that of [RFC2821] if they actually cause information to be lost). Again, even though this limitation is put on messages, it is encumbant upon implementations which display messages ... Mailman doesn't appear to fool with the line breaks in email sent to it for redistribution. Its internal archiver also appears to behave sensibly when processing long line into HTML archives files by only word wrapping long lines on white space to a reasonable length so that the
 tagged 
message text displays sensibly with a web browser. So your long URL would 
survive intact transit through and archiving by MM. It certainly does on my 
MM system.

Sendmail can be configured to limit line length so some MTA through which 
your mail is passing could be limiting line length though usually it will 
be to the 990 character limit.

The MUA from whence the long URL originated is possible culprit.

The fact is that the RFC admits the possibility of line length manipulation 
by Mail Agents although it could be regarded as anti-social to use the 78 
char limit. The only way to ensure line break changes do not corrupt your 
data is to base64 encode it; not the most convenient solution, I grant you.





From R.Barrett at ftel.co.uk  Tue Aug 20 18:12:31 2002
From: R.Barrett at ftel.co.uk (Richard Barrett)
Date: Tue, 20 Aug 2002 17:12:31 +0100
Subject: [Mailman-Users] long/short option in search refine
In-Reply-To: <000901c24851$58842000$c764a8c0@ads.intra.imc>
Message-ID: <5.1.0.14.2.20020820164805.00acec60@pop.ftel.co.uk>

At 15:56 20/08/2002 +0200, Roelf Schreurs wrote:
>Hi
>
>I changed my mailman/htdig and removed the option of  "Format"  with
>long/short. That working fine, but when I search and get the replies, I get
>the option to refine the search and the "Format" option is back.
>I can't find where to delete this.
>
>Anybody that can clear this up please?
>
>Thanks

On MM 2.0.13 you will want to (carefully) change the following string 
variables in $prefix/Mailman/Archiver/HyperArch.py: TOC_htsearch_template 
and htdig_conf_template.

TOC_htsearch_template is used whenever the per list TOC page 
($prefix/archives/private//index.html) is rebuilt. This happens 
regularly so do not expect to just edit the index.html file for a list and 
have the changes stick.

htdig_conf_template is used to construct the per list htdig conf files at 
$prefix/archives/private//htdig/.conf. Once constructed 
these files remain relatively static unless you run 
$prefix/bin/blow_away_htdig.

On MM 2.1b3 things are, arguably, a little easier.

The template used to construct the per list TOC page is a separate text 
file in $prefix/templates//TOC_htsearch.html. Well its in 
$prefix/templates/en/TOC_htsearch.html and non-English speaking admins are 
free to translate the contents of the English file to their mother tongue 
and send it to me for incorporation into future versions of the 2.1 patch.

htdig_conf_template is still in $prefix/Mailman/Archiver/HyperArch.py

Changing TOC_htsearch_template and htdig_conf_template produces a site wide 
change which affects all new lists.

Changing TOC_htsearch_template will affect an existing list the next time 
that $prefix/cron/nightly_htdig has to do something for the list (the 
list's TOC page is rebuilt at that time) or the list's TOC page is rebuilt 
for some other reason like the monthly archive rollover.

Changing htdig_conf_template will not affect an existing list unless and 
until $prefix/bin/blow_away_htdig is run on that list.






From michael_clifford at hotmail.com  Tue Aug 20 18:13:57 2002
From: michael_clifford at hotmail.com (Michael Clifford)
Date: Tue, 20 Aug 2002 17:13:57 +0100
Subject: [Mailman-Users] editing/deleting archives etc via gui instead of scripts
Message-ID: 

An HTML attachment was scrubbed...
URL: http://mail.python.org/pipermail/mailman-users/attachments/20020820/89d3bf27/attachment.htm 

From maillist at blitzen.net  Tue Aug 20 19:07:19 2002
From: maillist at blitzen.net (Steve Lee)
Date: Tue, 20 Aug 2002 10:07:19 -0700 (PDT)
Subject: [Mailman-Users] footer, recipient email
Message-ID: 

Hello,

I've been looking all over the net, 
the list archives about trying to make
a footer in the email say somthing like 
this.

http://www.foo.com/cgi-bin/unsub.cgi?e=email at address.com


I've looked at the footer section in the "Regular-member"
menu of the admin section, tried to add that above
but i need to dynamically put the email at address.com of
the recipient of the email.   

looking at it looks like the you can use %(attribute)s
i tried  %(email)s   but no luck.

any help will be helpful..

Thanks again.





From R.Barrett at ftel.co.uk  Tue Aug 20 19:42:26 2002
From: R.Barrett at ftel.co.uk (Richard Barrett)
Date: Tue, 20 Aug 2002 18:42:26 +0100
Subject: [Mailman-Users] footer, recipient email
In-Reply-To: 
Message-ID: <5.1.0.14.2.20020820183728.0459c6c0@pop.ftel.co.uk>

At 10:07 20/08/2002 -0700, Steve Lee wrote:
>Hello,
>
>I've been looking all over the net,
>the list archives about trying to make
>a footer in the email say somthing like
>this.
>
>http://www.foo.com/cgi-bin/unsub.cgi?e=email at address.com
>
>
>I've looked at the footer section in the "Regular-member"
>menu of the admin section, tried to add that above
>but i need to dynamically put the email at address.com of
>the recipient of the email.
>
>looking at it looks like the you can use %(attribute)s
>i tried  %(email)s   but no luck.
>
>any help will be helpful..
>
>Thanks again.

Mailman chunks mail being redistributed to a list's members, sending the 
same body to multiple recipients with a single SMTP transaction, for 
efficiency reasons. This isn't amenable to per recipient customization of 
the message as you appear to want.

Unless someone knows better (and tells us how) I think you need to find an 
alternative solution to your problem.




From maillist at blitzen.net  Tue Aug 20 20:48:42 2002
From: maillist at blitzen.net (Steve Lee)
Date: Tue, 20 Aug 2002 11:48:42 -0700 (PDT)
Subject: [Mailman-Users] footer, recipient email
In-Reply-To: <5.1.0.14.2.20020820183728.0459c6c0@pop.ftel.co.uk>
Message-ID: 

thanks for the reply.

so there is no way to do this. damn.



On Tue, 20 Aug 2002, Richard Barrett wrote:

> At 10:07 20/08/2002 -0700, Steve Lee wrote:
> >Hello,
> >
> >I've been looking all over the net,
> >the list archives about trying to make
> >a footer in the email say somthing like
> >this.
> >
> >http://www.foo.com/cgi-bin/unsub.cgi?e=email at address.com
> >
> >
> >I've looked at the footer section in the "Regular-member"
> >menu of the admin section, tried to add that above
> >but i need to dynamically put the email at address.com of
> >the recipient of the email.
> >
> >looking at it looks like the you can use %(attribute)s
> >i tried  %(email)s   but no luck.
> >
> >any help will be helpful..
> >
> >Thanks again.
> 
> Mailman chunks mail being redistributed to a list's members, sending the 
> same body to multiple recipients with a single SMTP transaction, for 
> efficiency reasons. This isn't amenable to per recipient customization of 
> the message as you appear to want.
> 
> Unless someone knows better (and tells us how) I think you need to find an 
> alternative solution to your problem.
> 
> 
> ------------------------------------------------------
> Mailman-Users mailing list
> Mailman-Users at python.org
> 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/
> 




From vanhorn at whidbey.com  Tue Aug 20 18:23:16 2002
From: vanhorn at whidbey.com (G. Armour Van Horn)
Date: Tue, 20 Aug 2002 09:23:16 -0700
Subject: [Mailman-Users] A long URL - 2 lines - second line is notclickable.
References: <5.1.0.14.2.20020820155249.02d10e40@pop.ftel.co.uk>
Message-ID: <3D626CF4.2D76EFE4@whidbey.com>

What happens when you send a really long link through the system? In this case, I
suspect that the line is broken before Mailman ever sees it - it would be broken
if you sent it to a standard mail client just the same. But what you are sending
is a text URL, not a link. The link the reipient sees (that isn't working) is
created by the recipient mail client based on starting with http: and ending with
whitespace.

Here is your original URL, I've put it back on one line:
http://labtest.ca.boeing.com/~psim/NewRtPlatform/test_plate_form_notes.07_18_02.html

Now, here it is again as a link:
http://labtest.ca.boeing.com/~psim/NewRtPlatform/test_plate_form_notes.07_18_02.html

Unfortunately, that's behind a firewall and nobody outside The Kite Factory will
know if it worked again. Here is one that should be long enough to break
anything, based on all the URL encoding I used. First as text:
http://www.domainvanhorn.com/dropbox/copy%2520of%2520van%2527s%2520self%2520portrait%2520in%2520the%2520bathroom.jpg

And now as a link:
http://www.domainvanhorn.com/dropbox/copy%2520of%2520van%2527s%2520self%2520portrait%2520in%2520the%2520bathroom.jpg

I won't know until this goes through the system, but I suspect that all four will
be broken onto two lines, but that the linked versions will still work. Maybe
we'll all learn somethign at that point.

It's a universal problem. As the number of documents on a server grows, I think
we're going to have to abandon the idea of having humans read URLs for taxonomy -
it leads to URLs that break in too many places.

Van

Richard Barrett wrote:

> At 09:22 19/08/2002 -0700, Wang, Mary Y wrote:
> >Hi,
> >I am using Mailman 2.0.6-1 and Sendmail-8.11.6-3.  My users are complaining
> >about the line wrap problem when send mailing mail to the mail list with a
> >long URL.  It seems line wraps text lines that are longer than 80 characters
> >with no white-space.  If you include a long URL in a email message it
> >usually gets split onto separate lines and the typical email reader within
> >BCA (exchange) marks the first part of the link as clickable when usually it
> >isn't.  People have to paste the whole link back together manually in a web
> >browser input dialog to get it to work.
> >
> >First, I thought it maybe a Sendmail problem. So I tried send a mail via
> >Sendmail with a long URL and it appears to be fine.  The long URL did split
> >into two lines, and the second line is still highlighted as a href link, so
> >there was no problem.  By clicking the link, the browser would bring up the
> >correct information.
> >
> >However, sending an email to the mail list is a different problem.
> >
> >For example,
> >http://labtest.ca.boeing.com/~psim/NewRtPlatform/test_plate_form_notes.07_18
> >_02.html will show up with 2 lines and the second line would be ml and
> >wouldn't be highlighted as part of the URL that is clickable.
> >
> >Any clue?
> >
> >Thanks for any help.  We had this problem for about a year.  I finally got a
> >chance to look into it now.
> >
> >Mary
> >(562) 797-1545
>
> I suspect at the back of this is what RFC2822 says and how some Mail Agent
> code/configuration is interpreting the RFC:
>
> 
> 2.1.1. Line Length Limits
>
>     There are two limits that this standard places on the number of
>     characters in a line. Each line of characters MUST be no more than
>     998 characters, and SHOULD be no more than 78 characters, excluding
>     the CRLF.
>
>     ...
>
>     The more conservative 78 character recommendation is to accommodate
>     the many implementations of user interfaces that display these
>     messages which may truncate, or disastrously wrap, the display of
>     more than 78 characters per line, in spite of the fact that such
>     implementations are non-conformant to the intent of this
>     specification (and that of [RFC2821] if they actually cause
>     information to be lost). Again, even though this limitation is put on
>     messages, it is encumbant upon implementations which display messages
>     ...
>
> 
>
> Mailman doesn't appear to fool with the line breaks in email sent to it for
> redistribution. Its internal archiver also appears to behave sensibly when
> processing long line into HTML archives files by only word wrapping long
> lines on white space to a reasonable length so that the 
 tagged
> message text displays sensibly with a web browser. So your long URL would
> survive intact transit through and archiving by MM. It certainly does on my
> MM system.
>
> Sendmail can be configured to limit line length so some MTA through which
> your mail is passing could be limiting line length though usually it will
> be to the 990 character limit.
>
> The MUA from whence the long URL originated is possible culprit.
>
> The fact is that the RFC admits the possibility of line length manipulation
> by Mail Agents although it could be regarded as anti-social to use the 78
> char limit. The only way to ensure line break changes do not corrupt your
> data is to base64 encode it; not the most convenient solution, I grant you.
>
> ------------------------------------------------------
> Mailman-Users mailing list
> Mailman-Users at python.org
> 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/

--
----------------------------------------------------------
Sign up now for Quotes of the Day, a handful of quotations
on a theme delivered every morning.
Enlightenment! Daily, for free!
mailto:twisted at whidbey.com?subject=Subscribe_QOTD

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

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.python.org/pipermail/mailman-users/attachments/20020820/246cbbf8/attachment.html 

From greg at gregwestin.com  Wed Aug 21 03:40:42 2002
From: greg at gregwestin.com (Greg Westin)
Date: Tue, 20 Aug 2002 21:40:42 -0400 (EDT)
Subject: [Mailman-Users] A long URL - 2 lines - second line is notclickable.
In-Reply-To: <3D626CF4.2D76EFE4@whidbey.com>
References: <5.1.0.14.2.20020820155249.02d10e40@pop.ftel.co.uk>
        <3D626CF4.2D76EFE4@whidbey.com>
Message-ID: <55380.140.247.133.60.1029894042.squirrel@webmail.gregwestin.com>

All four of those links work, and none break into two lines.


> What happens when you send a really long link through the system? In
> this case, I suspect that the line is broken before Mailman ever sees it
> - it would be broken if you sent it to a standard mail client just the
> same. But what you are sending is a text URL, not a link. The link the
> reipient sees (that isn't working) is created by the recipient mail
> client based on starting with http: and ending with whitespace.
>
> Here is your original URL, I've put it back on one line:
> http://labtest.ca.boeing.com/~psim/NewRtPlatform/test_plate_form_notes.07_18_02.html
>
> Now, here it is again as a link:
> http://labtest.ca.boeing.com/~psim/NewRtPlatform/test_plate_form_notes.07_18_02.html
>
> Unfortunately, that's behind a firewall and nobody outside The Kite
> Factory will know if it worked again. Here is one that should be long
> enough to break anything, based on all the URL encoding I used. First as
> text:
> http://www.domainvanhorn.com/dropbox/copy%2520of%2520van%2527s%2520self%2520portrait%2520in%2520the%2520bathroom.jpg
>
> And now as a link:
> http://www.domainvanhorn.com/dropbox/copy%2520of%2520van%2527s%2520self%2520portrait%2520in%2520the%2520bathroom.jpg
>
> I won't know until this goes through the system, but I suspect that all
> four will be broken onto two lines, but that the linked versions will
> still work. Maybe we'll all learn somethign at that point.
>
> It's a universal problem. As the number of documents on a server grows,
> I think we're going to have to abandon the idea of having humans read
> URLs for taxonomy - it leads to URLs that break in too many places.
>
> Van
>
> Richard Barrett wrote:
>
>> At 09:22 19/08/2002 -0700, Wang, Mary Y wrote:
>> >Hi,
>> >I am using Mailman 2.0.6-1 and Sendmail-8.11.6-3.  My users are
>> complaining about the line wrap problem when send mailing mail to the
>> mail list with a long URL.  It seems line wraps text lines that are
>> longer than 80 characters with no white-space.  If you include a long
>> URL in a email message it usually gets split onto separate lines and
>> the typical email reader within BCA (exchange) marks the first part
>> of the link as clickable when usually it isn't.  People have to paste
>> the whole link back together manually in a web browser input dialog
>> to get it to work.
>> >
>> >First, I thought it maybe a Sendmail problem. So I tried send a mail
>> via Sendmail with a long URL and it appears to be fine.  The long URL
>> did split into two lines, and the second line is still highlighted as
>> a href link, so there was no problem.  By clicking the link, the
>> browser would bring up the correct information.
>> >
>> >However, sending an email to the mail list is a different problem.
>> >
>> >For example,
>> >http://labtest.ca.boeing.com/~psim/NewRtPlatform/test_plate_form_notes.07_18
>> _02.html will show up with 2 lines and the second line would be ml
>> and wouldn't be highlighted as part of the URL that is clickable.
>> >
>> >Any clue?
>> >
>> >Thanks for any help.  We had this problem for about a year.  I
>> finally got a chance to look into it now.
>> >
>> >Mary
>> >(562) 797-1545
>>
>> I suspect at the back of this is what RFC2822 says and how some Mail
>> Agent code/configuration is interpreting the RFC:
>>
>> 
>> 2.1.1. Line Length Limits
>>
>>     There are two limits that this standard places on the number of
>> characters in a line. Each line of characters MUST be no more than
>> 998 characters, and SHOULD be no more than 78 characters,
>> excluding the CRLF.
>>
>>     ...
>>
>>     The more conservative 78 character recommendation is to
>> accommodate the many implementations of user interfaces that
>> display these messages which may truncate, or disastrously wrap,
>> the display of more than 78 characters per line, in spite of the
>> fact that such implementations are non-conformant to the intent of
>> this
>>     specification (and that of [RFC2821] if they actually cause
>>     information to be lost). Again, even though this limitation is put
>> on messages, it is encumbant upon implementations which display
>> messages ...
>>
>> 
>>
>> Mailman doesn't appear to fool with the line breaks in email sent to
>> it for redistribution. Its internal archiver also appears to behave
>> sensibly when processing long line into HTML archives files by only
>> word wrapping long lines on white space to a reasonable length so that
>> the 
 tagged message text displays sensibly with a web browser. So
>> your long URL would survive intact transit through and archiving by
>> MM. It certainly does on my MM system.
>>
>> Sendmail can be configured to limit line length so some MTA through
>> which your mail is passing could be limiting line length though
>> usually it will be to the 990 character limit.
>>
>> The MUA from whence the long URL originated is possible culprit.
>>
>> The fact is that the RFC admits the possibility of line length
>> manipulation by Mail Agents although it could be regarded as
>> anti-social to use the 78 char limit. The only way to ensure line
>> break changes do not corrupt your data is to base64 encode it; not the
>> most convenient solution, I grant you.
>>
>> ------------------------------------------------------
>> Mailman-Users mailing list
>> Mailman-Users at python.org
>> 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/
>
> --
> ----------------------------------------------------------
> Sign up now for Quotes of the Day, a handful of quotations
> on a theme delivered every morning.
> Enlightenment! Daily, for free!
> mailto:twisted at whidbey.com?subject=Subscribe_QOTD
>
> For web hosting and maintenance,
> visit Van's home page: http://www.domainvanhorn.com/van/
> ----------------------------------------------------------






From wolf at wolfstream.net  Wed Aug 21 05:03:41 2002
From: wolf at wolfstream.net (Tom Whiting)
Date: Tue, 20 Aug 2002 22:03:41 -0500
Subject: [Mailman-Users] [qmail] aliases for 2.1b
Message-ID: <200208202203.41102.wolf@wolfstream.net>

Greets,
After toying with the NON beta versions of mailman a bit, i decided to expand 
my mind and play with the beta version. Not bad, all in all a very very good 
job  done there...
I will say though, that INSTALL.QMAIL should probly be updated with  the newer 
aliases. At the end of the file (the whole --if you want to do this 
manually-- thing ), should be:
#!/bin/sh
if [ $# = 1 ]; then
    i=$1
    echo Making links to $i...
echo "|preline /usr/local/mailman/mail/mailman post $i" > .qmail-$i
echo "|preline /usr/local/mailman/mail/mailman admin $i" > .qmail-$i-admin
echo "|preline /usr/local/mailman/mail/mailman bounces $i" > .qmail-$i-bounces
echo "|preline /usr/local/mailman/mail/mailman confirm $i"> .qmail-$i-confirm
echo "|preline /usr/local/mailman/mail/mailman join $i"> .qmail-$i-join
echo "|preline /usr/local/mailman/mail/mailman leave $i">   .qmail-$i-leave
echo "|preline /usr/local/mailman/mail/mailman owner $i">  .qmail-$i-owner
echo "|preline /usr/local/mailman/mail/mailman request $i"> .qmail-$i-request
echo "|preline /usr/local/mailman/mail/mailman subscribe $i"> 
.qmail-$i-subscribe
echo "|preline /usr/local/mailman/mail/mailman unsubscribe $i"> 
.qmail-$i-unsubscribe
else
echo "give me a list to make aliases to"
fi
Of course that's just my modification of it, but seems to work for me.. That
Otherwise, hey, it all looks great!! Great job:P

-- 
----------------------------------------------------
TJW: Head tech, Dreamless Realms
Mud: http://dreamless.wolfstream.net
Snippets http://dreamless.wolfstream.net/
Telnet dreamless.wolfstream.net:9275
The OLC Pages http://olc.wolfstream.net
----------------------------------------------------



From vanhorn at whidbey.com  Wed Aug 21 05:44:10 2002
From: vanhorn at whidbey.com (G. Armour Van Horn)
Date: Tue, 20 Aug 2002 20:44:10 -0700
Subject: [Mailman-Users] A long URL - 2 lines - second line is notclickable.
References: <5.1.0.14.2.20020820155249.02d10e40@pop.ftel.co.uk>
	        <3D626CF4.2D76EFE4@whidbey.com> <55380.140.247.133.60.1029894042.squirrel@webmail.gregwestin.com>
Message-ID: <3D630C8A.3BDC467A@whidbey.com>

Heaven knows I tried to make them break. My MUA in this case is Netscape Messenger 4.78. At least it demonstrates that it
isn't Mailman messing them up! (Not to mention that Netscape is immune to Klez.H.)

Van

Greg Westin wrote:

> All four of those links work, and none break into two lines.
>
> 
> > What happens when you send a really long link through the system? In
> > this case, I suspect that the line is broken before Mailman ever sees it
> > - it would be broken if you sent it to a standard mail client just the
> > same. But what you are sending is a text URL, not a link. The link the
> > reipient sees (that isn't working) is created by the recipient mail
> > client based on starting with http: and ending with whitespace.
> >
> > Here is your original URL, I've put it back on one line:
> > http://labtest.ca.boeing.com/~psim/NewRtPlatform/test_plate_form_notes.07_18_02.html
> >
> > Now, here it is again as a link:
> > http://labtest.ca.boeing.com/~psim/NewRtPlatform/test_plate_form_notes.07_18_02.html
> >
> > Unfortunately, that's behind a firewall and nobody outside The Kite
> > Factory will know if it worked again. Here is one that should be long
> > enough to break anything, based on all the URL encoding I used. First as
> > text:
> > http://www.domainvanhorn.com/dropbox/copy%2520of%2520van%2527s%2520self%2520portrait%2520in%2520the%2520bathroom.jpg
> >
> > And now as a link:
> > http://www.domainvanhorn.com/dropbox/copy%2520of%2520van%2527s%2520self%2520portrait%2520in%2520the%2520bathroom.jpg
> >
> > I won't know until this goes through the system, but I suspect that all
> > four will be broken onto two lines, but that the linked versions will
> > still work. Maybe we'll all learn somethign at that point.
> >
> > It's a universal problem. As the number of documents on a server grows,
> > I think we're going to have to abandon the idea of having humans read
> > URLs for taxonomy - it leads to URLs that break in too many places.
> >
> > Van
> >

--
----------------------------------------------------------
Sign up now for Quotes of the Day, a handful of quotations
on a theme delivered every morning.
Enlightenment! Daily, for free!
mailto:twisted at whidbey.com?subject=Subscribe_QOTD

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





From moha at biochem.mpg.de  Mon Aug 19 13:37:53 2002
From: moha at biochem.mpg.de (Monika Haberland)
Date: Mon, 19 Aug 2002 13:37:53 +0200
Subject: [Mailman-Users] Problem with adding new members to list
Message-ID: <3D60D891.3F5A373E@biochem.mpg.de>

Please forward this problem in Mailman to the corresponding person
working on the theme:

I implemented and configuered the mailman program Vers. 2.0.6 under Suse
Linux.

I have a list called "biochem" running in our Intranet with members that
have email-addresses like:
1.) meier at biochem.mpg.de

and another member in a subdomain with the address:
2.) meier at vw.biochem.mpg.de

when using the administrative page "Membership Management" for inserting
user 1. and then user 2. the second one will not be accepted -I get the
reply: Error, user already exists.

when I insert user 2. first and then user 1. both users will be accepted
correctly.


-- 
Viele Gruesse 
 
Monika Haberland


*****************************************************************
Monika Haberland
Rechenzentrum
Max-Planck-Institut fuer Biochemie
E-Mail: moha at biochem.mpg.de



From director at mywoman2woman.com  Mon Aug 19 16:20:35 2002
From: director at mywoman2woman.com (director at mywoman2woman.com)
Date: Mon, 19 Aug 2002 10:20:35 -0400
Subject: [Mailman-Users] Help!
Message-ID: <00d101c2478b$95f6c940$bd552144@aberdn01.md.comcast.net>

Hi, 
 
I searched the FAQ and couldn?t find anything. My list was running fine
and then Saturday it just stopped working. We?ve sent test after test
with no luck. I would appreciate any assistance or advice you can offer.
Thank you!!!!
 
Sincerely, 
 
Sharon S. E. Schlossenberg
Director - My Woman2Woman Network
Email: Director at mywoman2woman.com
 
 
 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.python.org/pipermail/mailman-users/attachments/20020819/5a77189c/attachment.htm 

From deanna+usenet at freeshell.org  Mon Aug 19 17:05:13 2002
From: deanna+usenet at freeshell.org (Deanna Phillips)
Date: Mon, 19 Aug 2002 15:05:13 +0000
Subject: [Mailman-Users] qrunner and list_members errors.
Message-ID: 

Hi,

We've been getting a handful of qrunner errors a day, that look
something like this:

Traceback (innermost last):
  File "/usr/local/mailman/cron/qrunner", line 85, in ?
    from Mailman import MailList
ValueError: bad marshal data

or 

Traceback (innermost last):
  File "/usr/local/mailman/cron/qrunner", line 85, in ?
    from Mailman import MailList
  File "/usr/local/mailman/Mailman/MailList.py", line 44, in ?
    from Mailman.HTMLFormatter import HTMLFormatter 
ValueError: bad marshal data

I tried rebuilding all of the *.pyc files on our 2.0.8
installation, then tried upgrading to 2.0.13 and the problem
continues.  It seems to die in different places (importing
MailList or HTMLFormatter).  I'm not sure whether or not this is
a serious error, since I don't see any evidence of mail not
getting delivered.

However, I have a shell script that I run nightly to list all
members of all of our lists (around 500) and concatenate them
into a file.  All the script asks from mailman is a list_members
on each list.  This has been failing with errors like this:

Traceback (innermost last):
  File "../bin/list_members", line 59, in ?
    from Mailman import MailList
  File "/usr/local/mailman/Mailman/MailList.py", line 38, in ?
    from Mailman import LockFile
ValueError: bad marshal data

and 

Traceback (innermost last):
  File "../bin/list_members", line 59, in ?
    from Mailman import MailList
  File "/usr/local/mailman/Mailman/MailList.py", line 41, in ?
    from Mailman.ListAdmin import ListAdmin
  File "/usr/local/mailman/Mailman/ListAdmin.py", line 33, in ?
    from Mailman import Message
ValueError: bad marshal data

and then finally:

Traceback (innermost last):
  File "../bin/list_members", line 59, in ?
    from Mailman import MailList
MemoryError

This is a Debian system running Mailman 2.0.13 with Python
2.2.1, 900 MHz Athlon processor, 256 MB of RAM and 1 GB of swap,
if that matters.

Any help would be appreciated.

Thanks,
Deanna





From emcnabb at cs.byu.edu  Mon Aug 19 21:45:39 2002
From: emcnabb at cs.byu.edu (Evan N McNabb)
Date: Mon, 19 Aug 2002 13:45:39 -0600 (MDT)
Subject: [Mailman-Users] mailman on multiple machines
Message-ID: 

We've been using mailman for quite some time and it has worked very well. 
Just a question out of curiosity, is it possible to have the web 
interface on one machine and the back-end scripts and sendmail on another? 

-Evan

-----------------
   Evan McNabb
System Programmer
emcnabb at cs.byu.edu
------------------




From i6f7eo001 at sneakemail.com  Tue Aug 20 02:09:38 2002
From: i6f7eo001 at sneakemail.com (Albert Vernon)
Date: Mon, 19 Aug 2002 20:09:38 -0400
Subject: [Mailman-Users] How to modify the From header
Message-ID: <3D6188C2.1040700@sneakemail.com>

I'm looking for a way to modify the From header in messages that Mailman 
generates.  I looked at the docs but didn't see anything obvious.  How 
do I accomplish this?

Albert




From barbara.bracquine at verz.kbc.be  Tue Aug 20 13:42:46 2002
From: barbara.bracquine at verz.kbc.be (barbara.bracquine at verz.kbc.be)
Date: Tue, 20 Aug 2002 12:42:46 +0100
Subject: [Mailman-Users] text + html into single e-mail message?
Message-ID: 

Hello,

We have been using Mailman for quite some time now. We use is both for
plain text and html newsletters. Now we would like to "marry" the text
version to the HTML version into a single e-mail message. Is that possible
using Mailman? If so, where can I find information about how to proceed?

Sincerely,

Barbara Bracquin?

KBC
NET - Internet & E-business
Brusselsesteenweg 100
3000 Leuven
Belgium



______________________________________
DISCLAIMER

This e-mail and any attached files are confidential and may be legally
privileged. If you are not the addressee, any disclosure, reproduction,
copying, distribution, or other dissemination or use of this communication
is strictly prohibited. If you have received this transmission in error
please notify KBC immediately and then delete this e-mail. KBC does not
accept liability for the correct and complete transmission of the
information, nor for any delay or interruption of the transmission, nor for
damages arising from the use of or reliance on the information.
All e-mail messages addressed to, received or sent by KBC or KBC employees
are deemed to be professional in nature. Accordingly, the sender or
recipient of these messages agrees that they may be read by other KBC
employees than the official recipient or sender in order to ensure the
continuity of work-related activities and allow supervision thereof.




From cliffdixon at earthlink.net  Tue Aug 20 17:06:42 2002
From: cliffdixon at earthlink.net (Cliff Dixon)
Date: Tue, 20 Aug 2002 08:06:42 -0700
Subject: [Mailman-Users] Bug in Mailman
Message-ID: <3D625B02.11FACACC@earthlink.net>

I get the following message when I try to go to
http:/wwwservices.org/mailman/admin/tourismmaillist

Bug in Mailman version 2.0.9

We're sorry, we hit a bug!

Please inform the webmaster for this site of this problem. Printing of
traceback and other system information has been explicitly inhibited,
but the webmaster can find this information in the Mailman error logs.

I can't decipher from the error log what is wrong.




From leahc at us.ibm.com  Tue Aug 20 17:14:55 2002
From: leahc at us.ibm.com (Leah Cunningham)
Date: Tue, 20 Aug 2002 08:14:55 -0700
Subject: [Mailman-Users] Problems seeing recently added list in web interface
Message-ID: <20020820081455.F485@us.ibm.com>

Greetings,

I have not created a new mailing list in quite some time, so perhaps I
am forgetting something very obvious:

I created a new list using the newlist command, added the aliases to
/etc/aliases, and ran newaliases.  The server sent me the message
saying the list had been created, etc; however, if you go to the web
server, it does not show the new admin/list pages at all for the list
I created.  I tried restarting sendmail, apache, etc...  Am I
forgetting some step?

Sorry for what is probably a very basic question.  I am using 2.0.4 at
the moment.

Cheers,
Leah

PS:  Please cc me if you reply.

--
In Blythe, California, a city ordinance declares that a person must own
at least two cows before he can wear cowboy boots in public.
--------------------------------------------------------------------
Leah R. M. Cunningham             |  IBM NOS Technology Support  
leahc at us.ibm.com                  |  SuSE Linux Specialist    
919.543.2861			  |   



From ashley at pcraft.com  Wed Aug 21 07:18:59 2002
From: ashley at pcraft.com (Ashley M. Kirchner)
Date: Tue, 20 Aug 2002 23:18:59 -0600
Subject: [Mailman-Users] Help!
References: <00d101c2478b$95f6c940$bd552144@aberdn01.md.comcast.net>
Message-ID: <3D6322C3.96C391B8@pcraft.com>

director at mywoman2woman.com wrote:

> I searched the FAQ and couldn?t find anything. My list was running fine and then Saturday it just stopped working. We?ve sent test after test with no luck. I would appreciate any assistance or advice you can offer. Thank you!!!!
>

    I doubt any FAQ would be able to tell you why your list stopped working.  Is there any chance you could look in your ~mailman/logs/error file and see if it's logging any errors?  Could you also verify that your crontask is still running?  Those are the very minimum you should start with to see if they shed any light on the problem.

--
H | "Life is the art of drawing without an eraser." - John Gardner
  +--------------------------------------------------------------------
  Ashley M. Kirchner    .   303.442.6410 x130
  Director of Internet Operations / SysAdmin    .     800.441.3873 x130
  Photo Craft Laboratories, Inc.            .     3550 Arapahoe Ave, #6
  http://www.pcraft.com ..... .  .    .       Boulder, CO 80303, U.S.A.






From ashley at pcraft.com  Wed Aug 21 07:39:23 2002
From: ashley at pcraft.com (Ashley M. Kirchner)
Date: Tue, 20 Aug 2002 23:39:23 -0600
Subject: [Mailman-Users] Bug in Mailman
References: <3D625B02.11FACACC@earthlink.net>
Message-ID: <3D63278B.605355C4@pcraft.com>

Cliff Dixon wrote:

> I can't decipher from the error log what is wrong.

    Could you quote the last error (or two) from your error log for us to see?  Perhaps someone else might be able to decipher it for you.

--
H | "Life is the art of drawing without an eraser." - John Gardner
  +--------------------------------------------------------------------
  Ashley M. Kirchner    .   303.442.6410 x130
  Director of Internet Operations / SysAdmin    .     800.441.3873 x130
  Photo Craft Laboratories, Inc.            .     3550 Arapahoe Ave, #6
  http://www.pcraft.com ..... .  .    .       Boulder, CO 80303, U.S.A.






From ashley at pcraft.com  Wed Aug 21 07:41:19 2002
From: ashley at pcraft.com (Ashley M. Kirchner)
Date: Tue, 20 Aug 2002 23:41:19 -0600
Subject: [Mailman-Users] Problems seeing recently added list in web interface
References: <20020820081455.F485@us.ibm.com>
Message-ID: <3D6327FF.A8976254@pcraft.com>

Leah Cunningham wrote:

> I created a new list using the newlist command, added the aliases to
> /etc/aliases, and ran newaliases.  The server sent me the message
> saying the list had been created, etc; however, if you go to the web
> server, it does not show the new admin/list pages at all for the list
> I created.  I tried restarting sendmail, apache, etc...  Am I
> forgetting some step?

    Any chance your list might not be advertised?  (this is a configuration option by the way)

--
H | "Life is the art of drawing without an eraser." - John Gardner
  +--------------------------------------------------------------------
  Ashley M. Kirchner    .   303.442.6410 x130
  Director of Internet Operations / SysAdmin    .     800.441.3873 x130
  Photo Craft Laboratories, Inc.            .     3550 Arapahoe Ave, #6
  http://www.pcraft.com ..... .  .    .       Boulder, CO 80303, U.S.A.






From anclo at anclo.com  Wed Aug 21 08:38:08 2002
From: anclo at anclo.com (Anclo)
Date: Wed, 21 Aug 2002 02:38:08 -0400 (EDT)
Subject: [Mailman-Users] Editing the archives HTML pages
Message-ID: <3183.209.195.180.3.1029911888.squirrel@mirror.3dresearch.com>

Hello,

How can I edit the HTML of the archives pages?

Thanks for any help,

Anclo






From webmaster at frontierfleet.com  Wed Aug 21 13:16:36 2002
From: webmaster at frontierfleet.com (Webmaster ST Frontier Fleet)
Date: Wed, 21 Aug 2002 13:16:36 +0200
Subject: [Mailman-Users] List Admin Bouncing Loop
Message-ID: <034401c24904$369ed170$0500a8c0@campus.tue.nl>

Hello all,

I recently got a loop in mailman and I was wondering if someone else has
had the same problem and knows how to fix it?

It might also be a bug in the software of course, but I only found a
bugreport and for an old version of mailman, so unfortunately I could
not use that patch.

The loop started when the account of one of the two list administrators
was filled. This account was also on the list itself.
So what happened was that a message got send to the list. The account
was full, so the message bounced to the admin address. The message got
send to the two list admins, however one account was full, causing the
initial bouncing, and bounced the message again.... to the list admin
addy... so the message got send to the two list admins again, but....
well, this is were it is looping. Causing about three bounces per minute
to be received by the other admin whose account was still operational.

Right now the Mailman version is 2.0.10 with automatic bounce processing
turned off.

So, if anyone knows about or has had the same problem, then I am
interested in hearing the solution, if there is one.

Kind regards,

Guido


PS: Note to *this* list's administrator(s): You can discard the previous
message, I accidentally hit the Send button too early... my apologies..
:-(






From webmaster at frontierfleet.com  Wed Aug 21 13:32:31 2002
From: webmaster at frontierfleet.com (Webmaster ST Frontier Fleet)
Date: Wed, 21 Aug 2002 13:32:31 +0200
Subject: [Mailman-Users] Editing the archives HTML pages
References: <3183.209.195.180.3.1029911888.squirrel@mirror.3dresearch.com>
Message-ID: <036c01c24906$702e5030$0500a8c0@campus.tue.nl>

> Hello,
>
> How can I edit the HTML of the archives pages?
>
> Thanks for any help,
>
> Anclo
>

Hi Anclo,

I've been looking for an answer to that question for a while, but the
only solution I could find was switching from the internal pipermail
archive to an external archive like MhonArc.

However, as that solution was not my favorite one, seeing I could not
figure out if and how this could done on a per list setting (only for
all lists mailman was running, which was not what I wanted), I ended up
writing a special PHP script that dynamically loaded the original
mailman archives and added a CSS stylesheet file, which adds another
look to the page. However, this script is completely customized for our
own usage... although I suppose changes could be made to make it a more
general script...

In each case, AFAIK the easiest way is setting up an external archiver.

I hope this answers your question sufficiently.... and if somebody knows
a better answer... feel free to correct me.

Kind regards,

Guido





From cemkboga at yahoo.com  Wed Aug 21 14:48:43 2002
From: cemkboga at yahoo.com (Cem Karaboða)
Date: Wed, 21 Aug 2002 05:48:43 -0700 (PDT)
Subject: [Mailman-Users] for textile
Message-ID: <20020821124843.58459.qmail@web14308.mail.yahoo.com>


Iam studying textile in EGE ?niversity and I have a researchment about the effect of UV upon cotton fibre.(I also need general using of ultrsound)
I want learn which absorption spectra zone (?-? nm) we can use UV not damaging the fibre in bleaching,also I want to learn about using of ultrsound in textile especially in bleaching


Can you help me about it or can you give me mail adress the person who can help me? 
. 
I'd be a  grateful if you help me 





---------------------------------
Do You Yahoo!?
HotJobs, a Yahoo! service - Search Thousands of New Jobs
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.python.org/pipermail/mailman-users/attachments/20020821/383f6f09/attachment.html 

From R.Barrett at ftel.co.uk  Wed Aug 21 17:06:44 2002
From: R.Barrett at ftel.co.uk (Richard Barrett)
Date: Wed, 21 Aug 2002 16:06:44 +0100
Subject: [Mailman-Users] Editing the archives HTML pages
In-Reply-To: <036c01c24906$702e5030$0500a8c0@campus.tue.nl>
References: <3183.209.195.180.3.1029911888.squirrel@mirror.3dresearch.com>
Message-ID: <5.1.0.14.2.20020821145848.040c5758@pop.ftel.co.uk>

At 13:32 21/08/2002 +0200, Webmaster ST Frontier Fleet wrote:

> > Hello,
> >
> > How can I edit the HTML of the archives pages?
> >
> > Thanks for any help,
> >
> > Anclo
> >
>Hi Anclo,
>
>I've been looking for an answer to that question for a while, but the
>only solution I could find was switching from the internal pipermail
>archive to an external archive like MhonArc.
>
>However, as that solution was not my favorite one, seeing I could not
>figure out if and how this could done on a per list setting (only for
>all lists mailman was running, which was not what I wanted), I ended up
>writing a special PHP script that dynamically loaded the original
>mailman archives and added a CSS stylesheet file, which adds another
>look to the page. However, this script is completely customized for our
>own usage... although I suppose changes could be made to make it a more
>general script...
>
>In each case, AFAIK the easiest way is setting up an external archiver.
>
>I hope this answers your question sufficiently.... and if somebody knows
>a better answer... feel free to correct me.
>
>Kind regards,
>
>Guido

With MM 2.1 the HTML template for the archived mail pages is in 
$prefix/template//article.html, where language is one of the 
number of languages supported by MM 2.1

You should be able to (carefully) edit this file to suit your needs.

If you absolutely have to use 2/0.x, then you'll have to change the string 
variable called article_template in $prefix/Mailman/Archiver/HyperArch.py.

In all cases, your changes will affect all new archive article pages on 
your MM site.

Do not blame me if you get you editing wrong and your system bursts into 
flames!

Per Guido's response saying he wanted to achieve a per list look-and-feel 
this is entirely doable without resorting to PHP.

The archived mail pages generated from these templates always resides one 
directory level down from the list's archive directory 
$prefix/archives/private/.

You could put per list look and feel CSS and like the in that directory and 
refer to it in your modified HTML article template using relative URLs.

With some judicious use of CSS and Javascript I guess you could achieve 
quite a lot.

One problem is that after creating each new list you will must add your 
extras to its private archive directory. This is an all or nothing approach.

In general, this scheme would work best if all your lists had public archives.

The problem of relative addressing with a private archive is the requests 
for your list specific furniture are going end up being requested with URL 
paths of the form /mailman/private//. 
This means they will be served by the $prefix/Mailman/Cgi/private.py 
script. This script will do this OK but is a bit simple minded in figuring 
out the MIME type it returns in the Content-type: response header. The 
extra files you may want to have served, Javascript or CSS files for 
instance, will not have their mime types correctly reported.. You could 
substitute the following for the definition of the content_type function in 
$prefix/Mailman/Cgi/private.py to resolve this potential problem:

import mimetypes

def content_type(path):
     mtype = mimetypes.guess_type(path)[0]
     if not type:
         mtype = 'application/octet-stream'
     return mtype

Use this 'advice' at your own risk!




From greg at gregwestin.com  Wed Aug 21 17:23:35 2002
From: greg at gregwestin.com (Greg Westin)
Date: Wed, 21 Aug 2002 11:23:35 -0400 (EDT)
Subject: [Mailman-Users] archiving
In-Reply-To: <5.1.0.14.2.20020821145848.040c5758@pop.ftel.co.uk>
References: <3183.209.195.180.3.1029911888.squirrel@mirror.3dresearch.com>
        <5.1.0.14.2.20020821145848.040c5758@pop.ftel.co.uk>
Message-ID: <29530.155.41.10.1.1029943415.squirrel@webmail.gregwestin.com>

With all this discussion of archiving, I have to ask:  What does it say
about the developers' confidence in Mailman that this list isn't archived
by Mailman, but by an external service?  This is like when I was having
trouble setting up Mailman on Mac OS X, and then discovered that Apple
doesn't use Macs for its mail servers, it uses Sun computers.

It seems to me that if this list is archived externally, maybe I, too,
should look into that as an option. It also seems like this should be a
well-documented option, perhaps one recommended in the manual and install
files, if Mailman will continue to have sub-par archiving.

Am I missing something important?

Greg





From claw at kanga.nu  Wed Aug 21 18:00:11 2002
From: claw at kanga.nu (J C Lawrence)
Date: Wed, 21 Aug 2002 09:00:11 -0700
Subject: [Mailman-Users] archiving 
In-Reply-To: Message from "Greg Westin"  
   of "Wed, 21 Aug 2002 11:23:35 EDT." <29530.155.41.10.1.1029943415.squirrel@webmail.gregwestin.com> 
References: <3183.209.195.180.3.1029911888.squirrel@mirror.3dresearch.com> <5.1.0.14.2.20020821145848.040c5758@pop.ftel.co.uk>  <29530.155.41.10.1.1029943415.squirrel@webmail.gregwestin.com> 
Message-ID: <24372.1029945611@kanga.nu>

On Wed, 21 Aug 2002 11:23:35 -0400 (EDT) 
Greg Westin  wrote:

> With all this discussion of archiving, I have to ask: What does it say
> about the developers' confidence in Mailman that this list isn't
> archived by Mailman, but by an external service?  

The Mailman lists are archived at python.org using Pipermail, Mailman's
internal archiver.  They are also archived at various other external
sites which use various other tools.  Don't confuse the two.

> This is like when I was having trouble setting up Mailman on Mac OS X,
> and then discovered that Apple doesn't use Macs for its mail servers,
> it uses Sun computers.

As does Microsoft FWIW -- they just hide it better.

Also note that in Apple's case the Sun box in question is bigger than
any of the boxes that Apple currently makes and sells.  

> It seems to me that if this list is archived externally, maybe I, too,
> should look into that as an option. 

The internal archiver in mailman 2.1 is considerably more capable than
the archiver in Mailman 2.0.  It does not and likely never will match
the capability of external tools like MHonArc.  

If there's something you want from your archiver that Pipermail can't
offer, then investigate using an external archiver.  Otherwise look at
the archiver in v2.1.

I use an external archiver for my lists (see the FAQ for details) as I
want a variety of extra feature supports that Pipermail cannot offer (eg
replies from the web).  Other's find Pipermail's feature set quite
acceptable, especially in v2.1.

-- 
J C Lawrence                
---------(*)                Satan, oscillate my metallic sonatas. 
claw at kanga.nu               He lived as a devil, eh?		  
http://www.kanga.nu/~claw/  Evil is a name of a foeman, as I live.




From drkrause at mindspring.com  Thu Aug 22 20:10:02 2002
From: drkrause at mindspring.com (Drew Krause)
Date: Thu, 22 Aug 2002 14:10:02 -0400
Subject: [Mailman-Users] NAT translation problems?
Message-ID: <3D6528FA.7040409@mindspring.com>

Hello, a few subscribers with city and county government email addresses 
are complaining that our list mail is not getting to them. A peek at our 
mail logs confirms this. One of their system administrators noted that 
their server makes use of 'NAT translation', a concept new to me.

Has anyone else had this problem? (Is it indeed a mailman issue?) Are 
there any settings or workarounds to solve this?

Any help appreciated!




From mary.y.wang at boeing.com  Wed Aug 21 20:29:43 2002
From: mary.y.wang at boeing.com (Wang, Mary Y)
Date: Wed, 21 Aug 2002 11:29:43 -0700
Subject: [Mailman-Users] A long URL - 2 lines - second line is notclic
	kable.
Message-ID: <9C2F3AD0B86DC94B987EC4FB97C7A32405EEACA0@XCH-SW-08.sw.nos.boeing.com>

Hi,
I want to thank everyone who replied my question.  I will have to tell my
users the problem is really from the mail client - Outlook 2000 not from
Mailman. 

Mary 
(562) 797-1545


-----Original Message-----
From: G. Armour Van Horn [mailto:vanhorn at whidbey.com]
Sent: 20 August, 2002 8:44 PM
To: greg at gregwestin.com
Cc: Mailman-Users at python.org
Subject: Re: [Mailman-Users] A long URL - 2 lines - second line is
notclickable.


Heaven knows I tried to make them break. My MUA in this case is Netscape
Messenger 4.78. At least it demonstrates that it
isn't Mailman messing them up! (Not to mention that Netscape is immune to
Klez.H.)

Van

Greg Westin wrote:

> All four of those links work, and none break into two lines.
>
> 
> > What happens when you send a really long link through the system? In
> > this case, I suspect that the line is broken before Mailman ever sees it
> > - it would be broken if you sent it to a standard mail client just the
> > same. But what you are sending is a text URL, not a link. The link the
> > reipient sees (that isn't working) is created by the recipient mail
> > client based on starting with http: and ending with whitespace.
> >
> > Here is your original URL, I've put it back on one line:
> >
http://labtest.ca.boeing.com/~psim/NewRtPlatform/test_plate_form_notes.07_18
_02.html
> >
> > Now, here it is again as a link:
> >
http://labtest.ca.boeing.com/~psim/NewRtPlatform/test_plate_form_notes.07_18
_02.html
> >
> > Unfortunately, that's behind a firewall and nobody outside The Kite
> > Factory will know if it worked again. Here is one that should be long
> > enough to break anything, based on all the URL encoding I used. First as
> > text:
> >
http://www.domainvanhorn.com/dropbox/copy%2520of%2520van%2527s%2520self%2520
portrait%2520in%2520the%2520bathroom.jpg
> >
> > And now as a link:
> >
http://www.domainvanhorn.com/dropbox/copy%2520of%2520van%2527s%2520self%2520
portrait%2520in%2520the%2520bathroom.jpg
> >
> > I won't know until this goes through the system, but I suspect that all
> > four will be broken onto two lines, but that the linked versions will
> > still work. Maybe we'll all learn somethign at that point.
> >
> > It's a universal problem. As the number of documents on a server grows,
> > I think we're going to have to abandon the idea of having humans read
> > URLs for taxonomy - it leads to URLs that break in too many places.
> >
> > Van
> >

--
----------------------------------------------------------
Sign up now for Quotes of the Day, a handful of quotations
on a theme delivered every morning.
Enlightenment! Daily, for free!
mailto:twisted at whidbey.com?subject=Subscribe_QOTD

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



------------------------------------------------------
Mailman-Users mailing list
Mailman-Users at python.org
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/



From irwin at taranto.com  Wed Aug 21 20:33:22 2002
From: irwin at taranto.com (irwin)
Date: Wed, 21 Aug 2002 11:33:22 -0700
Subject: [Mailman-Users] NAT translation problems?
In-Reply-To: <3D6528FA.7040409@mindspring.com>
References: <3D6528FA.7040409@mindspring.com>
Message-ID: <200208211833.g7LIXM902616@taranto.com>

On Thursday 22 August 2002 11:10 am, Drew Krause wrote:
> Hello, a few subscribers with city and county government email addresses
> are complaining that our list mail is not getting to them. A peek at our
> mail logs confirms this. One of their system administrators noted that
> their server makes use of 'NAT translation', a concept new to me.
>
> Has anyone else had this problem? (Is it indeed a mailman issue?) Are
> there any settings or workarounds to solve this?
>
> Any help appreciated!

Don't flame me for this perhaps over simplification.  NAT, Network Address 
Translation, is a technique whereby a single IP is distributed for use of 
multiple nodes on a network.   Commonly used on networks for putting nodes 
behind a firewall (IP Masquerading).

I don't know why they should have problems receiving email, I use NAT 
and don't have any problems.   Perhaps their addresses need a node name as 
part of the address.  In other words,  "someone at node.domain.com".

Irwin



From davin at pacifier.com  Wed Aug 21 20:40:36 2002
From: davin at pacifier.com (Davin Dahlgren)
Date: Wed, 21 Aug 2002 11:40:36 -0700
Subject: [Mailman-Users] unsubscribe box
Message-ID: <003901c24942$583f5550$6501a8c0@DAVIN>

When I go to the Member Management web page, there is a box at the
bottom of the page for multiple subscribes. Is there an equivalent box
for multiple unsubscribes? If not, how hard would it be to create
something along these lines?

 

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.python.org/pipermail/mailman-users/attachments/20020821/5ecb9fd0/attachment.htm 

From rhorer at swbell.net  Wed Aug 21 21:23:49 2002
From: rhorer at swbell.net (Kyle Rhorer)
Date: Wed, 21 Aug 2002 14:23:49 -0500
Subject: [Mailman-Users] NAT translation problems?
In-Reply-To: <3D6528FA.7040409@mindspring.com>
References: <3D6528FA.7040409@mindspring.com>
Message-ID: <200208211423.49251.rhorer@swbell.net>

On Thursday 22 August 2002 13:10, Drew Krause wrote:
> Hello, a few subscribers with city and county government email
> addresses are complaining that our list mail is not getting to them.
> A peek at our mail logs confirms this. One of their system
> administrators noted that their server makes use of 'NAT
> translation', a concept new to me.

NAT stands for Network Address Translation.  Therefore, "NAT 
translation" is a redundant and incorrect term.  That aside, it is a 
scheme whereby one set of IP addresses is dynamically translated 
(usually by a firewall or firewall-like device) to another address or 
set of addresses and back again.  

For example, say machine A has an IP address of 192.168.1.5, machine B's 
address is 192.168.1.6, and machine F is the firewall.  Let's also say 
that F is configured to translate between 192.168.1.0 and 192.168.50.0.  
If A tries to browse www.python.org, it has to go through F to get to 
the Internet.  F translates A's address to something in the 
192.168.50/24 address space, for the sake of simplicity let's say it's 
192.168.50.5.  F then sends the address-translated packet on to its 
destination (www.python.org).  The destination has no way of knowing 
that the packet came from any address other than 192.168.50.5.  It 
sends a reply back, which F translates back to A's address and A 
eventually receives it.

Similarly, B might also try to browse www.python.org, and F might 
translate B's address to 192.168.50.6.  Or, F could translate B's 
address to the same 192.168.50.5 address to which A's was translated, 
in which case F would have to keep state information in order for 
returning packets to make their way back to the proper destination (A 
or B).

What I've explained above is greatly simplified in the interest of 
space.  For a more in-depth explanation of NAT, go to 
http://www.itp-journals.com/Network_address_translation_NAT_page1.htm.

> Has anyone else had this problem? (Is it indeed a mailman issue?)

It is not a Mailman issue per s?.  Mailman only works in conjunction 
with an MTA (mail transport agent) and an HTTP server.  If NAT is 
properly configured so that SMTP and HTTP pass to the proper 
destinations, Mailman should work.  From what you described, it sounds 
like the problem is on the government agency's end.

Kyle



From greg at gregwestin.com  Wed Aug 21 22:00:25 2002
From: greg at gregwestin.com (Greg Westin)
Date: Wed, 21 Aug 2002 16:00:25 -0400 (EDT)
Subject: [Mailman-Users] Suddenly - a "bug"
Message-ID: <43199.155.41.10.1.1029960025.squirrel@webmail.gregwestin.com>

I just tried to add a new list, and when I went to the web interface, it
didn't work.  I can't figure out what has changed recently , except that I
repartitioned my hard drive, so I copied the info off and then replaced
it.

Can anyone suggest some things I can check?  I tried re-installing, which
didn't seem to work, though I could have done it wrong.

Nothing in my mailman log, but an entry in the apache error log shows that
it couldn't write to the mailman log for some reason.  It may not be a
good idea for me to publicly send out all the info from my server logs,
but ignorance is bliss.  The most recent entry from my apache error log is
below.  If you have any ideas for me, please help!

Greg Westin
greg at gregwestin.com


@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
[----- Mailman Version: 2.0.13 -----]
[----- Traceback ------]
Traceback (most recent call last):
  File "/home/mailman/scripts/driver", line 71, in run_main
    immediate=1)
  File "/home/mailman/Mailman/Logging/StampedLogger.py", line 49, in __init__
    Logger.__init__(self, category, nofail, immediate)
  File "/home/mailman/Mailman/Logging/Logger.py", line 40, in __init__
    self.__get_f()
  File "/home/mailman/Mailman/Logging/Logger.py", line 55, in __get_f
    f = self.__fp = open(self.__filename, 'a+', 1)
IOError: [Errno 13] Permission denied: '/home/mailman/logs/error'
[----- Python Information -----]
sys.version    = 2.2.1 (#1, Jul  9 2002, 12:10:44)
[GCC 2.95.2 19991024 (release)]
sys.executable = /usr/local/bin/python
sys.prefix     = /usr/local
sys.exec_prefix= /usr/local
sys.path       = /usr/local
sys.platform   = darwin
[----- Environment Variables -----]
        PYTHONPATH: /home/mailman
        SERVER_SOFTWARE: Apache/1.3.26 (Darwin) PHP/4.2.2
        SCRIPT_FILENAME: /home/mailman/cgi-bin/admin
        SERVER_ADMIN: greg at gregwestin.com
        SCRIPT_NAME: /mailman/admin
        SERVER_SIGNATURE: 
Apache/1.3.26 Server at www.gregwestin.com Port 80
REQUEST_METHOD: GET HTTP_HOST: lists.gregwestin.com SERVER_PROTOCOL: HTTP/1.1 QUERY_STRING: REQUEST_URI: /mailman/admin HTTP_ACCEPT: */* HTTP_USER_AGENT: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) HTTP_CONNECTION: Keep-Alive SERVER_NAME: www.gregwestin.com REMOTE_ADDR: 155.41.10.1 REMOTE_PORT: 36444 HTTP_ACCEPT_LANGUAGE: en-us __CF_USER_TEXT_ENCODING: 0x46:0:0 SERVER_PORT: 80 GATEWAY_INTERFACE: CGI/1.1 HTTP_ACCEPT_ENCODING: gzip, deflate SERVER_ADDR: 140.247.133.60 DOCUMENT_ROOT: /Library/WebServer/Documents From sdaly at bivio.net Wed Aug 21 22:48:02 2002 From: sdaly at bivio.net (Scott Daly) Date: Wed, 21 Aug 2002 13:48:02 -0700 Subject: [Mailman-Users] Error when running 'qrunner' Message-ID: <000a01c24954$0b86a850$8a02a8c0@corp.networkrobots.com> These errors are written to the error log when 'qrunner' is run. Aug 21 12:07:09 2002 qrunner(15421): Traceback (innermost last): Aug 21 12:07:09 2002 qrunner(15421): File "./qrunner", line 283, in ? Aug 21 12:07:09 2002 qrunner(15421): kids = main(lock) Aug 21 12:07:09 2002 qrunner(15421): File "./qrunner", line 253, in main Aug 21 12:07:09 2002 qrunner(15421): keepqueued = dispose_message(mlist, msg, msgdata) Aug 21 12:07:09 2002 qrunner(15421): File "./qrunner", line 157, in dispose_message Aug 21 12:07:09 2002 qrunner(15421): mlist.ParseMailCommands(msg) Aug 21 12:07:09 2002 qrunner(15421): File "/var/mailman/Mailman/MailCommandHandler.py", line 123, in ParseMailCommands Aug 21 12:07:09 2002 qrunner(15421): precedence = msg.get('precedence', '').lower() Aug 21 12:07:09 2002 qrunner(15421): AttributeError : 'string' object has no attribute 'lower' sdaly From G.H.J.Dorssers at webinteractive.nl Wed Aug 21 13:12:15 2002 From: G.H.J.Dorssers at webinteractive.nl (G.H.J. Dorssers) Date: Wed, 21 Aug 2002 13:12:15 +0200 Subject: [Mailman-Users] List Admin Bouncing Loop Message-ID: <031801c24903$9b949250$0500a8c0@campus.tue.nl> Hello all, I recently got a loop in mailman and I was wondering if someone else has had the same problem and knows how to fix it? It might also be a bug in the software of course, but I only found a bugreport and for an old version of mailman, so unfortunately I could not use that patch. The loop started when the account of one of the two list administrators was filled. This account was also on the list itself. So what happened was that a message got send to the list. The account was full, so the message bounced to the admin address. The message got send to the two list admins, however one account was full, causing the initial bouncing, and bounced the message again.... to the list admin addy... so the message got send to the two list admins again, but.... well, this is were it is looping. Causing about three bounces per minute to be received by the other admin whose account was still operational. Right now the Mailman version is 2.0.10 with automatic bounce processing turned off. From leahc at us.ibm.com Wed Aug 21 10:17:23 2002 From: leahc at us.ibm.com (Leah Cunningham) Date: Wed, 21 Aug 2002 01:17:23 -0700 Subject: [Mailman-Users] Problems seeing recently added list in web interface In-Reply-To: <3D6327FF.A8976254@pcraft.com>; from ashley@pcraft.com on Tue, Aug 20, 2002 at 11:41:19PM -0600 References: <20020820081455.F485@us.ibm.com> <3D6327FF.A8976254@pcraft.com> Message-ID: <20020821011723.T485@us.ibm.com> Ashley M. Kirchner (ashley at pcraft.com) [020820 18:17]: > Leah Cunningham wrote: > > > I created a new list using the newlist command, added the aliases to > > /etc/aliases, and ran newaliases. The server sent me the message > > saying the list had been created, etc; however, if you go to the web > > server, it does not show the new admin/list pages at all for the list > > I created. I tried restarting sendmail, apache, etc... Am I > > forgetting some step? > > Any chance your list might not be advertised? (this is a configuration option by the way) Actually, I just figured the problem out. It was a strange permissions issue. Thanks :) Leah -- In Blythe, California, a city ordinance declares that a person must own at least two cows before he can wear cowboy boots in public. -------------------------------------------------------------------- Leah R. M. Cunningham | IBM NOS Technology Support leahc at us.ibm.com | SuSE Linux Specialist 919.543.2861 | From dmitri at arvid.ee Wed Aug 21 21:25:42 2002 From: dmitri at arvid.ee (Dmitri Gofmekler) Date: Wed, 21 Aug 2002 21:25:42 +0200 Subject: [Mailman-Users] Is there a way to import the list-archive from a different format? Message-ID: <1029957942.3d63e9367031c@secure.arvid.ee> Hi, A few years our small list was a simple email alias and list archives now stored in email client (Pegasus or Eudora). Is there any possibility to import these archives into MailMan list archive? Thanks. ------------------------------------------------- This mail sent through IMP: http://horde.org/imp/ From dreiner at cymfony.com Wed Aug 21 23:21:45 2002 From: dreiner at cymfony.com (Dustin Reiner) Date: Wed, 21 Aug 2002 17:21:45 -0400 Subject: [Mailman-Users] Mailing issue Message-ID: Since I searched the archives to no avail, I am sending my question to the list. Earlier today, sendmail began refusing connections due to high load. The load was caused by a mailman python process running and consuming a lot of CPU and memory resources (By a lot I mean it fluctuated from 8-90% CPU, and 26% of memory). I rebooted the server to reset the load average, and everything worked fine once it came back up, except any email sent to mailman lists. I am using sendmail, and Mailman 2.0.12. Emails sent to any of the lists seem to *disappear*, i.e. no messages are returned to the user, they are not queued for future delivery by sendmail, etc. Any help/suggestions would be greatly appreciated. From ashley at pcraft.com Wed Aug 21 23:35:04 2002 From: ashley at pcraft.com (Ashley M. Kirchner) Date: Wed, 21 Aug 2002 15:35:04 -0600 Subject: [Mailman-Users] Mailing issue References: Message-ID: <3D640788.11672461@pcraft.com> Dustin Reiner wrote: > Since I searched the archives to no avail, I am sending my question to the > list. Earlier today, sendmail began refusing connections due to high load. > The load was caused by a mailman python process running and consuming a lot > of CPU and memory resources (By a lot I mean it fluctuated from 8-90% CPU, > and 26% of memory). Make sure Mailman is not running into an error with your lists and locking up. Check your ~mailman/logs/error file for any signs of trouble. -- W | I haven't lost my mind; it's backed up on tape somewhere. +-------------------------------------------------------------------- Ashley M. Kirchner . 303.442.6410 x130 IT Director / SysAdmin / WebSmith . 800.441.3873 x130 Photo Craft Laboratories, Inc. . 3550 Arapahoe Ave. #6 http://www.pcraft.com ..... . . . Boulder, CO 80303, U.S.A. From levine at cs.unm.edu Wed Aug 21 23:44:18 2002 From: levine at cs.unm.edu (Scott Levine) Date: Wed, 21 Aug 2002 15:44:18 -0600 (MDT) Subject: [Mailman-Users] Mailing issue In-Reply-To: <3D640788.11672461@pcraft.com> Message-ID: I've had problems with messages vanishing after reboots, too. Mailman puts lock files in "..../mailman/locks/" I erased those, since the process that was creating the need for them was gone, and almost immediately got a flood of my queued messages. --Scott. -- Scott Levine University of New Mexico Computer Science Department levine at cs.unm.edu 505 277 2921 On Wed, 21 Aug 2002, Ashley M. Kirchner wrote: > Dustin Reiner wrote: > > > Since I searched the archives to no avail, I am sending my question to the > > list. Earlier today, sendmail began refusing connections due to high load. > > The load was caused by a mailman python process running and consuming a lot > > of CPU and memory resources (By a lot I mean it fluctuated from 8-90% CPU, > > and 26% of memory). > > Make sure Mailman is not running into an error with your lists and locking > up. Check your ~mailman/logs/error file for any signs of trouble. > > -- > W | I haven't lost my mind; it's backed up on tape somewhere. > +-------------------------------------------------------------------- > Ashley M. Kirchner . 303.442.6410 x130 > IT Director / SysAdmin / WebSmith . 800.441.3873 x130 > Photo Craft Laboratories, Inc. . 3550 Arapahoe Ave. #6 > http://www.pcraft.com ..... . . . Boulder, CO 80303, U.S.A. > > > > > ------------------------------------------------------ > Mailman-Users mailing list > Mailman-Users at python.org > 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/ > From dreiner at cymfony.com Wed Aug 21 23:46:03 2002 From: dreiner at cymfony.com (Dustin Reiner) Date: Wed, 21 Aug 2002 17:46:03 -0400 Subject: [Mailman-Users] Mailing issue In-Reply-To: <3D640788.11672461@pcraft.com> Message-ID: The problem was actually explained by looking in the qrunner log. It had error "Could not acquire qrunner lock". I removed the stale locks in the locks directory, and it started sending out the backlogged mail. Thanks for the help. Dustin -----Original Message----- From: Ashley M. Kirchner [mailto:ashley at pcraft.com] Sent: Wednesday, August 21, 2002 5:35 PM To: Dustin Reiner Cc: mailman-users at python.org Subject: Re: [Mailman-Users] Mailing issue Dustin Reiner wrote: > Since I searched the archives to no avail, I am sending my question to the > list. Earlier today, sendmail began refusing connections due to high load. > The load was caused by a mailman python process running and consuming a lot > of CPU and memory resources (By a lot I mean it fluctuated from 8-90% CPU, > and 26% of memory). Make sure Mailman is not running into an error with your lists and locking up. Check your ~mailman/logs/error file for any signs of trouble. -- W | I haven't lost my mind; it's backed up on tape somewhere. +-------------------------------------------------------------------- Ashley M. Kirchner . 303.442.6410 x130 IT Director / SysAdmin / WebSmith . 800.441.3873 x130 Photo Craft Laboratories, Inc. . 3550 Arapahoe Ave. #6 http://www.pcraft.com ..... . . . Boulder, CO 80303, U.S.A. From ckolar at imsa.edu Wed Aug 21 23:55:13 2002 From: ckolar at imsa.edu (Christopher Kolar) Date: Wed, 21 Aug 2002 16:55:13 -0500 Subject: [Mailman-Users] turning off digests (2.1 b2) Message-ID: <5.1.0.14.2.20020821165240.02dba528@mail.imsa.edu> Hi everyone. I am running 2.1 b2 and have a quick question about digests. I have a low-volume announcement list and some of the members are tagged as digest subscribers. If I turn off the digest option in the digests options page will it convert them to individual email status, or will it somehow hurt or otherwise disable their membership? I know, I should have had it turned off to begin with. Thanks much, --chris /////\\\\\/////\\\\\ Christopher G. Kolar Coordinator of Information Technology Integration Illinois Mathematics and Science Academy ckolar at imsa.edu -- staff.imsa.edu/~ckolar -- PGP Public Key ID: 0xC6492C72 Information literacy news, tools, and programs: infoliteracy-subscribe at iti.cnsnet.imsa.edu -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/mailman-users/attachments/20020821/eb0ad39b/attachment.html From greg at gregwestin.com Wed Aug 21 23:58:02 2002 From: greg at gregwestin.com (Greg Westin) Date: Wed, 21 Aug 2002 17:58:02 -0400 (EDT) Subject: [Mailman-Users] upgrading to 2.1b3 In-Reply-To: <24372.1029945611@kanga.nu> References: <3183.209.195.180.3.1029911888.squirrel@mirror.3dresearch.com> <5.1.0.14.2.20020821145848.040c5758@pop.ftel.co.uk> <29530.155.41.10.1.1029943415.squirrel@webmail.gregwestin.com> <24372.1029945611@kanga.nu> Message-ID: <36770.155.41.10.1.1029967082.squirrel@webmail.gregwestin.com> While trying ot fix this problem of Mailman not working, I decided to upgrade to 2.1b3. I am, however, having some trouble. I'm not sure why, but I've had a number of different problems. This is the most current. I copied all my old files into the new home directory, chowned and chgrped them all to mailman except the one file I saw that was different, scripts/paths.pyc, and then configured the install. That worked fine, with the only message being that Chinese wasn't supported, or something like that. However, when I tried to make install, I got the following: --- Compiling /usr/local/mailman/Mailman/versions.py ... Traceback (most recent call last): File "bin/update", line 46, in ? from Mailman import Utils File "/usr/local/mailman/Mailman/Utils.py", line 46, in ? from Mailman import Site ImportError: cannot import name Site make: *** [update] Error 1 --- Can anyone help me with this? Someone suggested for my earlier question that I should run check_perms... it didn't work. Thanks, Greg From ashley at pcraft.com Thu Aug 22 01:45:55 2002 From: ashley at pcraft.com (Ashley M. Kirchner) Date: Wed, 21 Aug 2002 17:45:55 -0600 Subject: [Mailman-Users] Re: Handling HTML format messages References: Message-ID: <3D642633.1CD76B40@pcraft.com> Kind request: Sending e-mail to the list is more than enough. No need to copy it to other people's e-mail addresses. That just creates duplicate e-mails. Raghuveer Polavarapu wrote: > Currently when a message in > html format is posted to the a list, and when I try to look at the archives > and look at the message I see all the header information (MIME contents etc) > and I do not want this to happen, I just want to install something to strip > out this stuff and just post the actual text of the message. You're on your own with this. Mailman will archive the full message, as is. If you need some message parsing capabilities, you'll need to use an external archiving tool, combined with something like a MIME stripper or something like that. Also keep in mind that not all email clients posts both the text/plain as well as the text/html part. Some ONLY post the text/html part. Then what? If you strip that out, you'll end up with a blank message. You have to treat this process carefully. Good luck. -- W | I haven't lost my mind; it's backed up on tape somewhere. +-------------------------------------------------------------------- Ashley M. Kirchner . 303.442.6410 x130 IT Director / SysAdmin / WebSmith . 800.441.3873 x130 Photo Craft Laboratories, Inc. . 3550 Arapahoe Ave. #6 http://www.pcraft.com ..... . . . Boulder, CO 80303, U.S.A. From chuqui at plaidworks.com Thu Aug 22 01:54:40 2002 From: chuqui at plaidworks.com (Chuq Von Rospach) Date: Wed, 21 Aug 2002 16:54:40 -0700 Subject: [Mailman-Users] Re: Handling HTML format messages In-Reply-To: <3D642633.1CD76B40@pcraft.com> Message-ID: <5BA539FA-B561-11D6-8DCD-0003934516A8@plaidworks.com> On Wednesday, August 21, 2002, at 04:45 PM, Ashley M. Kirchner wrote: > > Kind request: Sending e-mail to the list is more than enough. No > need to > copy it to other people's e-mail addresses. That just creates > duplicate > e-mails. (here we go again...) Some of us prefer getting those duplicates. I filter list mail out of the way until I have time to read it. So if I'm in a discussion with someone, I want both copies, so I can continue the discussion without delays. Trying to tell everyone else to do things a certain way is the wrong way to do this. If you want things a certain way, teach your client to give it to you that way. Don't try to make everyone remember who's preferences are what. You're in control of your machine, not theirs. (as I like to say, "I prefer all my email in HTML format, 18 point type, the font colored red. Please make sure you don't forget that, okay? it's important to me"). you're telling them to not do something prevents them from doing what *I* want done. Who wins here? answer: fix your system to throw out duplicates, and don't try to make other people comform to your idea of "right". chuq -- Chuq Von Rospach, Architech chuqui at plaidworks.com -- http://www.chuqui.com/ Yes, I am an agent of Satan, but my duties are largely ceremonial. From wolf at wolfstream.net Thu Aug 22 02:07:58 2002 From: wolf at wolfstream.net (Tom Whiting) Date: Wed, 21 Aug 2002 19:07:58 -0500 Subject: [Mailman-Users] Re: Handling HTML format messages In-Reply-To: <5BA539FA-B561-11D6-8DCD-0003934516A8@plaidworks.com> References: <5BA539FA-B561-11D6-8DCD-0003934516A8@plaidworks.com> Message-ID: <200208211907.58103.wolf@wolfstream.net> > (as I like to say, "I prefer all my email in HTML format, 18 point > type, the font colored red. Please make sure you don't forget that, > okay? it's important to me"). I prefer red and 20 point font, so please keep that in mind when mailing the list. **nod** :P Usually I send messages directly to the list (whatever list the discussion is on), but c'mon.. It's like someone telling me "Don't use PGP to sign your messages, because I prefer no attatchments". Ridiculous -- ---------------------------------------------------- TJW: Head tech, Dreamless Realms Mud: http://dreamless.wolfstream.net Snippets http://dreamless.wolfstream.net/ Telnet dreamless.wolfstream.net:9275 The OLC Pages http://olc.wolfstream.net ---------------------------------------------------- From greg at gregwestin.com Thu Aug 22 02:36:00 2002 From: greg at gregwestin.com (Greg Westin) Date: Wed, 21 Aug 2002 20:36:00 -0400 (EDT) Subject: [Mailman-Users] bug bite, again Message-ID: <49587.140.247.133.60.1029976560.squirrel@webmail.gregwestin.com> I managed to get Mailman 2.1b3 installed, by removing everything except for my lists and archives folders (and maybe one or two other things - but I definitely had to remove Mailman), then installing the new version. However, I'm still getting the 'bug' problem. I'm pasting the new error page below. I can't figure out how to send it as HTML, so I'll just cut and paste the text. I checked check_perms, and it says there're no problems. What else could this be? Thank you, Greg Westin greg at gregwestin.com --- Bug in Mailman version 2.1b3 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 "/usr/local/mailman/scripts/driver", line 68, in run_main immediate=1) File "/usr/local/mailman/Mailman/Logging/StampedLogger.py", line 52, in __init__ Logger.__init__(self, category, nofail, immediate) File "/usr/local/mailman/Mailman/Logging/Logger.py", line 41, in __init__ self.__get_f() File "/usr/local/mailman/Mailman/Logging/Logger.py", line 56, in __get_f f = self.__fp = open(self.__filename, 'a+', 1) IOError: [Errno 13] Permission denied: '/usr/local/mailman/logs/error' Python information: Variable Value sys.version 2.2.1 (#1, Jul 9 2002, 12:10:44) [GCC 2.95.2 19991024 (release)] sys.executable /usr/local/bin/python sys.prefix /usr/local sys.exec_prefix /usr/local sys.path /usr/local sys.platform darwin Environment variables: Variable Value PYTHONPATH /usr/local/mailman SERVER_SOFTWARE Apache/1.3.26 (Darwin) PHP/4.2.2 SCRIPT_FILENAME /usr/local/mailman/cgi-bin/listinfo SERVER_ADMIN greg at gregwestin.com SCRIPT_NAME /mailman/listinfo SERVER_SIGNATURE Apache/1.3.26 Server at www.gregwestin.com Port 80 REQUEST_METHOD GET HTTP_HOST lists.gregwestin.com HTTP_KEEP_ALIVE 300 SERVER_PROTOCOL HTTP/1.1 QUERY_STRING REQUEST_URI /mailman/listinfo HTTP_ACCEPT text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,video/x-mng,image/png,image/jpeg,image/gif;q=0.2,text/css,*/*;q=0.1 HTTP_USER_AGENT Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US; rv:1.0.0) Gecko/20020724 HTTP_CONNECTION keep-alive SERVER_NAME www.gregwestin.com REMOTE_ADDR 140.247.133.60 REMOTE_PORT 49454 HTTP_ACCEPT_LANGUAGE en-us, en;q=0.50 __CF_USER_TEXT_ENCODING 0x46:0:0 SERVER_PORT 80 GATEWAY_INTERFACE CGI/1.1 HTTP_ACCEPT_ENCODING gzip, deflate, compress;q=0.9 SERVER_ADDR 140.247.133.60 DOCUMENT_ROOT /Library/WebServer/Documents From greg at gregwestin.com Thu Aug 22 03:11:09 2002 From: greg at gregwestin.com (Greg Westin) Date: Wed, 21 Aug 2002 21:11:09 -0400 (EDT) Subject: [Mailman-Users] bug fixed In-Reply-To: <24372.1029945611@kanga.nu> References: <3183.209.195.180.3.1029911888.squirrel@mirror.3dresearch.com> <5.1.0.14.2.20020821145848.040c5758@pop.ftel.co.uk> <29530.155.41.10.1.1029943415.squirrel@webmail.gregwestin.com> <24372.1029945611@kanga.nu> Message-ID: <49248.140.247.133.60.1029978669.squirrel@webmail.gregwestin.com> The 'bug' was fixed by chmod'ing all my log files to 660. Is this appropriate, or does this mean I don't have mailman set up correctly? Thanks, Greg From edg at greenberg.org Thu Aug 22 06:45:48 2002 From: edg at greenberg.org (Ed Greenberg) Date: Wed, 21 Aug 2002 21:45:48 -0700 Subject: [Mailman-Users] Separate Subscribe/Unsubscribe addresses Message-ID: <5.1.0.14.0.20020821214321.00b15bb8@imap.greenberg.org> Mailman creates a -request address for each list, to which you send subscribe and unsubscribe messages (and others). Some other mailing list systems offer separate addresses for subscribe and unsubscribe functions, as well as a request address. It's easier for the beginner to deal with such addresses, especially when the list is moving from such a system to a mailman hosted system. Has anybody implemented this in Mailman? From greg at gregwestin.com Thu Aug 22 07:34:48 2002 From: greg at gregwestin.com (Greg Westin) Date: Thu, 22 Aug 2002 01:34:48 -0400 (EDT) Subject: [Mailman-Users] Mailman not connecting to MTA? Message-ID: <49876.140.247.133.60.1029994488.squirrel@webmail.gregwestin.com> After upgrading to 2.1b3, it seems that there's some problem with the communication between Mailman and Postfix. If I try sending an e-mail to an admin of one of the lists, and watch the Postfix log, it records the fact that the e-mail has been received and sent to the mail/mailman script, but the script never sends an e-mail. I think I set everything up according to README.Postfix. Does anyone know what the problem might be? I also noticed that for some strange reason the defaults for DEFAULT_EMAIL_HOST and DEFAULT_URL_HOST were set to my last name, which is also a username on my computer. I don't know why this would be, but I noticed it when the membership management page wouldn't work, because the links all referenced http://westin/mailman/... I hope I didn't mess up this installation. Thanks, Greg Westin greg at gregwestin.com From wash at wananchi.com Thu Aug 22 07:36:55 2002 From: wash at wananchi.com (Odhiambo Washington) Date: Thu, 22 Aug 2002 08:36:55 +0300 Subject: [Mailman-Users] Separate Subscribe/Unsubscribe addresses In-Reply-To: <5.1.0.14.0.20020821214321.00b15bb8@imap.greenberg.org> References: <5.1.0.14.0.20020821214321.00b15bb8@imap.greenberg.org> Message-ID: <20020822053655.GA16809@ns2.wananchi.com> * Ed Greenberg [20020822 07:45]: wrote: > Mailman creates a -request address for each list, to which you send > subscribe and unsubscribe messages (and others). > > Some other mailing list systems offer separate addresses for subscribe and > unsubscribe functions, as well as a request address. It's easier for the > beginner to deal with such addresses, especially when the list is moving > from such a system to a mailman hosted system. > > Has anybody implemented this in Mailman? My understanding may not have been clear on this but I would try to alias "such addresses" to the mailman aliases. If I have mailman aliases like this: geeks: "|/usr/local/mailman/bin/mailmanstripwrapper post geeks" geeks-admin: "|/usr/local/mailman/mail/wrapper mailowner geeks" geeks-request: "|/usr/local/mailman/mail/wrapper mailcmd geeks" geeks-owner: geeks-admin I'll try this: old-system-subscribe: geeks-request old-system: geeks NB: Just my opinion. I may not be necessarily correct. cheers - wash +----------------------------------+-----------------------------------------+ Odhiambo Washington, wash at wananchi.com . WANANCHI ONLINE LTD (Nairobi, KE) | http://ns2.wananchi.com/~wash/ . 1ere Etage, Loita Hse, Loita St., | GSM: (+254) 722 743 223 . # 10286, 00100 NAIROBI | +---------------------------------+------------------------------------------+ "Oh My God! They killed init! You Bastards!" --from a /. post From wash at wananchi.com Thu Aug 22 07:48:37 2002 From: wash at wananchi.com (Odhiambo Washington) Date: Thu, 22 Aug 2002 08:48:37 +0300 Subject: [Mailman-Users] turning off digests (2.1 b2) In-Reply-To: <5.1.0.14.2.20020821165240.02dba528@mail.imsa.edu> References: <5.1.0.14.2.20020821165240.02dba528@mail.imsa.edu> Message-ID: <20020822054837.GB16809@ns2.wananchi.com> * Christopher Kolar [20020822 00:57]: wrote: > Hi everyone. I am running 2.1 b2 and have a quick question about > digests. I have a low-volume announcement list and some of the members are > tagged as digest subscribers. If I turn off the digest option in the > digests options page will it convert them to individual email status, or > will it somehow hurt or otherwise disable their membership? > > I know, I should have had it turned off to begin with. Thanks much, > > --chris Why don't you put yourself into their shoes by creating a "test" user and play with that? -Wash -- Odhiambo Washington "The box said 'Requires Wananchi Online Ltd. www.wananchi.com Windows 95, NT, or better,' Tel: +254 2 313985-9 +254 2 313922 so I installed FreeBSD." GSM: +254 72 743223 +254 733 744121 This sig is McQ! :-) Some programming languages manage to absorb change, but withstand progress. -- Epigrams in Programming, ACM SIGPLAN Sept. 1982 From wash at wananchi.com Thu Aug 22 08:25:20 2002 From: wash at wananchi.com (Odhiambo Washington) Date: Thu, 22 Aug 2002 09:25:20 +0300 Subject: [Mailman-Users] unsubscribe box In-Reply-To: <003901c24942$583f5550$6501a8c0@DAVIN> References: <003901c24942$583f5550$6501a8c0@DAVIN> Message-ID: <20020822062520.GE16809@ns2.wananchi.com> * Davin Dahlgren [20020821 21:43]: wrote: > When I go to the Member Management web page, there is a box at the > bottom of the page for multiple subscribes. Is there an equivalent box > for multiple unsubscribes? If not, how hard would it be to create > something along these lines? 2.1b3 has that facility. Time has come for you to update?? Rgs -Wash -- Odhiambo Washington "The box said 'Requires Wananchi Online Ltd. www.wananchi.com Windows 95, NT, or better,' Tel: +254 2 313985-9 +254 2 313922 so I installed FreeBSD." GSM: +254 72 743223 +254 733 744121 This sig is McQ! :-) Justice, n.: A decision in your favor. From wolf at wolfstream.net Thu Aug 22 08:51:43 2002 From: wolf at wolfstream.net (Tom Whiting) Date: Thu, 22 Aug 2002 01:51:43 -0500 Subject: [Mailman-Users] Separate Subscribe/Unsubscribe addresses In-Reply-To: <5.1.0.14.0.20020821214321.00b15bb8@imap.greenberg.org> References: <5.1.0.14.0.20020821214321.00b15bb8@imap.greenberg.org> Message-ID: <200208220151.43205.wolf@wolfstream.net> On Wednesday 21 August 2002 11:45 pm, Ed Greenberg wrote: > Some other mailing list systems offer separate addresses for subscribe and > unsubscribe functions, as well as a request address. It's easier for the > beginner to deal with such addresses, especially when the list is moving > from such a system to a mailman hosted system. > > Has anybody implemented this in Mailman? -rw-rw-r-- 1 mailman mailman 57 Aug 21 16:33 .qmail-mud2k-subscribe -rw-rw-r-- 1 mailman mailman 59 Aug 21 16:33 .qmail-mud2k-unsubscribe (mailman at mirage 01:50:15): that's from the latest beta I haven't tested these addresses out, but I'd bet there's nothing wrong with 'em -- ---------------------------------------------------- TJW: Head tech, Dreamless Realms Mud: http://dreamless.wolfstream.net Snippets http://dreamless.wolfstream.net/ Telnet dreamless.wolfstream.net:9275 The OLC Pages http://olc.wolfstream.net ---------------------------------------------------- From john at io.com Thu Aug 22 10:12:24 2002 From: john at io.com (John Buttery) Date: Thu, 22 Aug 2002 03:12:24 -0500 Subject: [Mailman-Users] Postings arrive with incorrect "To:" field Message-ID: <20020822081224.GA13794@io.com> I've just set up a list, and everything is working peachy except for one thing; when someone posts to the list, the To: field is getting rewritten with a different domain. For example, if I compose an email addressed to "listname at lists.domain.com" and send it, everyone gets the posting just fine, but when it is delivered, the To: field has the address "listname at boxname.domain.com" instead. At first I thought this might be an MTA issue (in this case, sendmail), but after running some tests with other addresses that are not getting rewritten, it looks like the issue is with mailman. I have configured DEFAULT_HOST_NAME and also went into the web interface and set "Hostname this list prefers", but it still happens. What else can I configure and/or check to debug? -- ------------------------------------------------------------------------ John Buttery The problem with pointing to the Nazis or the Gestapo exclusively is that it allows us the safety of saying, "Well, it happened just there, and only once, *we* could never fall for that." (Web page temporarily unavailable) ------------------------------------------------------------------------ -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: not available Url : http://mail.python.org/pipermail/mailman-users/attachments/20020822/0ac0f76a/attachment.pgp From john at io.com Thu Aug 22 13:16:51 2002 From: john at io.com (John Buttery) Date: Thu, 22 Aug 2002 06:16:51 -0500 Subject: [Mailman-Users] Postings arrive with incorrect "To:" field (Take 2) Message-ID: <20020822111651.GB15472@io.com> Someone pointed out to me off-list that some mailers don't process PGP/MIME messages properly, so I might want to send my request in a more lowest-common-denominator format. I apologize to those of you with modern mailers (sorry, couldn't resist :p) that have to read this twice; here it is in a text-only email: I've just set up a list, and everything is working peachy except for one thing; when someone posts to the list, the To: field is getting rewritten with a different domain. For example, if I compose an email addressed to "listname at lists.domain.com" and send it, everyone gets the posting just fine, but when it is delivered, the To: field has the address "listname at boxname.domain.com" instead. At first I thought this might be an MTA issue (in this case, sendmail), but after running some tests with other addresses that are not getting rewritten, it looks like the issue is with mailman. I have configured DEFAULT_HOST_NAME and also went into the web interface and set "Hostname this list prefers", but it still happens. What else can I configure and/or check to debug? -- ------------------------------------------------------------------------ John Buttery I really look with commiseration over the great body of my fellow citizens who, reading newspapers, live and die in the belief that they have known something of what has been passing in their time. Harry Truman, United States President (1945-1952) (Web page temporarily unavailable) ------------------------------------------------------------------------ From janis at camp.lv Thu Aug 22 16:14:02 2002 From: janis at camp.lv (janis at camp.lv) Date: Thu, 22 Aug 2002 17:14:02 +0300 Subject: [Mailman-Users] strange permissions Message-ID: <1030025642.3d64f1aa892da@mail.camp.lv> Hi! I am using Linux From Scratch and I have some problems installing mailman. I have seen a lot of this-like posts and tried many solutions but non of them seem to work. So here is what I did: >cat /usr/local/apache/conf/httpd.conf|grep Group >Group apache I even created temporary cgi w command `touch /tmp/test` and it gave me result >-rw-r--r-- 1 apache apache 0 Aug 19 23:26 test just to be sure cgi is executed w user/group apache >cat /etc/group|grep apache >apache:x:102: I am using postfix and installed separate alias file for mailman in /usr/local/mailman/alias as suggested in INSTALL >cat /etc/postfix/main.cf|grep mailman >alias_maps = hash:/usr/local/mailman/aliases >-rwxrwsr-x 1 mailman mailman 251 Aug 22 13:21 aliases after that I did >postalias /usr/local/mailman/aliases >newaliases /usr/loca/mailman/aliases so that mail delivery is done by user/group mailman I created folder /usr/local/mailman >drwxrwsr-x 18 root mailman 4096 Aug 22 13:21 mailman So this is setup.... >cat /etc/group|grep mailman >mailman:x:1009: >./configure --prefix=/usr/local/mailman --with-cgi-gid=102 --with-mail-gid=1009 >make >make install >./mmsitepass >./newlist tmp >cat members.txt >one at myhost.com >two at myhost.com >./add_members -n members.txt tmp After this I can send messages to tmp at myhost.com and mailinglist works fine. So here is my problem: When I try to open http://www.myhost.com/mailman/admin I get "Bug in Mailman version 2.0.13\nWe're sorry, we hit a bug!...". /logs/error doesn't say anything until I changed permissions to error from >-rw-rw-r-- 1 mailman mailman 7842 Aug 22 16:45 error to >-rw-rw-rw- 1 mailman mailman 7842 Aug 22 16:45 error and I got >cat error >... >admin(25613): File "/usr/local/mailman/Mailman/MailList.py", line 869, in __load >admin(25613): fp = open(dbfile) >admin(25613): IOError: [Errno 13] Permission denied: '/usr/local/mailman/lists/tmp/config.db' >... >-rw-rw---- 1 mailman mailman 2997 Aug 22 16:37 config.db I understand, that this is a problem with apache and permissions, but I can't figure out what exactly have I done wrong. If cgi admin has suid permissions than config.db should be accessed with group mailman? Info that may help: >ls -la /usr/local/mailman/cgi-bin/ >-rwxr-sr-x 1 root mailman 29530 Aug 22 13:06 admin >-rwxr-sr-x 1 root mailman 29534 Aug 22 13:06 admindb >-rwxr-sr-x 1 root mailman 29542 Aug 22 13:06 edithtml >-rwxr-sr-x 1 root mailman 29542 Aug 22 13:06 handle_opts >-rwxr-sr-x 1 root mailman 29542 Aug 22 13:06 listinfo >-rwxr-sr-x 1 root mailman 29534 Aug 22 13:06 options >-rwxr-sr-x 1 root mailman 29534 Aug 22 13:06 private >-rwxr-sr-x 1 root mailman 29530 Aug 22 13:06 roster >-rwxr-sr-x 1 root mailman 29542 Aug 22 13:06 subscribe >cat /usr/local/apache/conf/httpd.conf|grep mailman > Alias /pipermail/ /usr/local/mailman/archives/public/ > ScriptAlias /mailman/ "/usr/local/mailman/cgi-bin/" Any help would be greatly appreciated From greg at gregwestin.com Thu Aug 22 16:38:23 2002 From: greg at gregwestin.com (Greg Westin) Date: Thu, 22 Aug 2002 10:38:23 -0400 (EDT) Subject: [Mailman-Users] Can't create lists from web interface In-Reply-To: <1030025642.3d64f1aa892da@mail.camp.lv> References: <1030025642.3d64f1aa892da@mail.camp.lv> Message-ID: <29114.155.41.10.1.1030027103.squirrel@webmail.gregwestin.com> I resolved the issue of e-mail not being sent to list admins by starting mailmanctl, which I didn't know about. In trying to create a test list to make sure everything is working now, though, I discovered that the web interface for creating new lists doesn't work. I created a list earlier from the command line, which worked, but it looks like something called by the web interface is running as the cgi user, rather than mailman, and so can't create archives. Perhaps my permissions are incorrect? Again, check_perms doesn't report anything wrong, but I had a permissions problem before that it didn't report, too. I would think the problem is that somehow these scripts should be running as mailman rather than under the cgi gid, or they won't create list files with owner and group mailman. Please help if you have any ideas. Sincerely, Greg Westin greg at gregwestin.com --- Bug in Mailman version 2.1b3 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 "/usr/local/mailman/scripts/driver", line 82, in run_main main() File "/usr/local/mailman/Mailman/Cgi/create.py", line 55, in main process_request(doc, cgidata) File "/usr/local/mailman/Mailman/Cgi/create.py", line 176, in process_request mlist.Create(listname, owner, pw, langs) File "/usr/local/mailman/Mailman/MailList.py", line 422, in Create self.InitVars(name, admin, crypted_password) File "/usr/local/mailman/Mailman/MailList.py", line 351, in InitVars baseclass.InitVars(self) File "/usr/local/mailman/Mailman/Archiver/Archiver.py", line 92, in InitVars os.mkdir(self.archive_dir()+'.mbox', 02775) OSError: [Errno 13] Permission denied: '/usr/local/mailman/archives/private/test.mbox' -------------------------------------------------------------------------------- Python information: Variable Value sys.version 2.2.1 (#1, Jul 9 2002, 12:10:44) [GCC 2.95.2 19991024 (release)] sys.executable /usr/local/bin/python sys.prefix /usr/local sys.exec_prefix /usr/local sys.path /usr/local sys.platform darwin -------------------------------------------------------------------------------- Environment variables: Variable Value HTTP_ACCEPT image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, */* CONTENT_TYPE application/x-www-form-urlencoded HTTP_REFERER http://lists.gregwestin.com/mailman/create SERVER_SOFTWARE Apache/1.3.26 (Darwin) PHP/4.2.2 PYTHONPATH /usr/local/mailman SCRIPT_FILENAME /usr/local/mailman/cgi-bin/create SERVER_ADMIN greg at gregwestin.com SCRIPT_NAME /mailman/create SERVER_SIGNATURE Apache/1.3.26 Server at lists.gregwestin.com Port 80 REQUEST_METHOD POST HTTP_HOST lists.gregwestin.com SERVER_PROTOCOL HTTP/1.1 QUERY_STRING HTTP_CACHE_CONTROL no-cache REQUEST_URI /mailman/create CONTENT_LENGTH 144 HTTP_USER_AGENT Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) HTTP_CONNECTION Keep-Alive SERVER_NAME lists.gregwestin.com REMOTE_ADDR 155.41.10.1 REMOTE_PORT 18800 HTTP_ACCEPT_LANGUAGE en-us __CF_USER_TEXT_ENCODING 0x46:0:0 SERVER_PORT 80 GATEWAY_INTERFACE CGI/1.1 HTTP_ACCEPT_ENCODING gzip, deflate SERVER_ADDR 140.247.133.60 DOCUMENT_ROOT /Library/WebServer/Documents From sammons_david at yahoo.com.mx Thu Aug 22 18:28:19 2002 From: sammons_david at yahoo.com.mx (=?iso-8859-1?q?David=20Sammons?=) Date: Thu, 22 Aug 2002 11:28:19 -0500 (CDT) Subject: [Mailman-Users] Script Question!!! Message-ID: <20020822162819.78584.qmail@web21308.mail.yahoo.com> Hi there!!! I have a trouble with mailing list that are more than 3000 members, I?m using sync_members script to update the list but it doesn?t do nothing with those list. I don?t have problems with list less than 3000 membres, i?m working with mm 2.1a2. Any ideas please???? Thanks in advanced!!!! _________________________________________________________ Do You Yahoo!? La emoci?n e intensidad del deporte en Yahoo! Deportes. http://deportes.yahoo.com.mx From demeler at bioc09.v19.uthscsa.edu Thu Aug 22 18:43:55 2002 From: demeler at bioc09.v19.uthscsa.edu (Borries Demeler) Date: Thu, 22 Aug 2002 11:43:55 -0500 (CDT) Subject: [Mailman-Users] Automatically reject - how? Message-ID: <200208221643.g7MGht5F015216@bioc09.v19.uthscsa.edu> Hi, I was wondering how I could set up mailman so I am not always required to manually delete or reject messages held for approval. I have mailing lists set up such that subscribers are allowed to post, non-subscribers are not. I monitor who subscribes. If a spammer posts, it should be automatically rejected. Now I have to do this manually. Any suggestions on how to accomplish this? Thanks, -Borries From wash at wananchi.com Thu Aug 22 19:00:30 2002 From: wash at wananchi.com (Odhiambo Washington) Date: Thu, 22 Aug 2002 20:00:30 +0300 Subject: [Mailman-Users] Automatically reject - how? In-Reply-To: <200208221643.g7MGht5F015216@bioc09.v19.uthscsa.edu> References: <200208221643.g7MGht5F015216@bioc09.v19.uthscsa.edu> Message-ID: <20020822170030.GA58354@ns2.wananchi.com> * Borries Demeler [20020822 19:45]: wrote: > Hi, > > I was wondering how I could set up mailman so I am not always required > to manually delete or reject messages held for approval. I have mailing > lists set up such that subscribers are allowed to post, non-subscribers > are not. I monitor who subscribes. If a spammer posts, it should be > automatically rejected. Now I have to do this manually. Any suggestions > on how to accomplish this? Search ther archives for "clear-requests" or.... lemme make life easier ;-) Add this line to mailman's cron: # Clear all unsub requests at 16.45 45 16 * * * /usr/local/bin/python2.2 -S /usr/local/mailman/cron/clear-requests listname substitute "listname" with your list name. The clear-requests is attached. Credit belongs to the person who wrote it, not me. If you want explanation as to why it is run at that time, search the list archives. I got it from there. HTH -Wash -- Odhiambo Washington "The box said 'Requires Wananchi Online Ltd. www.wananchi.com Windows 95, NT, or better,' Tel: +254 2 313985-9 +254 2 313922 so I installed FreeBSD." GSM: +254 72 743223 +254 733 744121 This sig is McQ! :-) If you think the United States has stood still, who built the largest shopping center in the world? -- Richard Nixon -------------- next part -------------- #! /usr/bin/env python # We can use this and run it differently from the others - !/usr/local/bin/python # I configured a list to accept messages from subscribers only # so that unsubscribers' messages can be approved by admin manually. # But these days some spammers started to send too many messages # so deleting those messages takes quite time. # # Is there any way to configure mailman delete every messages # from unsubscribers automatically and do not even notify it # to the list admin? # I use this script to do just that. Name it (clear_request) and put it in # mailman cronjob. # The default cron job for mailman most likely mails admins at 5pm about # pending requests so you should run this script at 4:50pm or something. # Written by Donal Hunt # April 23rd 2001 # # argv[1] should be the name of the list. """Clear pending administrative requests for a list Usage: clear_requests listname Where: listname The name of the Mailman list you want to clear pending requests from. It must already exist. """ import sys import os import string import getopt import paths from Mailman import mm_cfg from Mailman import Utils from Mailman import MailList from Mailman import Errors from Mailman import Message from Mailman.Logging.Syslog import syslog def usage(status, msg=''): if msg: print msg print __doc__ % globals() sys.exit(status) def main(): try: ml = MailList.MailList(sys.argv[1]) except Errors.MMListError, e: usage(1, 'No such list: %s (%s)' % (listname, e)) try: print 'No of Requests Pending: %s ' % ml.NumRequestsPending() print 'No of postings awaiting approval: %s ' % ml.GetHeldMessageIds() print 'No of subsciptions awaiting approval: %s ' % ml.GetSubscriptionIds() for i in ml.GetHeldMessageIds(): ml.HandleRequest(i, 3) for i in ml.GetSubscriptionIds(): ml.HandleRequest(i, 2, 'No subscription allowed - please mail %s' % ml.owner[0] ) print 'No of Requests Pending: %s ' % ml.NumRequestsPending() ml.Save() finally: ml.Unlock() main() From irwin at taranto.com Thu Aug 22 20:03:36 2002 From: irwin at taranto.com (irwin) Date: Thu, 22 Aug 2002 11:03:36 -0700 Subject: [Mailman-Users] Automatically reject - how? In-Reply-To: <20020822170030.GA58354@ns2.wananchi.com> References: <200208221643.g7MGht5F015216@bioc09.v19.uthscsa.edu> <20020822170030.GA58354@ns2.wananchi.com> Message-ID: <200208221803.g7MI3a812356@taranto.com> On Thursday 22 August 2002 10:00 am, Odhiambo Washington wrote: > * Borries Demeler [20020822 19:45]: wrote: > > Hi, > > > > I was wondering how I could set up mailman so I am not always required > > to manually delete or reject messages held for approval. I have mailing > > lists set up such that subscribers are allowed to post, non-subscribers > > are not. I monitor who subscribes. If a spammer posts, it should be > > automatically rejected. Now I have to do this manually. Any suggestions > > on how to accomplish this? > > Search ther archives for "clear-requests" or.... lemme make life easier ;-) Thanks from a lot of us for that post. Irwin From greg at gregwestin.com Thu Aug 22 20:15:54 2002 From: greg at gregwestin.com (Greg Westin) Date: Thu, 22 Aug 2002 14:15:54 -0400 (EDT) Subject: [Mailman-Users] Automatically reject - how? In-Reply-To: <200208221643.g7MGht5F015216@bioc09.v19.uthscsa.edu> References: <200208221643.g7MGht5F015216@bioc09.v19.uthscsa.edu> Message-ID: <4256.155.41.10.1.1030040154.squirrel@webmail.gregwestin.com> I haven't tried this out, but just looking at the settings available, you should be able to do this without any extra scripts or cron jobs if you upgrade to 2.1b3. It adds lots of different options, including one that specifies what to do with messages from non-members (Accept, Hold, Reject, or Discard). Greg > Hi, > > I was wondering how I could set up mailman so I am not always required > to manually delete or reject messages held for approval. I have mailing > lists set up such that subscribers are allowed to post, non-subscribers > are not. I monitor who subscribes. If a spammer posts, it should be > automatically rejected. Now I have to do this manually. Any suggestions > on how to accomplish this? > > Thanks, -Borries > > > ------------------------------------------------------ > Mailman-Users mailing list > Mailman-Users at python.org > 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/ From marius at agoron.com Thu Aug 22 20:22:18 2002 From: marius at agoron.com (Marius Kirschner) Date: Thu, 22 Aug 2002 14:22:18 -0400 Subject: [Mailman-Users] Automatically reject - how? In-Reply-To: <4256.155.41.10.1.1030040154.squirrel@webmail.gregwestin.com> Message-ID: <004f01c24a08$d94840a0$5ae9b5ce@quasi1> Hmm, that setting (Accept, Hold, Reject, or Discard) is also available in v2.0.12 under the "Bounce Options". ---Marius > -----Original Message----- > From: mailman-users-admin at python.org [mailto:mailman-users- > admin at python.org] On Behalf Of Greg Westin > Sent: Thursday, August 22, 2002 2:16 PM > To: mailman-users at python.org > Subject: Re: [Mailman-Users] Automatically reject - how? > > I haven't tried this out, but just looking at the settings available, you > should be able to do this without any extra scripts or cron jobs if you > upgrade to 2.1b3. It adds lots of different options, including one that > specifies what to do with messages from non-members (Accept, Hold, Reject, > or Discard). > > Greg > > > > Hi, > > > > I was wondering how I could set up mailman so I am not always required > > to manually delete or reject messages held for approval. I have mailing > > lists set up such that subscribers are allowed to post, non-subscribers > > are not. I monitor who subscribes. If a spammer posts, it should be > > automatically rejected. Now I have to do this manually. Any suggestions > > on how to accomplish this? > > > > Thanks, -Borries > > > > > > ------------------------------------------------------ > > Mailman-Users mailing list > > Mailman-Users at python.org > > 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 mailing list > Mailman-Users at python.org > 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/ From sammons_david at yahoo.com.mx Thu Aug 22 22:15:04 2002 From: sammons_david at yahoo.com.mx (=?iso-8859-1?q?David=20Sammons?=) Date: Thu, 22 Aug 2002 15:15:04 -0500 (CDT) Subject: [Mailman-Users] Question about mailman script!!! Message-ID: <20020822201504.12336.qmail@web21302.mail.yahoo.com> Hi there!!! I have a touble with sync_members script, I have some list over 3000 memebers and i want to update them with the mailman script, but it doesn?t do nothing. I have other mailing list with less than 3000 members and it works fine, I?m working with mm 2.1a2... Any ideas???? Thenks in advanced!!!! _________________________________________________________ Do You Yahoo!? La emoci?n e intensidad del deporte en Yahoo! Deportes. http://deportes.yahoo.com.mx From khj at be.cs.appstate.edu Thu Aug 22 23:29:15 2002 From: khj at be.cs.appstate.edu (Kenneth Jacker) Date: 22 Aug 2002 17:29:15 -0400 Subject: [Mailman-Users] Incorrect Headers in Confirmation Email Message-ID: [Sorry for the length of this, but wanted to supply enough details.] Config: RH7.3, mailman-2.0.11-1, python-1.5.2-38, python2-2.2-16 (/mailman/ is running on machine "d.c.b.a") For some reason, generated email addresses are incorrect in the headers of confirmation letters sent to new subscribers. Here's what some of the headers look like in a sample confirmation letter. Errors are prepended with '*'s and puzzling lines with a '?': From foobar-admin at d.c.b.a Thu Aug 22 16:43:18 2002 Return-Path: Received: from d.c.b.a (d.c.b.a [1.2.3.4]) by c.b.a (8.12.2/8.12.2) with ESMTP id g7MJlsJH389618 for ; Thu, 22 Aug 2002 15:47:54 -0400 (EDT) ? Received: from d.c.b.a (d.c.b.a [127.0.0.1]) ? by d.c.b.a (8.11.6/8.11.6) with ESMTP id g7MJlvh16998 ? for ; Thu, 22 Aug 2002 15:47:57 -0400 Message-ID: <20020822204321.17497.79986.Mailman at d.c.b.a> * From: foobar-request at c.b.a To: user at c.b.a * Reply-To: foobar-request at c.b.a * Sender: foobar-admin at c.b.a * Errors-To: foobar-admin at c.b.a X-BeenThere: foobar at d.c.b.a List-Help: List-Post: List-Subscribe: , List-Id: a list for testing 'mailman' List-Unsubscribe: , List-Archive: I first noticed the problem when I attempted to "reply" to the confirmation letter. The error is due to the improper Reply-To: header ... The Reply-To: looks like: Reply-To: foobar-request at c.b.a instead of the correct: Reply-To: foobar-request at d.c.b.a There *is* a machine with FQDN "c.b.a", but /mailman/ is running on another machine whose FQDN is "d.c.b.a". Strange! I've checked on "c.b.a" for any "mailman" aliases and/or accounts, but found nothing ... Where is the Reply-To: (and other headers) generated? Another thing I've noticed: the confirmation letter contains the following: We have received a request from 127.0.0.1 for subscription of your email address, ... Seems odd that the address for "localhost" appears, no? The Received: headers above (marked with '?'s) also caught my attention in that host "d.c.b.a" handles the letter twice: once for "localhost" and once for "d.c.b.a". I've done some web searching, but haven't found a solution. Ideas? Thanks! -- Prof Kenneth H Jacker khj at cs.appstate.edu Computer Science Dept www.cs.appstate.edu/~khj Appalachian State Univ Boone, NC 28608 USA From polavarapur at convergent.com Wed Aug 21 23:53:08 2002 From: polavarapur at convergent.com (Raghuveer Polavarapu) Date: Wed, 21 Aug 2002 17:53:08 -0400 Subject: [Mailman-Users] Handling HTML format messages In-Reply-To: Message-ID: Hi guys I am trying to find out how to extend mailman to accept email messages posted in HTML format, because a number of our clients and customers use mail clients that send out email in html format. Currently when a message in html format is posted to the a list, and when I try to look at the archives and look at the message I see all the header information (MIME contents etc) and I do not want this to happen, I just want to install something to strip out this stuff and just post the actual text of the message. COuld some one please help me with this. -----Original Message----- From: mailman-users-admin at python.org [mailto:mailman-users-admin at python.org]On Behalf Of Scott Levine Sent: Wednesday, August 21, 2002 5:44 PM To: Ashley M. Kirchner Cc: Dustin Reiner; mailman-users at python.org Subject: Re: [Mailman-Users] Mailing issue I've had problems with messages vanishing after reboots, too. Mailman puts lock files in "..../mailman/locks/" I erased those, since the process that was creating the need for them was gone, and almost immediately got a flood of my queued messages. --Scott. -- Scott Levine University of New Mexico Computer Science Department levine at cs.unm.edu 505 277 2921 On Wed, 21 Aug 2002, Ashley M. Kirchner wrote: > Dustin Reiner wrote: > > > Since I searched the archives to no avail, I am sending my question to the > > list. Earlier today, sendmail began refusing connections due to high load. > > The load was caused by a mailman python process running and consuming a lot > > of CPU and memory resources (By a lot I mean it fluctuated from 8-90% CPU, > > and 26% of memory). > > Make sure Mailman is not running into an error with your lists and locking > up. Check your ~mailman/logs/error file for any signs of trouble. > > -- > W | I haven't lost my mind; it's backed up on tape somewhere. > +-------------------------------------------------------------------- > Ashley M. Kirchner . 303.442.6410 x130 > IT Director / SysAdmin / WebSmith . 800.441.3873 x130 > Photo Craft Laboratories, Inc. . 3550 Arapahoe Ave. #6 > http://www.pcraft.com ..... . . . Boulder, CO 80303, U.S.A. > > > > > ------------------------------------------------------ > Mailman-Users mailing list > Mailman-Users at python.org > 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 mailing list Mailman-Users at python.org 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/ From dan.mick at sun.com Thu Aug 22 00:24:30 2002 From: dan.mick at sun.com (Dan Mick) Date: Wed, 21 Aug 2002 15:24:30 -0700 (PDT) Subject: [Mailman-Users] turning off digests (2.1 b2) Message-ID: <200208212224.g7LMOaqY025670@utopia.West.Sun.COM> I believe they'll just stop getting messages, as there is now no digest message to send them. > Hi everyone. I am running 2.1 b2 and have a quick question about > digests. I have a low-volume announcement list and some of the members are > tagged as digest subscribers. If I turn off the digest option in the > digests options page will it convert them to individual email status, or > will it somehow hurt or otherwise disable their membership? From vanhorn at whidbey.com Fri Aug 23 02:52:42 2002 From: vanhorn at whidbey.com (G. Armour Van Horn) Date: Thu, 22 Aug 2002 17:52:42 -0700 Subject: [Mailman-Users] Automatically reject - how? References: <200208221643.g7MGht5F015216@bioc09.v19.uthscsa.edu> <4256.155.41.10.1.1030040154.squirrel@webmail.gregwestin.com> Message-ID: <3D65875A.DCEB398A@whidbey.com> Greg, (and other who have said similar things), There's this tiny little problem with that suggestion. From the website link to "Mailman 2.1 info" I find this: Current Version Version (2.1b2, released on 05-May-2002) is the current development release of the next version of Mailman. Although, stable, it should not be used in production environments. Instead, please use the latest stable release. Since manually clearing these messages is hardly a problem for a test site, and according to the developers this version isn't ready for a production site, the upgrade doesn't solve a significant problem. I'd love to take advantage of 2.1, but as one who too-quickly installed 2.0.12 and shut my lists down I'm waiting until a week after the developers consider it ready to run. Van Greg Westin wrote: > I haven't tried this out, but just looking at the settings available, you > should be able to do this without any extra scripts or cron jobs if you > upgrade to 2.1b3. It adds lots of different options, including one that > specifies what to do with messages from non-members (Accept, Hold, Reject, > or Discard). > > Greg > > > > Hi, > > > > I was wondering how I could set up mailman so I am not always required > > to manually delete or reject messages held for approval. I have mailing > > lists set up such that subscribers are allowed to post, non-subscribers > > are not. I monitor who subscribes. If a spammer posts, it should be > > automatically rejected. Now I have to do this manually. Any suggestions > > on how to accomplish this? > > > > Thanks, -Borries > > > > > > ------------------------------------------------------ > > Mailman-Users mailing list > > Mailman-Users at python.org > > 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 mailing list > Mailman-Users at python.org > 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/ -- ---------------------------------------------------------- Sign up now for Quotes of the Day, a handful of quotations on a theme delivered every morning. Enlightenment! Daily, for free! mailto:twisted at whidbey.com?subject=Subscribe_QOTD For web hosting and maintenance, visit Van's home page: http://www.domainvanhorn.com/van/ ---------------------------------------------------------- From wolf at wolfstream.net Fri Aug 23 00:47:09 2002 From: wolf at wolfstream.net (Tom Whiting) Date: Thu, 22 Aug 2002 17:47:09 -0500 Subject: [Mailman-Users] hmm Message-ID: <200208221747.09408.wolf@wolfstream.net> is it just me or, in the beta is mail to list-owner at lmy.domain.com being sent out twice? -- ---------------------------------------------------- TJW: Head tech, Dreamless Realms Mud: http://dreamless.wolfstream.net Snippets http://dreamless.wolfstream.net/ Telnet dreamless.wolfstream.net:9275 The OLC Pages http://olc.wolfstream.net ---------------------------------------------------- From sammons_david at yahoo.com.mx Fri Aug 23 00:43:24 2002 From: sammons_david at yahoo.com.mx (=?iso-8859-1?q?David=20Sammons?=) Date: Thu, 22 Aug 2002 17:43:24 -0500 (CDT) Subject: [Mailman-Users] Help!!! Message-ID: <20020822224324.56089.qmail@web21310.mail.yahoo.com> I?m using the sync_members script to update mailing list, but in some list over 3000 members it doesn?t do nothing, in others mailing list less than 3000 it works fine....i?m using mm 1.2a1....what can i do???? Thanks!!! _________________________________________________________ Do You Yahoo!? La emoci?n e intensidad del deporte en Yahoo! Deportes. http://deportes.yahoo.com.mx From R.Barrett at ftel.co.uk Fri Aug 23 11:11:38 2002 From: R.Barrett at ftel.co.uk (Richard Barrett) Date: Fri, 23 Aug 2002 10:11:38 +0100 Subject: [Mailman-Users] Automatically reject - how? In-Reply-To: <004f01c24a08$d94840a0$5ae9b5ce@quasi1> References: <4256.155.41.10.1.1030040154.squirrel@webmail.gregwestin.com> Message-ID: <5.1.0.14.2.20020823100708.02d2c590@pop.ftel.co.uk> At 14:22 22/08/2002 -0400, Marius Kirschner wrote: >Hmm, that setting (Accept, Hold, Reject, or Discard) is also available >in v2.0.12 under the "Bounce Options". > >---Marius But that is for what do do about bounces not what to do with disallowed postings. > > -----Original Message----- > > From: mailman-users-admin at python.org [mailto:mailman-users- > > admin at python.org] On Behalf Of Greg Westin > > Sent: Thursday, August 22, 2002 2:16 PM > > To: mailman-users at python.org > > Subject: Re: [Mailman-Users] Automatically reject - how? > > > > I haven't tried this out, but just looking at the settings available, >you > > should be able to do this without any extra scripts or cron jobs if >you > > upgrade to 2.1b3. It adds lots of different options, including one >that > > specifies what to do with messages from non-members (Accept, Hold, >Reject, > > or Discard). > > > > Greg > > > > > > > Hi, > > > > > > I was wondering how I could set up mailman so I am not always >required > > > to manually delete or reject messages held for approval. I have >mailing > > > lists set up such that subscribers are allowed to post, >non-subscribers > > > are not. I monitor who subscribes. If a spammer posts, it should be > > > automatically rejected. Now I have to do this manually. Any >suggestions > > > on how to accomplish this? > > > > > > Thanks, -Borries > > > > > > > > > ------------------------------------------------------ > > > Mailman-Users mailing list > > > Mailman-Users at python.org > > > 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 mailing list > > Mailman-Users at python.org > > 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 mailing list >Mailman-Users at python.org >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/ From R.Barrett at ftel.co.uk Fri Aug 23 11:19:27 2002 From: R.Barrett at ftel.co.uk (Richard Barrett) Date: Fri, 23 Aug 2002 10:19:27 +0100 Subject: [Mailman-Users] Automatically reject - how? In-Reply-To: <3D65875A.DCEB398A@whidbey.com> References: <200208221643.g7MGht5F015216@bioc09.v19.uthscsa.edu> <4256.155.41.10.1.1030040154.squirrel@webmail.gregwestin.com> Message-ID: <5.1.0.14.2.20020823101658.02d18440@pop.ftel.co.uk> Your first stop for uptodate Mailman things is http://sourceforge.net/projects/mailman/ At 17:52 22/08/2002 -0700, G. Armour Van Horn wrote: >Greg, (and other who have said similar things), > >There's this tiny little problem with that suggestion. From the website >link to >"Mailman 2.1 info" I find this: > >Current Version > >Version (2.1b2, released on 05-May-2002) is the current development release of >the next version of Mailman. Although, stable, it should not be used in >production environments. Instead, please use the latest stable release. > >Since manually clearing these messages is hardly a problem for a test >site, and >according to the developers this version isn't ready for a production >site, the >upgrade doesn't solve a significant problem. I'd love to take advantage of >2.1, >but as one who too-quickly installed 2.0.12 and shut my lists down I'm waiting >until a week after the developers consider it ready to run. > >Van > >Greg Westin wrote: > > > I haven't tried this out, but just looking at the settings available, you > > should be able to do this without any extra scripts or cron jobs if you > > upgrade to 2.1b3. It adds lots of different options, including one that > > specifies what to do with messages from non-members (Accept, Hold, Reject, > > or Discard). > > > > Greg > > > > > > > Hi, > > > > > > I was wondering how I could set up mailman so I am not always required > > > to manually delete or reject messages held for approval. I have mailing > > > lists set up such that subscribers are allowed to post, non-subscribers > > > are not. I monitor who subscribes. If a spammer posts, it should be > > > automatically rejected. Now I have to do this manually. Any suggestions > > > on how to accomplish this? > > > > > > Thanks, -Borries From greg at gregwestin.com Fri Aug 23 15:58:03 2002 From: greg at gregwestin.com (Greg Westin) Date: Fri, 23 Aug 2002 09:58:03 -0400 (EDT) Subject: [Mailman-Users] Postfix as MTA in 2.1b3 In-Reply-To: <036c01c24906$702e5030$0500a8c0@campus.tue.nl> References: <3183.209.195.180.3.1029911888.squirrel@mirror.3dresearch.com> <036c01c24906$702e5030$0500a8c0@campus.tue.nl> Message-ID: <17227.155.41.10.1.1030111083.squirrel@webmail.gregwestin.com> I didn't receive any response to my post about the web form for adding lists not working, but I'm still wondering what the problem could be. I still have a feeling that it has to do with the fact that the script is running as the cgi-gid, rather than as mailman. When I reinstalled, without any of my old lists or settings, and tried again, it worked. However, once I set MTA to 'Postfix', it failed again, with the key line (I think) being: --- RuntimeError: command failed: /usr/local/bin/postalias /usr/local/mailman/data/aliases (status: 1, Operation not permitted) --- So what is going on here? Does anyone else have Postfix working with Mailman 2.1b3? Could you send me your mm_cfg.py file? This is very frustrating. Thank you, Greg Westin greg at gregwestin.com From Jeremy at carcharias.net Fri Aug 23 22:19:30 2002 From: Jeremy at carcharias.net (Jeremy van Doorn) Date: Fri, 23 Aug 2002 22:19:30 +0200 Subject: [Mailman-Users] Mailman Problem Message-ID: <3D34D2E428FCF1429C1FA73A6A5D69F5026EC2@shark.intra.carcharias.net> Hi everyone, I have a problem running Mailman. I've got the program running for about a month now on a redhat 7.3 system and everything was going fine. Untill now. I had to reboot my system and when it came up, the mailinglist was not functioning anymore. When I try to login to the admin page, I get the page where I can enter the password, but when I enter it, it just hangs ... the bars in the bottom-right of the browser is still moving, but nothing happens. When I enter an incorrect password, I do get an error back indicating that the password was incorrect. E-mails to the mailinglist are also no longer being distributed ... Any help would be greatly appreciated! Thank you! Jeremy van Doorn [ Member of Carcharias Networks ] [ Email : jeremy at carcharias.net ] [ Web : http://www.carcharias.net ] From ashley at pcraft.com Fri Aug 23 22:22:27 2002 From: ashley at pcraft.com (Ashley M. Kirchner) Date: Fri, 23 Aug 2002 14:22:27 -0600 Subject: [Mailman-Users] Mailman Problem References: <3D34D2E428FCF1429C1FA73A6A5D69F5026EC2@shark.intra.carcharias.net> Message-ID: <3D669983.F3739649@pcraft.com> Jeremy van Doorn wrote: > it just hangs > > E-mails to the mailinglist are also no longer being distributed ... You may have a stale lock. Look in ~mailman/locks and remove it. -- W | I haven't lost my mind; it's backed up on tape somewhere. +-------------------------------------------------------------------- Ashley M. Kirchner . 303.442.6410 x130 IT Director / SysAdmin / WebSmith . 800.441.3873 x130 Photo Craft Laboratories, Inc. . 3550 Arapahoe Ave. #6 http://www.pcraft.com ..... . . . Boulder, CO 80303, U.S.A. From Jeremy at carcharias.net Fri Aug 23 23:00:00 2002 From: Jeremy at carcharias.net (Jeremy van Doorn) Date: Fri, 23 Aug 2002 23:00:00 +0200 Subject: [Mailman-Users] Additional info on previous mail Message-ID: <3D34D2E428FCF1429C1FA73A6A5D69F5026EC7@shark.intra.carcharias.net> Here is some more information I just discovered on my problem where mail is no longer being sent and I'm unable to login to the administrative webpage. When I do a strace -f -p " I get the following output (continuously)? I hope this tells you guys a little more.. old_mmap(NULL, 1765376, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x4074d000 munmap(0x408fc000, 1765376) = 0 old_mmap(NULL, 1765376, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x408fc000 munmap(0x4074d000, 1765376) = 0 old_mmap(NULL, 1765376, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x4074d000 munmap(0x408fc000, 1765376) = 0 old_mmap(NULL, 1765376, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x408fc000 munmap(0x4074d000, 1765376) = 0 old_mmap(NULL, 1765376, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x4074d000 munmap(0x408fc000, 1765376) = 0 old_mmap(NULL, 1765376, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x408fc000 munmap(0x4074d000, 1765376) = 0 Also, when I do a ps-ef I see that the qrunner process is taking up a lot of cpu time. I have no idea what to do about this, so please help me! My qrunner logfile is now also filling with these messages! Aug 23 22:55:04 2002 (1417) Could not acquire qrunner lock Aug 23 22:56:02 2002 (1487) Could not acquire qrunner lock Aug 23 22:56:02 2002 (1486) Could not acquire qrunner lock Aug 23 22:57:02 2002 (1496) Could not acquire qrunner lock Aug 23 22:57:03 2002 (1495) Could not acquire qrunner lock Again.... thank you for any help! Jeremy van Doorn [ Member of Carcharias Networks ] [ Email : jeremy at carcharias.net ] [ Web : http://www.carcharias.net ] From ashley at pcraft.com Fri Aug 23 23:10:00 2002 From: ashley at pcraft.com (Ashley M. Kirchner) Date: Fri, 23 Aug 2002 15:10:00 -0600 Subject: [Mailman-Users] Additional info on previous mail References: <3D34D2E428FCF1429C1FA73A6A5D69F5026EC7@shark.intra.carcharias.net> Message-ID: <3D66A4A8.9CE62013@pcraft.com> Jeremy van Doorn wrote: > Aug 23 22:55:04 2002 (1417) Could not acquire qrunner lock You have a (or several) stale lock files. Remove them. -- W | I haven't lost my mind; it's backed up on tape somewhere. +-------------------------------------------------------------------- Ashley M. Kirchner . 303.442.6410 x130 IT Director / SysAdmin / WebSmith . 800.441.3873 x130 Photo Craft Laboratories, Inc. . 3550 Arapahoe Ave. #6 http://www.pcraft.com ..... . . . Boulder, CO 80303, U.S.A. From vkn at kingbarnes.com Fri Aug 23 23:23:07 2002 From: vkn at kingbarnes.com (VKN) Date: Fri, 23 Aug 2002 16:23:07 -0500 Subject: [Mailman-Users] How2 Transfer List In-Reply-To: <20020823203403.27624.99332.Mailman@mail.python.org> References: <20020823203403.27624.99332.Mailman@mail.python.org> Message-ID: Thanx for the welcome to the list. I am sort of a neophyte and will need lots of help to get on board. Please be patient. I am changing servers and would like to know how to transfer my mailman mailing list with 180 subscribers from the current server to the new. location? Valencia Mac user OS 9.2 Eudora 5.1 www.KingBarnes.com From greg at gregwestin.com Fri Aug 23 23:37:49 2002 From: greg at gregwestin.com (Greg Westin) Date: Fri, 23 Aug 2002 17:37:49 -0400 (EDT) Subject: [Mailman-Users] How2 Transfer List In-Reply-To: References: <20020823203403.27624.99332.Mailman@mail.python.org> Message-ID: <55904.140.247.133.60.1030138669.squirrel@webmail.gregwestin.com> Do you have mailman installed on the new server? It seems to me like you could just ditto the entire mailman directory over. Of course, you'd still have to set up other things involved in the mailman install, but that'll get the list and the archives and whatnot. If anyone knows why that wouldn't work, please let us know. Greg Westin greg at gregwestin.com > Thanx for the welcome to the list. > > I am sort of a neophyte and will need lots of help to > get on board. > > Please be patient. > > I am changing servers and would like to know how to transfer > my mailman mailing list with 180 subscribers from the > current server to the new. location? > > Valencia > Mac user > OS 9.2 > Eudora 5.1 > www.KingBarnes.com > > ------------------------------------------------------ > Mailman-Users mailing list > Mailman-Users at python.org > 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/ From vic at vgg.sci.uma.es Sat Aug 24 00:04:52 2002 From: vic at vgg.sci.uma.es (Victoriano Giralt) Date: Sat, 24 Aug 2002 00:04:52 +0200 (CEST) Subject: [Mailman-Users] Postfix as MTA in 2.1b3 In-Reply-To: <17227.155.41.10.1.1030111083.squirrel@webmail.gregwestin.com> References: <3183.209.195.180.3.1029911888.squirrel@mirror.3dresearch.com> <036c01c24906$702e5030$0500a8c0@campus.tue.nl> <17227.155.41.10.1.1030111083.squirrel@webmail.gregwestin.com> Message-ID: <33152.80.103.119.249.1030140292.squirrel@vgg.sci.uma.es> > > --- > RuntimeError: command failed: /usr/local/bin/postalias > /usr/local/mailman/data/aliases (status: 1, Operation not permitted) > --- > > So what is going on here? Does anyone else have Postfix working with > Mailman 2.1b3? Could you send me your mm_cfg.py file? This is very > frustrating. I hit that after installing 2.1b3. It is a permissions problem, but I cant remember the path I took to solove it, please check this set of permissions:/usr/local/mailman/data drwxrwsr-x 2 root mailman 4096 ago 11 18:08 . drwxrwsr-x 20 mailman mailman 4096 ago 11 18:09 .. -rw-r----- 1 root mailman 41 ago 10 17:52 adm.pw -rw-rw---- 1 root mailman 2748 ago 10 18:36 aliases -rw-rw-r-- 1 mailman mailman 12288 ago 10 18:36 aliases.db with this set, I can create lists through the web without problems. -- Victoriano Giralt Systems Manager Central Computing Facility University of Malaga SPAIN From greg at gregwestin.com Sat Aug 24 00:44:11 2002 From: greg at gregwestin.com (Greg Westin) Date: Fri, 23 Aug 2002 18:44:11 -0400 (EDT) Subject: [Mailman-Users] Postfix as MTA in 2.1b3 In-Reply-To: <33152.80.103.119.249.1030140292.squirrel@vgg.sci.uma.es> References: <3183.209.195.180.3.1029911888.squirrel@mirror.3dresearch.com> <036c01c24906$702e5030$0500a8c0@campus.tue.nl> <17227.155.41.10.1.1030111083.squirrel@webmail.gregwestin.com> <33152.80.103.119.249.1030140292.squirrel@vgg.sci.uma.es> Message-ID: <56451.140.247.133.60.1030142651.squirrel@webmail.gregwestin.com> My problems have been solved (at least this one... I hope I didn't mess anything else up) by doing the following: 1. Changing to the permissions Victoriano shows below. I hope those are OK? 2. Chmod'ing the private archives folder to allow group write access. (g+w) I hope this is OK? I think everything's in order now! I wonder why check_perms doesn't check for this sort of thing, though... Thanks for your help, Greg >> >> --- >> RuntimeError: command failed: /usr/local/bin/postalias >> /usr/local/mailman/data/aliases (status: 1, Operation not permitted) >> --- >> >> So what is going on here? Does anyone else have Postfix working with >> Mailman 2.1b3? Could you send me your mm_cfg.py file? This is very >> frustrating. > I hit that after installing 2.1b3. It is a permissions problem, but I > cant remember the path I took to solove it, please check this set of > permissions:/usr/local/mailman/data > > drwxrwsr-x 2 root mailman 4096 ago 11 18:08 . > drwxrwsr-x 20 mailman mailman 4096 ago 11 18:09 .. > -rw-r----- 1 root mailman 41 ago 10 17:52 adm.pw > -rw-rw---- 1 root mailman 2748 ago 10 18:36 aliases > -rw-rw-r-- 1 mailman mailman 12288 ago 10 18:36 aliases.db > > with this set, I can create lists through the web without problems. > > -- > Victoriano Giralt > Systems Manager > Central Computing Facility > University of Malaga > SPAIN From greg at gregwestin.com Sat Aug 24 01:44:42 2002 From: greg at gregwestin.com (Greg Westin) Date: Fri, 23 Aug 2002 19:44:42 -0400 (EDT) Subject: [Mailman-Users] Postfix-style virtual domains Message-ID: <56664.140.247.133.60.1030146282.squirrel@webmail.gregwestin.com> I'm trying to set up mailman with Postfix-style virtual domains, but can't get it working. Rather, Mailman is working fine with the first domain, but the others don't write their aliases to data/virtual-mailman, but to data/aliases. Therefore, I can't create, for example, a 'test' list on both lists.default.dom and on lists.dom2.ain. The stuff in my mm_cfg file is below. I originally tried it without using VIRTUAL_HOST or VIRTUAL_HOSTS or add_virtualhost for the non-default domains, which didn't work. Adding either VIRTUAL_HOST or VIRTUAL_HOSTS entries caused errors - in the case of VIRTUAL_HOSTS, a low-level error that couldn't generate a traceback. In my Postfix 'virtual' file, I have both domx.ain and lists.domx.ain defined. Mail to users I've defined at domx.ain (or to non-defined users, because I set up an '@domx.ain' entry for each) is delivered properly, while mail to @lists.domx.ain addresses is not, because I haven't created any entries for such addressess (I intend them only to be for mailing lists). Please let me know if you've set up virtual domains in Postfix, and if you can tell me how to do it. Oh yes, and no data/virtual-mailman file existed on my computer, so I created one and gave it the same permissions as data/aliases. Thank you again, Greg Westin greg at gregwestin.com --- DEFAULT_EMAIL_HOST = 'default.dom' DEFAULT_URL_HOST = 'lists.default.dom' add_virtualhost(DEFAULT_URL_HOST,DEFAULT_EMAIL_HOST) DEFAULT_URL_PATTERN = 'http://%s/mailman/' DEFAULT_HOST_NAME = DEFAULT_EMAIL_HOST DEFAULT_URL = DEFAULT_URL_PATTERN % DEFAULT_URL_HOST MAILMAN_OWNER = 'mailman-owner@%s' % DEFAULT_HOST_NAME DEFAULT_ARCHIVE_PRIVATE = 0 DEFAULT_ADMIN_IMMED_NOTIFY = 0 DEFAULT_ADMIN_NOTIFY_MCHANGES = 1 DEFAULT_SEND_REMINDERS = 0 DEFAULT_PRIVATE_ROSTER = 1 MTA = 'Postfix' POSTFIX_STYLE_VIRTUAL_DOMAINS = ['lists.dom1.ain', 'lists.dom2.ain'] POSTFIX_ALIAS_CMD = '/usr/local/bin/postalias' POSTFIX_MAP_CMD = '/usr/local/bin/postmap' #VIRTUAL_HOSTS = {'lists.dom1.ain', 'lists.dom2.ain'} add_virtualhost('lists.dom1.ain') #VIRTUAL_HOST['lists.dom1.ain'] add_virtualhost('lists.dom2.ain') #VIRTUAL_HOST['lists.dom2.ain'] --- From vkn at kingbarnes.com Sat Aug 24 02:46:31 2002 From: vkn at kingbarnes.com (VKN) Date: Fri, 23 Aug 2002 19:46:31 -0500 Subject: [Mailman-Users] How2 Transfer List Message-ID: Thanx for your response. Yes mailman is already installed on the new server. At 5:37 PM -0400 8/23/02, Greg Westin wrote: Do you have mailman installed on the new server? It seems to me like you could just ditto the entire mailman directory over. Of course, you'd still have to set up other things involved in the mailman install, but that'll get the list and the archives and whatnot. If anyone knows why that wouldn't work, please let us know. Greg Westin greg at gregwestin.com Thanx for the welcome to the list. I am sort of a neophyte and will need lots of help to get on board. Please be patient. I am changing servers and would like to know how to transfer my mailman mailing list with 180 subscribers from the current server to the new. location? Valencia Mac user OS 9.2 Eudora 5.1 www.KingBarnes.com From greg at gregwestin.com Sat Aug 24 02:49:29 2002 From: greg at gregwestin.com (Greg Westin) Date: Fri, 23 Aug 2002 20:49:29 -0400 (EDT) Subject: [Mailman-Users] How2 Transfer List In-Reply-To: References: <20020823203403.27624.99332.Mailman@mail.python.org> <55904.140.247.133.60.1030138669.squirrel@webmail.gregwestin.com> Message-ID: <56824.140.247.133.60.1030150169.squirrel@webmail.gregwestin.com> Ok, well, if it's already installed, then you don't want to overwrite it. Shouldn't you just be able to copy the archives for that particular list and the folder from within the 'lists' folder, and then add the appropriate aliases to the existing aliases file? (I don't remember if 2.0.x has genaliases, but that should work in 2.1) Greg > Thanx for your response. > Yes mailman is already installed on the new server. > > At 5:37 PM -0400 8/23/02, Greg Westin wrote: > > Do you have mailman installed on the new server? It seems to me like > you could just ditto the entire mailman directory over. Of course, > you'd still have to set up other things involved in the mailman install, > but that'll get the list and the archives and whatnot. > > If anyone knows why that wouldn't work, please let us know. > > Greg Westin > greg at gregwestin.com > > > Thanx for the welcome to the list. > > I am sort of a neophyte and will need lots of help to > get on board. > > Please be patient. > > I am changing servers and would like to know how to transfer > my mailman mailing list with 180 subscribers from the > current server to the new. location? > > Valencia > Mac user > OS 9.2 > Eudora 5.1 > www.KingBarnes.com From greg at gregwestin.com Sat Aug 24 04:38:03 2002 From: greg at gregwestin.com (Greg Westin) Date: Fri, 23 Aug 2002 22:38:03 -0400 (EDT) Subject: [Mailman-Users] How2 Transfer List In-Reply-To: <56824.140.247.133.60.1030150169.squirrel@webmail.gregwestin.com> References: <20020823203403.27624.99332.Mailman@mail.python.org> <55904.140.247.133.60.1030138669.squirrel@webmail.gregwestin.com> <56824.140.247.133.60.1030150169.squirrel@webmail.gregwestin.com> Message-ID: <57044.140.247.133.60.1030156683.squirrel@webmail.gregwestin.com> A related link I found in the archives: http://www.mail-archive.com/mailman-users at python.org/msg11529.html > Ok, well, if it's already installed, then you don't want to overwrite > it. Shouldn't you just be able to copy the archives for that particular > list and the folder from within the 'lists' folder, and then add the > appropriate aliases to the existing aliases file? (I don't remember if > 2.0.x has genaliases, but that should work in 2.1) > > Greg > > >> Thanx for your response. >> Yes mailman is already installed on the new server. >> >> At 5:37 PM -0400 8/23/02, Greg Westin wrote: >> >> Do you have mailman installed on the new server? It seems to me like >> you could just ditto the entire mailman directory over. Of course, >> you'd still have to set up other things involved in the mailman >> install, but that'll get the list and the archives and whatnot. >> >> If anyone knows why that wouldn't work, please let us know. >> >> Greg Westin >> greg at gregwestin.com >> >> >> Thanx for the welcome to the list. >> >> I am sort of a neophyte and will need lots of help to >> get on board. >> >> Please be patient. >> >> I am changing servers and would like to know how to transfer >> my mailman mailing list with 180 subscribers from the >> current server to the new. location? >> >> Valencia >> Mac user >> OS 9.2 >> Eudora 5.1 >> www.KingBarnes.com > > > > > ------------------------------------------------------ > Mailman-Users mailing list > Mailman-Users at python.org > 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/ From greg at gregwestin.com Sat Aug 24 04:55:08 2002 From: greg at gregwestin.com (Greg Westin) Date: Fri, 23 Aug 2002 22:55:08 -0400 (EDT) Subject: [Mailman-Users] Postfix-style virtual domains In-Reply-To: <56664.140.247.133.60.1030146282.squirrel@webmail.gregwestin.com> References: <56664.140.247.133.60.1030146282.squirrel@webmail.gregwestin.com> Message-ID: <57138.140.247.133.60.1030157708.squirrel@webmail.gregwestin.com> Looking through the archives, I can't find anyone that has detailed a way to create two lists with the same name on two Postfix virtual domains. Ok, I probably wouldn't need that, anyways, but I still have the problem of my new lists not being written to virtual-mailman. I tried both via the web interface and using newlist, naming the list test at lists.virtualdom.ain Can anyone direct me to information about this? Does anyone have Postfix virtual domains set up properly, to tell me how to do it? Thanks, Greg Westin greg at gregwestin.com > I'm trying to set up mailman with Postfix-style virtual domains, but > can't get it working. Rather, Mailman is working fine with the first > domain, but the others don't write their aliases to > data/virtual-mailman, but to data/aliases. Therefore, I can't create, > for example, a 'test' list on both lists.default.dom and on > lists.dom2.ain. The stuff in my mm_cfg file is below. I originally > tried it without using VIRTUAL_HOST or > VIRTUAL_HOSTS or add_virtualhost for the non-default domains, which > didn't work. Adding either VIRTUAL_HOST or VIRTUAL_HOSTS entries caused > errors - in the case of VIRTUAL_HOSTS, a low-level error that couldn't > generate a traceback. > > In my Postfix 'virtual' file, I have both domx.ain and lists.domx.ain > defined. Mail to users I've defined at domx.ain (or to non-defined > users, because I set up an '@domx.ain' entry for each) is delivered > properly, while mail to @lists.domx.ain addresses is not, because I > haven't created any entries for such addressess (I intend them only to > be for mailing lists). > > Please let me know if you've set up virtual domains in Postfix, and if > you can tell me how to do it. Oh yes, and no data/virtual-mailman file > existed on my computer, so I created one and gave it the same > permissions as data/aliases. > > Thank you again, > > Greg Westin > greg at gregwestin.com > > --- > DEFAULT_EMAIL_HOST = 'default.dom' > DEFAULT_URL_HOST = 'lists.default.dom' > add_virtualhost(DEFAULT_URL_HOST,DEFAULT_EMAIL_HOST) > DEFAULT_URL_PATTERN = 'http://%s/mailman/' > DEFAULT_HOST_NAME = DEFAULT_EMAIL_HOST > DEFAULT_URL = DEFAULT_URL_PATTERN % DEFAULT_URL_HOST > MAILMAN_OWNER = 'mailman-owner@%s' % DEFAULT_HOST_NAME > DEFAULT_ARCHIVE_PRIVATE = 0 > DEFAULT_ADMIN_IMMED_NOTIFY = 0 > DEFAULT_ADMIN_NOTIFY_MCHANGES = 1 > DEFAULT_SEND_REMINDERS = 0 > DEFAULT_PRIVATE_ROSTER = 1 > MTA = 'Postfix' > POSTFIX_STYLE_VIRTUAL_DOMAINS = ['lists.dom1.ain', 'lists.dom2.ain'] > POSTFIX_ALIAS_CMD = '/usr/local/bin/postalias' > POSTFIX_MAP_CMD = '/usr/local/bin/postmap' > > #VIRTUAL_HOSTS = {'lists.dom1.ain', 'lists.dom2.ain'} > add_virtualhost('lists.dom1.ain') > #VIRTUAL_HOST['lists.dom1.ain'] > add_virtualhost('lists.dom2.ain') > #VIRTUAL_HOST['lists.dom2.ain'] > --- > > > > ------------------------------------------------------ > Mailman-Users mailing list > Mailman-Users at python.org > 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/ From wash at wananchi.com Sat Aug 24 09:01:54 2002 From: wash at wananchi.com (Odhiambo Washington) Date: Sat, 24 Aug 2002 10:01:54 +0300 Subject: [Mailman-Users] Postfix-style virtual domains In-Reply-To: <57138.140.247.133.60.1030157708.squirrel@webmail.gregwestin.com> References: <56664.140.247.133.60.1030146282.squirrel@webmail.gregwestin.com> <57138.140.247.133.60.1030157708.squirrel@webmail.gregwestin.com> Message-ID: <20020824070154.GE75474@ns2.wananchi.com> * Greg Westin [20020824 05:56]: wrote: > Looking through the archives, I can't find anyone that has detailed a way > to create two lists with the same name on two Postfix virtual domains. > Ok, I probably wouldn't need that, anyways, but I still have the problem > of my new lists not being written to virtual-mailman. I tried both via > the web interface and using newlist, naming the list > test at lists.virtualdom.ain > > Can anyone direct me to information about this? Does anyone have Postfix > virtual domains set up properly, to tell me how to do it? Unrelated though, I was looking at a situation like yours but with Exim. I haven't pursued it to completion. In fact I haven't even started, but I did finf the following notes by Barry which I hope can point you in the right direction: http://www.zope.org/Members/bwarsaw/MailmanDesignNotes/VirtualHosting It would (IMO) appear that the setup would be a lot easier if you virtualised everything, even your primary domain, because then everything is at the same level. cheers - wash +----------------------------------+-----------------------------------------+ Odhiambo Washington, wash at wananchi.com . WANANCHI ONLINE LTD (Nairobi, KE) | http://ns2.wananchi.com/~wash/ . 1ere Etage, Loita Hse, Loita St., | GSM: (+254) 722 743 223 . # 10286, 00100 NAIROBI | +---------------------------------+------------------------------------------+ "Oh My God! They killed init! You Bastards!" --from a /. post From markgill at GreatBooks.Org Sat Aug 24 15:35:36 2002 From: markgill at GreatBooks.Org (Mark Gillingham) Date: Sat, 24 Aug 2002 08:35:36 -0500 Subject: [Mailman-Users] Number of members script Message-ID: The admin membership web screen notes the total number of members in a list. How can I access the script the calculates this total for my own use? I've looked through some of Mailman directories looking for "scripts" but have not found what I need. Ideas? Mark From posel at inf.fu-berlin.de Sat Aug 24 15:48:09 2002 From: posel at inf.fu-berlin.de (Johannes Posel) Date: Sat, 24 Aug 2002 15:48:09 +0200 Subject: [Mailman-Users] Error in *eMail* rejecting a moderation request? Message-ID: <18515208879.20020824154809@inf.fu-berlin.de> Dear Mailman-users, I'm running Mailman 2.1b3, and it works fine after a few install headaches ;) My MTA is Exim v3.36, and I've set it up according to README.EXIM. Now, a list moderator got an approval request[1] for a message held in the mod queue, which had inside these instructions as well[2]. The subject was "confirm ..." with some sort of code in it. He wanted to try it, but got only an error back: > The results of your email command are provided below. Attached is your > original message. > > - Results: > Invalid confirmation string. Note that confirmation strings expire > approximately 3 days after the initial subscription request. If your > confirmation has expired, please try to re-submit your original request or > message. > > - Unprocessed: > > If you reply to this message, keeping the Subject: header intact, > > Mailman will discard the held message. Do this if the message is > > spam. If you reply to this message and include an Approved: header > > with the list password in it, the message will be approved for posting > > to the list. The Approved: header can also appear in the first line > > of the body of the reply. > - Done. Is this some kind of bug or error in my setup? As he rightly points out, if Mailman provides him with an eMail based moderation, he'd really want to use it. Thanks for any input! Cheers, Johannes mailto:posel at inf.fu-berlin.de [1] As list administrator, your authorization is requested for the following mailing list posting: List: Cafe at xyz From: somebody at someplace.tld Subject: Hi Reason: Posts by member are currently quarantined for moderation At your convenience, visit: http://stromgrade.its-toasted.org/mailman/admindb/cafe to approve or deny the request. [2] If you reply to this message, keeping the Subject: header intact, Mailman will discard the held message. Do this if the message is spam. If you reply to this message and include an Approved: header with the list password in it, the message will be approved for posting to the list. The Approved: header can also appear in the first line of the body of the reply. From wash at wananchi.com Sat Aug 24 16:29:22 2002 From: wash at wananchi.com (Odhiambo Washington) Date: Sat, 24 Aug 2002 17:29:22 +0300 Subject: [Mailman-Users] mailman on multiple machines In-Reply-To: References: Message-ID: <20020824142922.GB3811@ns2.wananchi.com> * Evan N McNabb [20020821 08:27]: wrote: > > We've been using mailman for quite some time and it has worked very well. > Just a question out of curiosity, is it possible to have the web > interface on one machine and the back-end scripts and sendmail on another? Are you thinking NFS and it's security issues?? -Wash -- Odhiambo Washington "The box said 'Requires Wananchi Online Ltd. www.wananchi.com Windows 95, NT, or better,' Tel: +254 2 313985-9 +254 2 313922 so I installed FreeBSD." GSM: +254 72 743223 +254 733 744121 This sig is McQ! :-) "I'm not under the alkafluence of inkahol that some thinkle peep I am. It's just the drunker I sit here the longer I get." From deanna at freeshell.org Sat Aug 24 17:04:22 2002 From: deanna at freeshell.org (Deanna Phillips) Date: Sat, 24 Aug 2002 15:04:22 +0000 Subject: [Mailman-Users] Re: Number of members script References: Message-ID: "Mark Gillingham" writes: > The admin membership web screen notes the total number of members in a > list. How can I access the script the calculates this total for my own > use? I've looked through some of Mailman directories looking for > "scripts" but have not found what I need. Ideas? You could use the list_members program, which is located in the bin/ directory of your Mailman installation. Most of the programs in this directory are python scripts that you can open up in a text editor and investigate. Something like: $ /home/mailman/bin/list_members mylist | wc -l Will give you the total members in a list called 'mylist'. -- deanna From mostro at mac.com Sun Aug 25 04:16:06 2002 From: mostro at mac.com (Jose Antonio Lopez Arquelladas) Date: Sun, 25 Aug 2002 04:16:06 +0200 Subject: [Mailman-Users] Sendmail error Message-ID: <9CDCC6B4-B7D0-11D6-A007-000393462BB8@mac.com> i do that---> "root# bin/check_perms -f" and I get this!!: Traceback (most recent call last): File "bin/check_perms", line 331, in ? checkmta() File "bin/check_perms", line 266, in checkmta __import__(modname) ImportError: No module named sendmail :(((. What I can do???. Thank you in advance. From david at gitman.net Sun Aug 25 05:34:08 2002 From: david at gitman.net (David Gitman) Date: Sat, 24 Aug 2002 23:34:08 -0400 Subject: [Mailman-Users] Error after RPM upgrade Message-ID: <004b01c24be8$455cf110$1401a8c0@ack> I'm receiving the following error after The Red Hat Updater upgraded Mailman to the 2.0.13 RPM. Any ideas on why? [-d] -----Original Message----- From: Mail Delivery Subsystem [mailto:MAILER-DAEMON at syn.gitman.net] Sent: Saturday, August 24, 2002 6:01 PM To: postmaster at syn.gitman.net Subject: Postmaster notify: see transcript for details The original message was received at Sat, 24 Aug 2002 22:01:08 GMT from localhost with id g7OM18L03259 ----- The following addresses had permanent fatal errors ----- "|/var/mailman/mail/wrapper mailowner Workhouse-publicity" (reason: 1) (expanded from: ) ----- Transcript of session follows ----- Mailman error: mailowner got bad listname: Workhouse-publicity 554 5.3.0 unknown mailer error 1 -------------- next part -------------- A non-text attachment was scrubbed... Name: ATT00066.txt Type: text/rfc822-headers Size: 568 bytes Desc: not available Url : http://mail.python.org/pipermail/mailman-users/attachments/20020824/962e158c/attachment.bin From timte878 at student.liu.se Sun Aug 25 23:52:05 2002 From: timte878 at student.liu.se (=?windows-1252?Q?Tim_Terleg=E5rd?=) Date: Sun, 25 Aug 2002 23:52:05 +0200 Subject: [Mailman-Users] Permission problems Message-ID: <4adfa4e5eb.4e5eb4adfa@student.liu.se> Hi! I've got a Mailman problem. Surprised? :) After a reboot the mailing-lists stopped working. Mailing a specific person is still working though. I use exim and Mailman. Let's start from the beginning. This line is in /etc/inetd.conf: smtp stream tcp nowait mail /usr/sbin/exim exim -bs When I send a mail to selinux-drift mailing-list I get this in /var/log/exim/mainlog 2002-08-25 22:50:24 17j4L2-0007Bo-00 <= timte878 at student.liu.se H=igloo.df.lth.se [194.47.250.47] U=root P=esmtp S=1243 id=399a03e0aa.3e0aa399a0 at student.liu.se 2002-08-25 22:50:26 17j4L2-0007Bo-00 => |/home/mailman/mail/wrapper post selinux-drift D=system_aliases T=address_pipe 2002-08-25 22:50:26 17j4L2-0007Bo-00 Completed I don't know what should be here, but it seems to be ok. I now assume that Mailman got the mail that it's supposed to forward to everyone on the list. Right? The mailman configuration is: selinux-drift: "|/home/mailman/mail/wrapper post selinux-drift" /home/mailman/bin/check_perms returns "No problems found" The mailman logs /home/mailman/logs/qrunner: Aug 25 13:43:03 2002 (13379) Could not acquire qrunner lock /home/mailman/logs/post shows all sendings that succeeded. There's no entry from Aug 21. /home/mailman/logs/bounce shows no entry after Aug 18. The most interesting is /home/mailman/logs/error. I attached it. The last line says: IOError: [Errno 13] Permission denied: '/home/mailman/qfiles/482cxxxxxxxxxxx.db' Seems there's something wrong with the permissions. $ ls -ld qfiles drwxrwsr-x 2 root mailman 28672 Aug 25 23:29 qfiles/ In the qfiles directory every .db and .msg file has: -rw-rw-r-- 1 list mailman Anyone have any clue what's wrong here? Cheers, Tim -------------- next part -------------- A non-text attachment was scrubbed... Name: error Type: application/octet-stream Size: 2202 bytes Desc: not available Url : http://mail.python.org/pipermail/mailman-users/attachments/20020825/6e1d4093/attachment.obj From mir at soartech.com Mon Aug 26 16:39:04 2002 From: mir at soartech.com (David Mir) Date: Mon, 26 Aug 2002 10:39:04 -0400 Subject: [Mailman-Users] Archiving? Message-ID: <200208261039.04008.mir@soartech.com> I'm using Mailman on RH7.3 Everything seems to work great , except archiving. No matter what the settings (i.e. daily, weekly, monthly) it never seems to archive just gives the "raw" output! Am I missing something? Could some one tell me where to look for errors if there are any(pipermail errors somewhere else?) Am I suppose to set-up some sort of cron job, I installed Mailman(mailman-2.0.11-1) via RPM. I tried searching for archiving but couldn't really find what I was looking for, archiving gives pretty broad results. Thanks -- David Mir System Administrator Soar Technology, Inc. 3600 Green Ct, Ste 600 Ann Arbor, MI 48105-2588 734-327-8000 ext. 222 734-913-8537 (Fax) www.soartech.com mir at soartech.com From support at iquest.ucsb.edu Mon Aug 26 17:19:12 2002 From: support at iquest.ucsb.edu (Support) Date: Mon, 26 Aug 2002 08:19:12 -0700 Subject: [Mailman-Users] no subscription confirmation response Message-ID: <001401c24d13$eee33420$800f6f80@iquest.ucsb.edu> hi, I configured mailman to use gid 12 (mail) since it would not let me do it with gid 0 (root) Everything goes well until I reply to the 1st confirmation > I check the mailman logs and nothing there helps however I look at the > sendmail logs and I get this. > > > Aug 26 05:23:11 cvd-bs3-8 sendmail[12116]: g7QCN9m12114: > to=, delay=00:00:02, xdelay=00:00:02, > mailer=esmtp, pri=139793, relay=mailin-03.mx.netscape.net. > [64.12.137.249], dsn=2.0.0, stat=Sent (OK) > Aug 26 05:23:38 cvd-bs3-8 sendmail[12119]: g7QCNbm12119: > from=, size=1883, class=0, nrcpts=1, > msgid=<7C6EED2A.10449403.001611A6 at netscape.net>, proto=ESMTP, > daemon=MTA, relay=imo-d03.mx.aol.com [205.188.157.35] > Aug 26 05:23:38 cvd-bs3-8 sendmail[12120]: g7QCNbm12119: > to="|/home/mailman/mail/wrapper mailcmd testlist", > ctladdr= (8/0), delay=00:00:00, > xdelay=00:00:00, mailer=prog, pri=31196, dsn=2.0.0, stat=Sent > > ###---------------------------------- > this is what is what's in my alias file > > mailman: root > mail-owner: mailman > > > ## testlist mailing list > ## created: 22.Aug.02 mailman > testlist: "|/home/mailman/mail/wrapper post testlist" > testlist-admin: "|/home/mailman/mail/wrapper mailowner testlist" > testlist-request: "|/home/mailman/mail/wrapper mailcmd testlist" > testlist-owner: testlist-admin > > ###-------------------------------- > This is what's in my httpd.conf file (apache_1.3.26) > > > Alias /pipermail/ "/home/mailman/archives/public/" > > > Options FollowSymLinks AllowOverride None Order allow,deny Allow from all > ScriptAlias /mailman/ "/home/mailman/cgi-bin/" > > > Options None > AllowOverride None > Order allow,deny > Allow from all > > > ###--------------------- > > This is the symlink in /etc/smrsh > > lrwxrwxrwx 1 root root 26 Aug 22 15:21 wrapper -> > /home/mailman/mail/wrapper > > ##--------------------- > > > from the sendmail logs it seems that the testlist-request alias is not > resolving or something. Can anyone tell me what's going wrong here. Do > i have all other configurations done > correctly?? > > thanx, > > PS yes I know I shouldn't post real ip's and such but Im too lazy to > change them. From john at userfrenzy.com Mon Aug 26 17:24:22 2002 From: john at userfrenzy.com (John Handelaar) Date: Mon, 26 Aug 2002 16:24:22 +0100 Subject: [Mailman-Users] Archiving? In-Reply-To: <200208261039.04008.mir@soartech.com> Message-ID: % -----Original Message----- % From: mailman-users-admin at python.org % [mailto:mailman-users-admin at python.org]On Behalf Of David Mir % Sent: 26 August 2002 15:39 % To: mailman-users at python.org % Subject: [Mailman-Users] Archiving? % % I'm using Mailman on RH7.3 Everything seems to work great , % except archiving. % No matter what the settings (i.e. daily, weekly, monthly) it % never seems to % archive just gives the "raw" output! Am I missing something? Possibly, possibly not. % Could some one % tell me where to look for errors if there are any(pipermail % errors somewhere % else?) The error log is in $prefix/logs - if you're fortunate, something might turn up there. If you're using SpamAssasin, apparently it does something to the mail headers - search for it in the archives for more info. Try su'ing to the mailman user and execute $prefix/bin/arch listname; perhaps running it from the command line will return an error which isn't showing up in the logs. And obviously check your permissions. After all of that, it might not work. I'm one of about 30 people on this list who have tried to get to the bottom of the fact that sometimes, and without generating any errors at all, for some people it just doesn't bloody work. And no bugger has any idea why not. Although the failure to log an error when pipermail fails is surely quite an ugly little bug. ------------------------------------------ John Handelaar T +44 20 8933 1494 M +44 7930 681789 F +44 870 169 7657 E john at userfrenzy.com ------------------------------------------ From dreamboy at aros.net Mon Aug 26 18:03:36 2002 From: dreamboy at aros.net (Devin Atencio) Date: Mon, 26 Aug 2002 10:03:36 -0600 Subject: [Mailman-Users] Fwd: Adding 1 user to a list via command line? Message-ID: <200208261003.36316.dreamboy@aros.net> I can't seem to figure out the correct syntax to add 1 e-mail address to a list from the command line? /home/maiman/bin/add_members -n - -w n test devin at bzzzz.com any help with the correct syntax? From rhorer at swbell.net Mon Aug 26 18:37:47 2002 From: rhorer at swbell.net (Kyle Rhorer) Date: Mon, 26 Aug 2002 11:37:47 -0500 Subject: [Mailman-Users] Fwd: Adding 1 user to a list via command line? In-Reply-To: <200208261003.36316.dreamboy@aros.net> References: <200208261003.36316.dreamboy@aros.net> Message-ID: <200208261137.47237.rhorer@swbell.net> On Monday 26 August 2002 11:03, Devin Atencio wrote: > I can't seem to figure out the correct syntax to add 1 e-mail address > to a list from the command line? > > /home/maiman/bin/add_members -n - -w n test devin at bzzzz.com > > any help with the correct syntax? try: echo devin at bzzzz.com | bin/add_members -n - -w n test From mailman at comnets.rwth-aachen.de Mon Aug 26 19:16:54 2002 From: mailman at comnets.rwth-aachen.de (Mailman Administrator) Date: Mon, 26 Aug 2002 19:16:54 +0200 (MET DST) Subject: [Mailman-Users] How to reconstruct MIME Attachments Message-ID: Hi, subscribers of my mailing lists keep asking me how they can download attached files from messages that are in the archives or reconstruct Attachments from the daily batches they receive. Since most of them seemed rather unexperienced (just as I am), could somebody point out an easy way to decode the MIME-attachments from the Archive pages... Or can I change something in the Preferences to make their lives easier? Thanks for help. Regards, Ralf From kenspin at mwt.net Mon Aug 26 19:41:45 2002 From: kenspin at mwt.net (Ken Grunke) Date: Mon, 26 Aug 2002 12:41:45 -0500 Subject: [Mailman-Users] additional forms in signup Message-ID: <3D6A684B.A64CB5FB@mwt.net> I have approval required for new subscriptions to my list, and I manually send a message to the requester asking for some basic info about them before approving. Just want to keep spammers to an absolute minimum. Using the "Edit the HTML for the public list pages" feature, can I add additional forms in the info page for my list, to ask for the name and some basic info on the person requesting a subscription, besides just the email and password? And have it mailed to me as listadmin? I'm on a shared hosting environment, and don't have access to the Mailman application. Thanks, Ken Grunke http://www.crwoodturner.com From dluu at iawmd.com Mon Aug 26 19:58:07 2002 From: dluu at iawmd.com (David Luu) Date: Mon, 26 Aug 2002 10:58:07 -0700 (PDT) Subject: [Mailman-Users] Resetting list admin password if list admin forgot password Message-ID: <20020826175807.3F3183961@sitemail.everyone.net> An embedded and charset-unspecified text was scrubbed... Name: not available Url: http://mail.python.org/pipermail/mailman-users/attachments/20020826/d853831c/attachment.asc From kachel at muenster.de Mon Aug 26 20:03:32 2002 From: kachel at muenster.de (Markus Kachel) Date: Mon, 26 Aug 2002 20:03:32 +0200 Subject: [Mailman-Users] Resetting list admin password if list admin forgot password In-Reply-To: <20020826175807.3F3183961@sitemail.everyone.net> References: <20020826175807.3F3183961@sitemail.everyone.net> Message-ID: <32077046.20020826200332@muenster.de> Hello David, On Monday, August 26, 2002, You wrote to subject: [Mailman-Users] Resetting list admin password if list admin forgot password > Is there an easy way to overide a list admin password and reset it > to a default password if the admin forgets the password? Changing > the password by finding the password within the program scripts > would be quite a bother. It is quite easy. You can login to every list admin interface with the systems admin passwort. You will find about this topic in the FAQ: http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq03.008.htp Bye Markus -- E-Mail: kachel at muenster.de Homepage: http://www.kachelonline.de From ashley at pcraft.com Mon Aug 26 20:09:40 2002 From: ashley at pcraft.com (Ashley M. Kirchner) Date: Mon, 26 Aug 2002 12:09:40 -0600 Subject: [Mailman-Users] Resetting list admin password if list admin forgot password References: <20020826175807.3F3183961@sitemail.everyone.net> Message-ID: <3D6A6EE4.457828EA@pcraft.com> David Luu wrote: > Is there an easy way to overide a list admin password and reset it to a default password if the admin forgets the password? Use the site admin password to log in and change the password. -- W | I haven't lost my mind; it's backed up on tape somewhere. +-------------------------------------------------------------------- Ashley M. Kirchner . 303.442.6410 x130 IT Director / SysAdmin / WebSmith . 800.441.3873 x130 Photo Craft Laboratories, Inc. . 3550 Arapahoe Ave. #6 http://www.pcraft.com ..... . . . Boulder, CO 80303, U.S.A. From greg at gregwestin.com Mon Aug 26 20:07:30 2002 From: greg at gregwestin.com (Greg Westin) Date: Mon, 26 Aug 2002 14:07:30 -0400 (EDT) Subject: [Mailman-Users] Resetting list admin password if list admin forgot password In-Reply-To: <20020826175807.3F3183961@sitemail.everyone.net> References: <20020826175807.3F3183961@sitemail.everyone.net> Message-ID: <33072.155.41.10.1.1030385250.squirrel@webmail.gregwestin.com> Dear David, The site admin can always change the passwords for any given list using the site admin password. If you don't know what this is, read the documentation, or just run the 'bin/mmsitepass' script in the mailman directory. This password allows you to access any of the lists on the site, and thus you can reset any given password. If you forget the site admin password, you can always just re-run mmsitepass. As for your comments about moderators, that functionality is on its way. It is already available in Mailman 2.1, but that version is still in beta and not recommended for production environments. Hope this helped, Greg Westin greg at gregwestin.com > Hi, > > Is there an easy way to overide a list admin password and reset it to a > default password if the admin forgets the password? Changing the > password by finding the password within the program scripts would be > quite a bother. > > Would be nice if mailman has admin/moderator feature like in forums > where moderator has most of the important features of admin but admin is > the top guy. So admin has final control over things. > > We want to give users admin access but need to be able to access admin > functions in case user forgets password. Like resetting password in > Linux. Any help is appreciated. > > David > > _____________________________________________________________ > IQSeek - The Smart Way to Search > > _____________________________________________________________ > Promote your group and strengthen ties to your members with > email at yourgroup.org by Everyone.net http://www.everyone.net/?btn=tag > > ------------------------------------------------------ > Mailman-Users mailing list > Mailman-Users at python.org > 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/ From dluu at iawmd.com Mon Aug 26 21:48:14 2002 From: dluu at iawmd.com (David Luu) Date: Mon, 26 Aug 2002 12:48:14 -0700 (PDT) Subject: [Mailman-Users] how to mass unsubscribe members Message-ID: <20020826194814.715B73951@sitemail.everyone.net> An embedded and charset-unspecified text was scrubbed... Name: not available Url: http://mail.python.org/pipermail/mailman-users/attachments/20020826/bc8806c5/attachment.pot From greg at gregwestin.com Mon Aug 26 21:55:11 2002 From: greg at gregwestin.com (Greg Westin) Date: Mon, 26 Aug 2002 15:55:11 -0400 (EDT) Subject: [Mailman-Users] how to mass unsubscribe members In-Reply-To: <20020826194814.715B73951@sitemail.everyone.net> References: <20020826194814.715B73951@sitemail.everyone.net> Message-ID: <1561.155.41.10.1.1030391711.squirrel@webmail.gregwestin.com> Dear David, This feature is on its way... it is available in the 2.1 betas, but these are not recommended for production environments. Greg Westin greg at gregwestin.com > Hi, > > I know there is a mass subscribe option in membership management to > subscribe people. Is there also a way to mass unsubscribe these people? > > David > > _____________________________________________________________ > IQSeek - The Smart Way to Search > > _____________________________________________________________ > Promote your group and strengthen ties to your members with > email at yourgroup.org by Everyone.net http://www.everyone.net/?btn=tag > > ------------------------------------------------------ > Mailman-Users mailing list > Mailman-Users at python.org > 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/ From listmail at gearyweb.com Mon Aug 26 22:32:59 2002 From: listmail at gearyweb.com (Michael Geary) Date: Mon, 26 Aug 2002 14:32:59 -0600 Subject: [Mailman-Users] web server user conflict Message-ID: <02F545C2-B933-11D6-A018-003065B85DAA@gearyweb.com> Hi folks, I sense that this may be a FAQ, but I can't find a clear source of information about it. I am running mailman with Postfix and Apache. Everything seems to be okay. I have created a user and group called "mailman" and changed the ownership of everything in the main mailman director (/usr/local/mailman) to mailman:mailman. However, whenever I use the web-based admin tools, the ownership of files: -rw-rw---- 1 mailman mailman 4094 Aug 26 14:29 config.db -rw-rw---- 1 mailman mailman 4094 Aug 26 14:29 config.db.last changes to: -rw-rw---- 1 www mailman 4094 Aug 26 14:29 config.db -rw-rw---- 1 www mailman 4094 Aug 26 14:29 config.db.last and I then get permission errors from the cron job "qrunner" until I change permissions back to mailman:mailman. I suspect that something needed to be done with the -gid or -uid configure options, but the INSTALL notes weren't clear enough for me. Could anyone help? Thanks, michael geary From greg at gregwestin.com Mon Aug 26 22:42:47 2002 From: greg at gregwestin.com (Greg Westin) Date: Mon, 26 Aug 2002 16:42:47 -0400 (EDT) Subject: [Mailman-Users] web server user conflict In-Reply-To: <02F545C2-B933-11D6-A018-003065B85DAA@gearyweb.com> References: <02F545C2-B933-11D6-A018-003065B85DAA@gearyweb.com> Message-ID: <36421.155.41.10.1.1030394567.squirrel@webmail.gregwestin.com> I'd noticed that when I create a list from the web, the directory for that list is owned by 'www' rather than mailman... I didn't check the stuff inside it at the time, but I have a feeling the files you refer to were probably also owned by www. I don't remember any cron job problems, but then again I deleted those lists pretty quickly, because they were just my attempts to experiment with virtual domains. Greg Westin greg at gregwestin.com > Hi folks, > > I sense that this may be a FAQ, but I can't find a clear source of > information about it. > > I am running mailman with Postfix and Apache. Everything seems to be > okay. I have created a user and group called "mailman" and changed the > ownership of everything in the main mailman director > (/usr/local/mailman) to mailman:mailman. > > However, whenever I use the web-based admin tools, the ownership of > files: > > -rw-rw---- 1 mailman mailman 4094 Aug 26 14:29 config.db > -rw-rw---- 1 mailman mailman 4094 Aug 26 14:29 config.db.last > > changes to: > > -rw-rw---- 1 www mailman 4094 Aug 26 14:29 config.db > -rw-rw---- 1 www mailman 4094 Aug 26 14:29 config.db.last > > and I then get permission errors from the cron job "qrunner" until I > change permissions back to mailman:mailman. > > I suspect that something needed to be done with the -gid or -uid > configure options, but the INSTALL notes weren't clear enough for me. > > Could anyone help? Thanks, > > michael geary > > > ------------------------------------------------------ > Mailman-Users mailing list > Mailman-Users at python.org > 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/ From listmail at gearyweb.com Mon Aug 26 23:11:09 2002 From: listmail at gearyweb.com (Michael Geary) Date: Mon, 26 Aug 2002 15:11:09 -0600 Subject: [Mailman-Users] web server user conflict In-Reply-To: <36421.155.41.10.1.1030394567.squirrel@webmail.gregwestin.com> Message-ID: <57DF5F0A-B938-11D6-A018-003065B85DAA@gearyweb.com> So, you're saying that this has happened to you as well? Did you find the fix? Thanks, mg On Monday, August 26, 2002, at 02:42 PM, Greg Westin wrote: > I'd noticed that when I create a list from the web, the directory for > that > list is owned by 'www' rather than mailman... I didn't check the stuff > inside it at the time, but I have a feeling the files you refer to were > probably also owned by www. > > I don't remember any cron job problems, but then again I deleted those > lists pretty quickly, because they were just my attempts to experiment > with virtual domains. > > Greg Westin > greg at gregwestin.com > > >> Hi folks, >> >> I sense that this may be a FAQ, but I can't find a clear source of >> information about it. >> >> I am running mailman with Postfix and Apache. Everything seems to be >> okay. I have created a user and group called "mailman" and changed the >> ownership of everything in the main mailman director >> (/usr/local/mailman) to mailman:mailman. >> >> However, whenever I use the web-based admin tools, the ownership of >> files: >> >> -rw-rw---- 1 mailman mailman 4094 Aug 26 14:29 config.db >> -rw-rw---- 1 mailman mailman 4094 Aug 26 14:29 config.db.last >> >> changes to: >> >> -rw-rw---- 1 www mailman 4094 Aug 26 14:29 config.db >> -rw-rw---- 1 www mailman 4094 Aug 26 14:29 config.db.last >> >> and I then get permission errors from the cron job "qrunner" until I >> change permissions back to mailman:mailman. >> >> I suspect that something needed to be done with the -gid or -uid >> configure options, but the INSTALL notes weren't clear enough for me. >> >> Could anyone help? Thanks, >> >> michael geary >> >> >> ------------------------------------------------------ >> Mailman-Users mailing list >> Mailman-Users at python.org >> 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/ > > > From vkn at cableone.net Sat Aug 24 01:55:51 2002 From: vkn at cableone.net (VKNelson) Date: Fri, 23 Aug 2002 18:55:51 -0500 Subject: [Mailman-Users] How2 Transfer List In-Reply-To: <55904.140.247.133.60.1030138669.squirrel@webmail.gregwestin.com> References: <20020823203403.27624.99332.Mailman@mail.python.org> <55904.140.247.133.60.1030138669.squirrel@webmail.gregwestin.com> Message-ID: Thanx for your response. Yes mailman is already installed on the new server. At 5:37 PM -0400 8/23/02, Greg Westin wrote: Do you have mailman installed on the new server? It seems to me like you could just ditto the entire mailman directory over. Of course, you'd still have to set up other things involved in the mailman install, but that'll get the list and the archives and whatnot. If anyone knows why that wouldn't work, please let us know. Greg Westin greg at gregwestin.com Thanx for the welcome to the list. I am sort of a neophyte and will need lots of help to get on board. Please be patient. I am changing servers and would like to know how to transfer my mailman mailing list with 180 subscribers from the current server to the new. location? Valencia Mac user OS 9.2 Eudora 5.1 www.KingBarnes.com From max at skyrock.com Sun Aug 25 02:38:13 2002 From: max at skyrock.com (MaX) Date: Sun, 25 Aug 2002 02:38:13 +0200 Subject: [Mailman-Users] Problem Message-ID: <011b01c24bcf$b3290a80$abaf0b50@hiddenpalace> Hi, I installed mailman some hours ago, it seems to work but I have a problem with Postfix and I have this error : ": mail for lists.dstiny.net loops back to myself" I don't find any solution... Can you help me ? I run : Linux dstiny.net 2.4.18 #1 Wed Jul 17 18:28:39 CEST 2002 i686 unknown mailman 2.0.13 thanks you very much in advance for you answer... MaX From jozeph at globalmedia.com.br Mon Aug 26 03:17:13 2002 From: jozeph at globalmedia.com.br (Jozeph Brasil) Date: Sun, 25 Aug 2002 22:17:13 -0300 Subject: [Mailman-Users] Anyone know how solve that? Message-ID: <3D698199.9050608@globalmedia.com.br> Anyone know how solve this "chacarcters" problem? Why the TOPIC of messages are crazy? * [netfine-l] Teste /=?iso-8859-1?Q?Gustavo_Mendon=E7a?= / o [netfine-l] Teste /Jozeph Brasil / * [netfine-l] Teste /=?iso-8859-1?Q?Gustavo_Mendon=E7a?= / o [netfine-l] Teste /Jozeph Brasil / * [netfine-l] =?ISO-8859-1?Q?Exist=EAncia_da_lista?= /Jozeph Brasil / * [netfine-l] =?ISO-8859-1?Q?Sobre_a_p=E1gina=2E=2E=2E?= /Jozeph Brasil / * [netfine-l] =?ISO-8859-1?Q?Pr=F3xima_reuni=E3o=2E=2E=2E?= /Jozeph Brasil/ From bernhard at intevation.de Mon Aug 26 16:13:10 2002 From: bernhard at intevation.de (Bernhard Reiter) Date: Mon, 26 Aug 2002 16:13:10 +0200 Subject: [Mailman-Users] Move away Spamassassin marked E-Mails per cron Message-ID: <20020826141310.GB5612@intevation.de> Maybe somebody finds this little cronscript piece useful. You need to add it to the crontab for the user running "mailman". It is useful for people that use Spamassassin to mark all mail in the header. If you put X-Spam-Status: Yes in your header to hold, then these message will be placed on hold. This might place a burden on you, if you get a lot of spam, because you have to discard them all manually via the web-interface. The script will periodically move the marked spam away in a directory ~mailman/data/marked_spam. Thus if you enter the admindatabase you will see a message one like Message #901 lost. Of course the ~mailman/data/marked_spam directory has to exist. Bernhard ps.: Please copy me on relevant replies. I'm not subscribed to the list. -------------- next part -------------- # crontab addition for the mailman user # mv mail held for moderation and marked as spam into a spamfolder # note that the simple test using grep is not limited to header lines. # @hourly grep --no-messages -l '^X-Spam-Status: Yes, hits=' $HOME/data/heldmsg-*-* | xargs --replace mv {} $HOME/data/marked_spam/ -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: not available Url : http://mail.python.org/pipermail/mailman-users/attachments/20020826/2749f210/attachment.pgp From deanna+usenet at freeshell.org Mon Aug 26 18:22:33 2002 From: deanna+usenet at freeshell.org (Deanna Phillips) Date: Mon, 26 Aug 2002 16:22:33 +0000 Subject: [Mailman-Users] Re: Fwd: Adding 1 user to a list via command line? References: <200208261003.36316.dreamboy@aros.net> Message-ID: Devin Atencio writes: > I can't seem to figure out the correct syntax to add 1 e-mail address > to a list from the command line? > > /home/maiman/bin/add_members -n - -w n test devin at bzzzz.com > > any help with the correct syntax? echo devin at bzzzz.com | /home/mailman/bin/add_members -w y -n - test Where 'test' is the name of the list you want to add devin to. Not very pretty, is it? -- deanna From pab at comnets.rwth-aachen.de Mon Aug 26 18:53:44 2002 From: pab at comnets.rwth-aachen.de (Ralf Pabst) Date: Mon, 26 Aug 2002 18:53:44 +0200 Subject: [Mailman-Users] How to download Attachments from the Archive Message-ID: <3D6A5D18.5040109@comnets.rwth-aachen.de> Hi, subscribers of my mailing lists keep asking me how they can download attached files from messages that are in the archives. Since most of them seemed rather unexperienced (just as I am), could somebody point out an easy way to decode the MIME-attachments from the Archive pages... Thanks for help. Regards, Ralf From wolf at wolfstream.net Mon Aug 26 23:27:02 2002 From: wolf at wolfstream.net (Tom Whiting) Date: Mon, 26 Aug 2002 16:27:02 -0500 Subject: [Mailman-Users] Problem In-Reply-To: <011b01c24bcf$b3290a80$abaf0b50@hiddenpalace> References: <011b01c24bcf$b3290a80$abaf0b50@hiddenpalace> Message-ID: <200208261627.02271.wolf@wolfstream.net> On Saturday 24 August 2002 7:38 pm, MaX wrote: > Hi, > > I installed mailman some hours ago, it seems to work but I have a problem > with Postfix and I have this error : > ": mail for lists.dstiny.net loops back to myself" > > I don't find any solution... Can you help me ? > > I run : > Linux dstiny.net 2.4.18 #1 Wed Jul 17 18:28:39 CEST 2002 i686 unknown > mailman 2.0.13 That is an MTA problem, not a Mailman problem. make sure your settings are correct -- ---------------------------------------------------- TJW: Head tech, Dreamless Realms Mud: http://dreamless.wolfstream.net Snippets http://dreamless.wolfstream.net/ Telnet dreamless.wolfstream.net:9275 The OLC Pages http://olc.wolfstream.net ---------------------------------------------------- From greg at gregwestin.com Mon Aug 26 23:42:35 2002 From: greg at gregwestin.com (Greg Westin) Date: Mon, 26 Aug 2002 17:42:35 -0400 (EDT) Subject: [Mailman-Users] web server user conflict In-Reply-To: <57DF5F0A-B938-11D6-A018-003065B85DAA@gearyweb.com> References: <36421.155.41.10.1.1030394567.squirrel@webmail.gregwestin.com> <57DF5F0A-B938-11D6-A018-003065B85DAA@gearyweb.com> Message-ID: <52919.140.247.133.60.1030398155.squirrel@webmail.gregwestin.com> No, I don't have any idea what the problem was, unfortunately. Let me know if you find out, please. Greg -- greg at gregwestin.com http://www.gregwestin.com Contact info: http://www.gregwestin.com/contact.php > So, you're saying that this has happened to you as well? Did you find > the fix? From greg at gregwestin.com Mon Aug 26 23:45:18 2002 From: greg at gregwestin.com (Greg Westin) Date: Mon, 26 Aug 2002 17:45:18 -0400 (EDT) Subject: [Mailman-Users] Problem In-Reply-To: <011b01c24bcf$b3290a80$abaf0b50@hiddenpalace> References: <011b01c24bcf$b3290a80$abaf0b50@hiddenpalace> Message-ID: <52941.140.247.133.60.1030398318.squirrel@webmail.gregwestin.com> Check out this link: http://www.postfix.org/faq.html#unknown_virtual_loop I'm guessing you don't have Postfix set up properly to receive mail for lists.dstiny.net. Greg -- greg at gregwestin.com http://www.gregwestin.com Contact info: http://www.gregwestin.com/contact.php > Hi, > > I installed mailman some hours ago, it seems to work but I have a > problem with Postfix and I have this error : > ": mail for lists.dstiny.net loops back to > myself" > > I don't find any solution... Can you help me ? > > I run : > Linux dstiny.net 2.4.18 #1 Wed Jul 17 18:28:39 CEST 2002 i686 unknown > mailman 2.0.13 > > thanks you very much in advance for you answer... > > MaX > > > ------------------------------------------------------ > Mailman-Users mailing list > Mailman-Users at python.org > 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/ From acclella at sciborg.uwaterloo.ca Tue Aug 27 00:24:36 2002 From: acclella at sciborg.uwaterloo.ca (Andrew Clelland) Date: Mon, 26 Aug 2002 18:24:36 -0400 Subject: [Mailman-Users] problem with repeating admin message Message-ID: I'm fairly new to this program and haven't been able to find a solution to this problem. I keep getting messages saying that "The Info at blahblah.com mailing list has 1 request(s) waiting for your consideration at: http://bahamas.dnsvault.com/mailman/admindb/blah blhsdh Please attend to this at your earliest convenience. This notice of pending requests, if any, will be sent out daily. Pending posts: From: somebody at hotmail.com on Fri Aug 23 12:28:00 2002 Cause: Message has implicit destination" But yet when I follow the link in the email, to get to the pending requests it says that I have none. I receive the above email everyday at 5:01 yet everytime there are no pending requests contrary to what the message says. can anyone offer a solution? Andrew From support at cprg.biz Tue Aug 27 01:38:31 2002 From: support at cprg.biz (Web Support) Date: Mon, 26 Aug 2002 19:38:31 -0400 Subject: [Mailman-Users] how to mass unsubscribe members References: <20020826194814.715B73951@sitemail.everyone.net> Message-ID: <027801c24d59$b1414cb0$bcc92c44@unknown> Log in to: [ List Administration | Membership Management ] Membership List ... "UN"check the boxes under "subscr" column, corresponding to each member you want to nuke; then: [ Submit Your Changes ]. All members corresponding to the boxes you unchecked will be unsubscribed enmass. ----- Original Message ----- From: David Luu To: mailman-users at python.org Sent: Monday, August 26, 2002 3:48 PM Subject: [Mailman-Users] how to mass unsubscribe members Hi, I know there is a mass subscribe option in membership management to subscribe people. Is there also a way to mass unsubscribe these people? David _____________________________________________________________ I'm receiving the following error message from cron. /usr/bin/python -S /var/mailman/cron/checkdbs Traceback (innermost last): File "/var/mailman/cron/checkdbs", line 92, in ? main() File "/var/mailman/cron/checkdbs", line 59, in main mlist.Save() File "/var/mailman/Mailman/MailList.py", line 860, in Save self.SaveRequestsDb() File "/var/mailman/Mailman/ListAdmin.py", line 93, in SaveRequestsDb self.__closedb() File "/var/mailman/Mailman/ListAdmin.py", line 80, in __closedb fp = open(self.__filename, 'w') IOError: [Errno 13] Permission denied: '/var/mailman/lists/workhouse-publicity/request.db' Executing a "./check_perms" resulted in "No problems found". Any suggestions? [-d] From bu_marwan at hotmail.com Tue Aug 27 03:50:49 2002 From: bu_marwan at hotmail.com (Bu Marwan) Date: Tue, 27 Aug 2002 05:50:49 +0400 Subject: [Mailman-Users] Arabic Support + Full Customization Message-ID: Hello All. I have two questions to ask, 1- Does the mailman list support Arabic E-mails? I mean if I have installed the system on my server and have setup a mailing list and got subscribers. Can I send an Arabic e-mail to them? 2- Is the System fully custumizable? Can I customize the look and the text found in the subscribing pages, the confirmation e-mails, .. etc? Thanks for your help and concern. _________________________________________________________________ Join the world?s largest e-mail service with MSN Hotmail. http://www.hotmail.com From clay at dawning.com.cn Tue Aug 27 07:48:36 2002 From: clay at dawning.com.cn (Isaac Claymore) Date: Tue, 27 Aug 2002 13:48:36 +0800 Subject: [Mailman-Users] Arabic Support + Full Customization In-Reply-To: References: Message-ID: <20020827054836.GA16366@clay> On Tue, Aug 27, 2002 at 05:50:49AM +0400, Bu Marwan wrote: > > > Hello All. > > I have two questions to ask, > > 1- Does the mailman list support Arabic E-mails? I mean if I have installed > the system on my server and have setup a mailing list and got subscribers. > Can I send an Arabic e-mail to them? I don't know about Arabic, but we've been running several lists with both English emails and Chinese ones, whose encoding system is no simpler than that of Arabic iirc. I simply changed 2 options in the mm_cfg.py: DEFAULT_CHARSET and VERBATIM_ENCODING. > > 2- Is the System fully custumizable? Can I customize the look and the text > found in the subscribing pages, the confirmation e-mails, .. etc? Look into the directory /templates ;) Clay -- Isaac Claymore /"\ ASCII Ribbon Campaign Dawning Inc. \ / Respect for open standards Beijing, China X No HTML/RTF in email http://www.dawning.com.cn / \ No M$ Word docs in email From claw at kanga.nu Tue Aug 27 10:05:52 2002 From: claw at kanga.nu (J C Lawrence) Date: Tue, 27 Aug 2002 01:05:52 -0700 Subject: [Mailman-Users] How to reconstruct MIME Attachments In-Reply-To: Message from Mailman Administrator of "Mon, 26 Aug 2002 19:16:54 +0200." References: Message-ID: <26021.1030435552@kanga.nu> On Mon, 26 Aug 2002 19:16:54 +0200 (MET DST) Mailman Administrator wrote: > Hi, subscribers of my mailing lists keep asking me how they can > download attached files from messages that are in the archives or > reconstruct Attachments from the daily batches they receive. Since > most of them seemed rather unexperienced (just as I am), could > somebody point out an easy way to decode the MIME-attachments from the > Archive pages... Or can I change something in the Preferences to make > their lives easier? Have them use MIME digests instead of text digests. -- J C Lawrence ---------(*) Satan, oscillate my metallic sonatas. claw at kanga.nu He lived as a devil, eh? http://www.kanga.nu/~claw/ Evil is a name of a foeman, as I live. From janis at camp.lv Tue Aug 27 10:29:12 2002 From: janis at camp.lv (janis at camp.lv) Date: Tue, 27 Aug 2002 11:29:12 +0300 Subject: [Mailman-Users] Permission problems In-Reply-To: <4adfa4e5eb.4e5eb4adfa@student.liu.se> References: <4adfa4e5eb.4e5eb4adfa@student.liu.se> Message-ID: <1030436952.3d6b385892f5e@mail.camp.lv> Hi! It could be that there is problem with the cron. Mailman's cron jobs has to be executed w user/group mailman and seems that they are not. Janis Putrams > Hi! > > I've got a Mailman problem. Surprised? :) > After a reboot the mailing-lists stopped working. > Mailing a specific person is still working though. I > use exim and Mailman. Let's start from the > beginning. This line is in /etc/inetd.conf: > > smtp stream tcp nowait mail /usr/sbin/exim exim -bs > > > When I send a mail to selinux-drift mailing-list I > get this in /var/log/exim/mainlog > > 2002-08-25 22:50:24 17j4L2-0007Bo-00 <= > timte878 at student.liu.se H=igloo.df.lth.se > [194.47.250.47] U=root P=esmtp S=1243 > id=399a03e0aa.3e0aa399a0 at student.liu.se > 2002-08-25 22:50:26 17j4L2-0007Bo-00 => > |/home/mailman/mail/wrapper post selinux-drift > D=system_aliases > T=address_pipe > 2002-08-25 22:50:26 17j4L2-0007Bo-00 Completed > > I don't know what should be here, but it seems to be > ok. I now assume that Mailman got the mail that it's > supposed to forward to everyone on the list. Right? > The mailman configuration is: > selinux-drift: "|/home/mailman/mail/wrapper post > selinux-drift" > > /home/mailman/bin/check_perms returns "No problems > found" > > > The mailman logs > > /home/mailman/logs/qrunner: > Aug 25 13:43:03 2002 (13379) Could not acquire > qrunner lock > > /home/mailman/logs/post shows all sendings that > succeeded. There's no entry from Aug 21. > /home/mailman/logs/bounce shows no entry after Aug 18. > > The most interesting is /home/mailman/logs/error. I > attached it. The last line says: > IOError: [Errno 13] Permission denied: > '/home/mailman/qfiles/482cxxxxxxxxxxx.db' > > Seems there's something wrong with the permissions. > > $ ls -ld qfiles > drwxrwsr-x 2 root mailman 28672 Aug 25 23:29 qfiles/ > > In the qfiles directory every .db and .msg file has: > -rw-rw-r-- 1 list mailman > > Anyone have any clue what's wrong here? > > Cheers, > Tim > From mailman-users at imc.nl Tue Aug 27 10:35:22 2002 From: mailman-users at imc.nl (Roelf Schreurs) Date: Tue, 27 Aug 2002 10:35:22 +0200 Subject: [Mailman-Users] high resource usage Message-ID: <000801c24da4$af72b220$c764a8c0@ads.intra.imc> Hi Running the newest mailman on FreeBSD 4.4 I get a high resource usage on our server. PID USERNAME PRI NICE SIZE RES STATE TIME WCPU CPU COMMAND 67216 mailman 64 0 58196K 53356K RUN 0:55 65.77% 65.77% python [root at dmx cur]# ps aux | grep 67216 mailman 67216 67.1 5.1 55288 53700 ?? R 10:18AM 1:16.68 qrunner /opt/mailman/bin/qrunner --runner=ArcRunner:0:1 -s (python) Any reason why this is so high? Thanks Roelf -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/mailman-users/attachments/20020827/f57e072d/attachment.html From khj at be.cs.appstate.edu Tue Aug 27 12:04:58 2002 From: khj at be.cs.appstate.edu (Kenneth Jacker) Date: 27 Aug 2002 06:04:58 -0400 Subject: [Mailman-Users] /var/log/mailman files In-Reply-To: <15661.57857.753290.942668@anthem.wooz.org> Message-ID: [RH7.3, mailman-2.0.11-1] Looking in my /var/log/mailman directory, I see file names such as: error error.1 error.1.1 error.1.1.1 error.1.1.1.1 error.1.1.1.1.1 This occurs for the other error files as well (subscribe, post, digest, ...). Also, most are of zero length and many have the same date/time. Are these names normal? What do all the digits signify? I checked the docs and did some searching, but couldn't find an answer. Thanks, -Kenneth -- Prof Kenneth H Jacker khj at cs.appstate.edu Computer Science Dept www.cs.appstate.edu/~khj Appalachian State Univ Boone, NC 28608 USA From Nigel.Metheringham at dev.InTechnology.co.uk Tue Aug 27 12:29:29 2002 From: Nigel.Metheringham at dev.InTechnology.co.uk (Nigel Metheringham) Date: 27 Aug 2002 11:29:29 +0100 Subject: [Mailman-Users] /var/log/mailman files In-Reply-To: References: Message-ID: <1030444172.2202.17.camel@gaspode.localnet> On Tue, 2002-08-27 at 11:04, Kenneth Jacker wrote: > [RH7.3, mailman-2.0.11-1] > > Looking in my /var/log/mailman directory, I see file names such as: > > error > error.1 > error.1.1 > error.1.1.1 > error.1.1.1.1 > error.1.1.1.1.1 Normally means that someone has used an inappropriate wildcard in the logrotate script. Check for a mailman file in /etc/logrotate.d, and presumably it has something like:- /var/log/mailman/* as the logfile name. This should be changed to explicitly list /var/log/mailman/error and the other log files. BTW this will exponentially grow and can wedge your system under the right circumstances. If the logrotate control file is from the RPM then it needs fixing urgently. logrotate was supposedly upgraded to avoid this problem a while back - look for bugzilla entries that refer to logrotate and samba. Its a packaging problem rather than a mailman problem. Nigel. -- [ Nigel Metheringham Nigel.Metheringham at InTechnology.co.uk ] [ - Comments in this message are my own and not ITO opinion/policy - ] From kaja at daimi.au.dk Tue Aug 27 14:14:41 2002 From: kaja at daimi.au.dk (Kaja P. Christiansen) Date: Tue, 27 Aug 2002 14:14:41 +0200 Subject: [Mailman-Users] mailman 2.0.13 & htdig integration patch Message-ID: <15723.27953.833108.824959@daimi.au.dk> Hi, After unpacking the sources for mailman v. 2.0.13, I tried to apply htdig-2.0.13-0.1.patch which failed. Then I noticed the htdig-2.0.13-0.2.patch. Unfortunately this patch is failing too: [mailman-2.0.13]$ patch -p1 < htdig-2.0.13-0.2.patch patching file INSTALL patching file INSTALL.htdig-mm patch: **** malformed patch at line 1004: diff -r -u -P mailman-2.0.13-index/Mailman/Archiver/HyperArch.py mailman-2.0.13-htdig/Mailman/Archiver/HyperArch.py Does someone have a suggestion what is wrong? Thanks, Kaja From wash at wananchi.com Tue Aug 27 14:19:47 2002 From: wash at wananchi.com (Odhiambo Washington) Date: Tue, 27 Aug 2002 15:19:47 +0300 Subject: [Mailman-Users] mailman 2.0.13 & htdig integration patch In-Reply-To: <15723.27953.833108.824959@daimi.au.dk> References: <15723.27953.833108.824959@daimi.au.dk> Message-ID: <20020827121947.GB31393@ns2.wananchi.com> * Kaja P. Christiansen [20020827 15:14]: wrote: > > Hi, > > After unpacking the sources for mailman v. 2.0.13, > I tried to apply htdig-2.0.13-0.1.patch which failed. > Then I noticed the htdig-2.0.13-0.2.patch. Unfortunately > this patch is failing too: > > [mailman-2.0.13]$ patch -p1 < htdig-2.0.13-0.2.patch > patching file INSTALL > patching file INSTALL.htdig-mm > patch: **** malformed patch at line 1004: diff -r -u -P mailman-2.0.13-index/Mailman/Archiver/HyperArch.py mailman-2.0.13-htdig/Mailman/Archiver/HyperArch.py > > Does someone have a suggestion what is wrong? Probably the way you downloaded the patches... How did you do it? I've downloaded them before and they applied cleanly. cheers - wash +----------------------------------+-----------------------------------------+ Odhiambo Washington, wash at wananchi.com . WANANCHI ONLINE LTD (Nairobi, KE) | http://ns2.wananchi.com/~wash/ . 1ere Etage, Loita Hse, Loita St., | GSM: (+254) 722 743 223 . # 10286, 00100 NAIROBI | +---------------------------------+------------------------------------------+ "Oh My God! They killed init! You Bastards!" --from a /. post From wash at wananchi.com Tue Aug 27 14:29:09 2002 From: wash at wananchi.com (Odhiambo Washington) Date: Tue, 27 Aug 2002 15:29:09 +0300 Subject: [Mailman-Users] SMART_ADDRESS_MATCH in 2.1b3 Message-ID: <20020827122909.GC31393@ns2.wananchi.com> Has this option been removed from 2.1b3? I just can't find it in all the files, and neither can I see a discussion about it being replaced. Not that I do use it but I hope I will so this is on a NTK basis. beastie# find ../mailman-2.1b3/ -type f -exec grep -li 'SMART_ADDRESS_MATCH' {} \; beastie# Any references appreciated. Thanks cheers - wash +----------------------------------+-----------------------------------------+ Odhiambo Washington, wash at wananchi.com . WANANCHI ONLINE LTD (Nairobi, KE) | http://ns2.wananchi.com/~wash/ . 1ere Etage, Loita Hse, Loita St., | GSM: (+254) 722 743 223 . # 10286, 00100 NAIROBI | +---------------------------------+------------------------------------------+ "Oh My God! They killed init! You Bastards!" --from a /. post From sebold at lcms.org Tue Aug 27 14:32:12 2002 From: sebold at lcms.org (Charles Sebold) Date: Tue, 27 Aug 2002 07:32:12 -0500 Subject: [Mailman-Users] /var/log/mailman files In-Reply-To: (Kenneth Jacker's message of "Tue, 27 Aug 2002 06:04:58 -0400") References: Message-ID: <87d6s4mqib.fsf@lcms.org> On 19 Elul 5762, Kenneth Jacker wrote: > Looking in my /var/log/mailman directory, I see file names such as: > > error > error.1 > error.1.1 > error.1.1.1 > error.1.1.1.1 > error.1.1.1.1.1 This probably indicates a problem with your logrotate scripts (that's what bumps logfiles with numbers, and optionally compresses them). Not sure where they are in RedHat but in Debian they're in /etc/logrotate* . -- Charles Sebold K'tivah V'chatimah Tovah 19th of Elul, 5762 LCMS - Office of Information Systems http://tsdocs.lcms.org/ *** Opinions expressed herein are not necessarily *** *** those of the Lutheran Church - Missouri Synod *** From kaja at daimi.au.dk Tue Aug 27 14:49:32 2002 From: kaja at daimi.au.dk (Kaja P. Christiansen) Date: Tue, 27 Aug 2002 14:49:32 +0200 Subject: [Mailman-Users] mailman 2.0.13 & htdig integration patch In-Reply-To: <20020827121947.GB31393@ns2.wananchi.com> References: <15723.27953.833108.824959@daimi.au.dk> <20020827121947.GB31393@ns2.wananchi.com> Message-ID: <15723.30044.566188.923944@daimi.au.dk> Odhiambo Washington writes: > Probably the way you downloaded the patches... > How did you do it? > I've downloaded them before and they applied cleanly. Thanks! The patch file must have been corrupted. I downloaded it again and the result is better, but the patch doesn't apply quite cleanly: [mailman-2.0.13]$ md5sum htdig-2.0.13-0.2.patch cc3115a099507d45a72642722c56dfce htdig-2.0.13-0.2.patch [mailman-2.0.13]$ patch -p1 < htdig-2.0.13-0.2.patch patching file INSTALL patching file INSTALL.htdig-mm patching file Mailman/Archiver/HyperArch.py Hunk #2 succeeded at 507 (offset -11 lines). Hunk #3 succeeded at 551 (offset -3 lines). Hunk #4 succeeded at 675 (offset -11 lines). Hunk #5 succeeded at 702 (offset -3 lines). Hunk #6 FAILED at 757. Hunk #7 succeeded at 755 (offset -18 lines). Hunk #8 succeeded at 796 (offset -3 lines). 1 out of 8 hunks FAILED -- saving rejects to file Mailman/Archiver/HyperArch.py.rej patching file Mailman/Cgi/htdig.py patching file Mailman/Cgi/updateTOC.py patching file Mailman/Defaults.py.in Hunk #1 FAILED at 553. 1 out of 1 hunk FAILED -- saving rejects to file Mailman/Defaults.py.in.rej patching file Makefile.in patching file bin/Makefile.in patching file bin/blow_away_htdig patching file cron/Makefile.in patching file cron/crontab.in.in patching file cron/nightly_htdig patching file cron/remote_nightly_htdig patching file cron/remote_nightly_htdig.pl patching file cron/remote_nightly_htdig_noshare Kaja From mike at CamaroSS.net Tue Aug 27 15:06:33 2002 From: mike at CamaroSS.net (Mike Kercher) Date: Tue, 27 Aug 2002 08:06:33 -0500 Subject: [Mailman-Users] /var/log/mailman files In-Reply-To: <87d6s4mqib.fsf@lcms.org> Message-ID: <000d01c24dca$91ca9320$6501a8c0@mikedesk> Here's what my /etc/logrotate.d/mailman file looks like: /var/log/mailman/bounce { missingok } /var/log/mailman/digest { missingok } /var/log/mailman/error { missingok } /var/log/mailman/post { missingok } /var/log/mailman/smtp-failure { missingok } /var/log/mailman/locks { missingok } /var/log/mailman/fromusenet { missingok } /var/log/mailman/subscribe { missingok } /var/log/mailman/vette { missingok } -----Original Message----- From: mailman-users-admin at python.org [mailto:mailman-users-admin at python.org] On Behalf Of Charles Sebold Sent: Tuesday, August 27, 2002 7:32 AM To: khj at cs.appstate.edu Cc: mailman-users at python.org Subject: Re: [Mailman-Users] /var/log/mailman files On 19 Elul 5762, Kenneth Jacker wrote: > Looking in my /var/log/mailman directory, I see file names such as: > > error > error.1 > error.1.1 > error.1.1.1 > error.1.1.1.1 > error.1.1.1.1.1 This probably indicates a problem with your logrotate scripts (that's what bumps logfiles with numbers, and optionally compresses them). Not sure where they are in RedHat but in Debian they're in /etc/logrotate* . -- Charles Sebold K'tivah V'chatimah Tovah 19th of Elul, 5762 LCMS - Office of Information Systems http://tsdocs.lcms.org/ *** Opinions expressed herein are not necessarily *** *** those of the Lutheran Church - Missouri Synod *** ------------------------------------------------------ Mailman-Users mailing list Mailman-Users at python.org 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/ From R.Barrett at ftel.co.uk Tue Aug 27 15:42:24 2002 From: R.Barrett at ftel.co.uk (Richard Barrett) Date: Tue, 27 Aug 2002 14:42:24 +0100 Subject: [Mailman-Users] mailman 2.0.13 & htdig integration patch In-Reply-To: <15723.30044.566188.923944@daimi.au.dk> References: <20020827121947.GB31393@ns2.wananchi.com> <15723.27953.833108.824959@daimi.au.dk> <20020827121947.GB31393@ns2.wananchi.com> Message-ID: <5.1.0.14.2.20020827140427.0492bff0@pop.ftel.co.uk> At 14:49 27/08/2002 +0200, Kaja P. Christiansen wrote: >Odhiambo Washington writes: > > > Probably the way you downloaded the patches... > > How did you do it? > > I've downloaded them before and they applied cleanly. > >Thanks! The patch file must have been corrupted. I downloaded >it again and the result is better, but the patch doesn't apply >quite cleanly: It looks as though you may not have applied the precursor indexing-2.0.13-0.2.patch which you can find at http://sourceforge.net/tracker/index.php?func=detail&aid=444879&group_id=103&atid=300103 as stipulated in the notes for the htdig integration patch 444884. Also, from the offsets being cited in your post when you apply htdig-2.0.13-0.2.patch, it doesn't look as though may not be applying it to a standard Mailman 2.0.13 distribution, but I could be wrong about this. For instance when I do what I think you may have done I get what follows but, as you can see, while broadly similar the actual offsets are slightly different: mailman at mailman2:/mailman/build> zcat distributions/mailman-2.0.13.tgz | tar xf - mailman at mailman2:/mailman/build> cd mailman-2.0.13 mailman at mailman2:/mailman/build/mailman-2.0.13> patch -p1 < ../patches/current/htdig-2.0.13-0.2.patch patching file INSTALL patching file INSTALL.htdig-mm patching file Mailman/Archiver/HyperArch.py Hunk #2 succeeded at 507 (offset -11 lines). Hunk #3 succeeded at 540 (offset -14 lines). Hunk #4 succeeded at 672 (offset -14 lines). Hunk #5 succeeded at 691 (offset -14 lines). Hunk #6 FAILED at 746. Hunk #7 succeeded at 752 (offset -21 lines). Hunk #8 succeeded at 778 (offset -21 lines). 1 out of 8 hunks FAILED -- saving rejects to file Mailman/Archiver/HyperArch.py.rej patching file Mailman/Cgi/htdig.py patching file Mailman/Cgi/updateTOC.py patching file Mailman/Defaults.py.in Hunk #1 FAILED at 553. 1 out of 1 hunk FAILED -- saving rejects to file Mailman/Defaults.py.in.rej patching file Makefile.in patching file bin/Makefile.in patching file bin/blow_away_htdig patching file cron/Makefile.in patching file cron/crontab.in.in patching file cron/nightly_htdig patching file cron/remote_nightly_htdig patching file cron/remote_nightly_htdig.pl patching file cron/remote_nightly_htdig_noshare patching file src/Makefile.in mailman at mailman2:/mailman/build> >[mailman-2.0.13]$ md5sum htdig-2.0.13-0.2.patch >cc3115a099507d45a72642722c56dfce htdig-2.0.13-0.2.patch >[mailman-2.0.13]$ patch -p1 < htdig-2.0.13-0.2.patch >patching file INSTALL >patching file INSTALL.htdig-mm >patching file Mailman/Archiver/HyperArch.py >Hunk #2 succeeded at 507 (offset -11 lines). >Hunk #3 succeeded at 551 (offset -3 lines). >Hunk #4 succeeded at 675 (offset -11 lines). >Hunk #5 succeeded at 702 (offset -3 lines). >Hunk #6 FAILED at 757. >Hunk #7 succeeded at 755 (offset -18 lines). >Hunk #8 succeeded at 796 (offset -3 lines). >1 out of 8 hunks FAILED -- saving rejects to file >Mailman/Archiver/HyperArch.py.rej >patching file Mailman/Cgi/htdig.py >patching file Mailman/Cgi/updateTOC.py >patching file Mailman/Defaults.py.in >Hunk #1 FAILED at 553. >1 out of 1 hunk FAILED -- saving rejects to file Mailman/Defaults.py.in.rej >patching file Makefile.in >patching file bin/Makefile.in >patching file bin/blow_away_htdig >patching file cron/Makefile.in >patching file cron/crontab.in.in >patching file cron/nightly_htdig >patching file cron/remote_nightly_htdig >patching file cron/remote_nightly_htdig.pl >patching file cron/remote_nightly_htdig_noshare > > >Kaja From kaja at daimi.au.dk Tue Aug 27 15:57:32 2002 From: kaja at daimi.au.dk (Kaja P. Christiansen) Date: Tue, 27 Aug 2002 15:57:32 +0200 Subject: [Mailman-Users] mailman 2.0.13 & htdig integration patch In-Reply-To: <5.1.0.14.2.20020827140427.0492bff0@pop.ftel.co.uk> References: <20020827121947.GB31393@ns2.wananchi.com> <15723.27953.833108.824959@daimi.au.dk> <5.1.0.14.2.20020827140427.0492bff0@pop.ftel.co.uk> Message-ID: <15723.34124.677380.645491@daimi.au.dk> Richard Barrett writes: > It looks as though you may not have applied the precursor > indexing-2.0.13-0.2.patch Yes, that is correct - I forgot to apply the indexing patch :( The indexing patch followed by htdig patch applied cleanly. Thank you for pointing it out. Kaja From R.Barrett at ftel.co.uk Tue Aug 27 16:02:55 2002 From: R.Barrett at ftel.co.uk (Richard Barrett) Date: Tue, 27 Aug 2002 15:02:55 +0100 Subject: [Mailman-Users] mailman 2.0.13 & htdig integration patch Message-ID: <5.1.0.14.2.20020827144539.04097d60@pop.ftel.co.uk> At 14:49 27/08/2002 +0200, Kaja P. Christiansen wrote: >Odhiambo Washington writes: > > > Probably the way you downloaded the patches... > > How did you do it? > > I've downloaded them before and they applied cleanly. > >Thanks! The patch file must have been corrupted. I downloaded >it again and the result is better, but the patch doesn't apply >quite cleanly: It looks as though you may not have applied the precursor indexing-2.0.13-0.2.patch which you can find at http://sourceforge.net/tracker/index.php?func=detail&aid=444879&group_id=103&atid=300103 as stipulated in the notes for the htdig integration patch 444884. Apologies, but further to my initial post the latest is version of the 444879 indexing patch for MM 2.0.13 is indexing-2.0.13-0.3.patch not indexing-2.0.13-0.2.patch. From rcs at malibyte.net Tue Aug 27 16:45:46 2002 From: rcs at malibyte.net (Bob Sully) Date: Tue, 27 Aug 2002 07:45:46 -0700 (PDT) Subject: [Mailman-Users] /var/log/mailman files In-Reply-To: <87d6s4mqib.fsf@lcms.org> Message-ID: Just out of curiosity...you're not running Mandrake 7.1, are you? That release had a strange bug which caused a lot of directories in /var to fill up with files with those sorts of names, many levels deep. This was fixed in 7.2 and newer. --Bob -- On Tue, 27 Aug 2002, Charles Sebold wrote: > On 19 Elul 5762, Kenneth Jacker wrote: > > > Looking in my /var/log/mailman directory, I see file names such as: > > > > error > > error.1 > > error.1.1 > > error.1.1.1 > > error.1.1.1.1 > > error.1.1.1.1.1 > > This probably indicates a problem with your logrotate scripts (that's > what bumps logfiles with numbers, and optionally compresses them). Not > sure where they are in RedHat but in Debian they're in /etc/logrotate* . > -- ________________________________________ Bob Sully - Simi Valley, California, USA http://www.malibyte.net "The weather is here - wish you were beautiful." - J. Buffett From khj at be.cs.appstate.edu Tue Aug 27 16:59:33 2002 From: khj at be.cs.appstate.edu (Kenneth Jacker) Date: 27 Aug 2002 10:59:33 -0400 Subject: [Mailman-Users] Re: /var/log/mailman files In-Reply-To: <000d01c24dca$91ca9320$6501a8c0@mikedesk> References: <000d01c24dca$91ca9320$6501a8c0@mikedesk> Message-ID: Mike's suggested "/etc/logrotate.d/mailman" contents is apparently just what I needed! Thanks to him and all the others that responded ... -Kenneth From barry at python.org Tue Aug 27 18:33:20 2002 From: barry at python.org (Barry A. Warsaw) Date: Tue, 27 Aug 2002 12:33:20 -0400 Subject: [Mailman-Users] SMART_ADDRESS_MATCH in 2.1b3 References: <20020827122909.GC31393@ns2.wananchi.com> Message-ID: <15723.43472.206842.402028@anthem.wooz.org> >>>>> "OW" == Odhiambo Washington writes: OW> Has this option been removed from 2.1b3? I just can't find it OW> in all the files, and neither can I see a discussion about it OW> being replaced. Not that I do use it but I hope I will so this OW> is on a NTK basis. OW> beastie# find ../mailman-2.1b3/ -type f -exec grep -li OW> 'SMART_ADDRESS_MATCH' {} \; beastie# OW> Any references appreciated. You're right that SMART_ADDRESS_MATCH has been removed for MM2.1. I made this decision because it really was trying to work around, IMO, misconfigured (remote) mail servers, and it was difficult to get right in the face of ccTLDs. If you have members who cannot fix their mail servers to include canonical From: addresses, then the workaround is the same as if that member wants to post from multiple addresses. They must subscribe each address and disable all but the one they want mail delivered to. -Barry From ERantanen at osc.uscg.mil Tue Aug 27 20:58:17 2002 From: ERantanen at osc.uscg.mil (Rantanen, TC1) Date: Tue, 27 Aug 2002 14:58:17 -0400 Subject: [Mailman-Users] removal of subscriber list from web pages Message-ID: <13828F680182D511893300508BD6831701EA8451@oscex2-bu.osc.uscg.mil> Where can I find the entries (code) for roster/subscribe list, removal. Even with only admins set to see subscriber list only (to much info for people to see), I want to take even this out of the listinfo web page. Not sure where to begin to look, for the code removal. Tks in advance for any help. Ed From lmark at cires.colorado.edu Tue Aug 27 22:31:35 2002 From: lmark at cires.colorado.edu (Mark Lohaus) Date: Tue, 27 Aug 2002 14:31:35 -0600 Subject: [Mailman-Users] How do I change the name of a mailman list? Message-ID: <5.1.0.14.0.20020827142924.00a6fe38@cires.colorado.edu> Hi, I need to change the name of a Mailman list. Is this possible? Thanks, Mark Mark Lohaus Webmaster Center for Science and Technology Policy Research 1333 Grandview, 488 UCB Boulder, CO 80309-0488 303-735-0493 From splat at fury.to Tue Aug 27 23:00:28 2002 From: splat at fury.to (Randy Romero) Date: Tue, 27 Aug 2002 17:00:28 -0400 (EDT) Subject: [Mailman-Users] Another Postfix/Mailman post but not a GID problem. Message-ID: Mailman gurus, Hope someone can help. Solaris 9 postfix 1.1.11 mailman 2.0.13 ::postfix main.cf entries:: alias_database = dbm:/etc/postfix/aliases alias_maps = dbm:/home/mailman/aliases As the mailman user I compiled with the following flags: #export MAILHOST=some.mailhost.com #export WWWHOST=some.wwwhost.com #./configure --with-mail-gid=102 --with-cgi-gid=60001 \ --with-username=mailman --with-groupname=mailman did all other installation steps...ie mmsitepass, crontab, etc, etc #cp /etc/postfix/aliases ~ #postalias ~/aliases installation appears to be fine, but when I send email to the test list it seems to vanish. I can see the mail hit postfix with no problem Aug 27 16:49:21 alcatraz postfix/local[203]: [ID 197553 mail.info] 68E167EC7A: to=, relay=local, delay=1, status=sent ("|/home/mailman/mail/wrapper mailowner test") I also see several messages in /home/mailman/qfiles, and I've run the qrunner command with no results. Can someone point me in the right direction? I've looked at the docs several times and I'm at a point where I'm stumped. I've looked at the archives over and over, but haven't found anything that describes this situation. Any and all help (not flames) are appreciated. Thanks in advance. Randy Romero From support at iquest.ucsb.edu Wed Aug 28 01:41:14 2002 From: support at iquest.ucsb.edu (Support) Date: Tue, 27 Aug 2002 16:41:14 -0700 Subject: [Mailman-Users] no subscription confirmation response Message-ID: <000701c24e23$3b53e150$800f6f80@iquest.ucsb.edu> hi, I configured mailman to use gid 12 (mail) since it would not let me do it with gid 0 (root) Everything goes well until I reply to the 1st confirmation. I never get an email saying that Ive been added to the list. I check the mailman logs and nothing there helps however I look at the sendmail logs and I get this. ### message sent asking for a reply Aug 26 05:23:11 cvd-bs3-8 sendmail[12116]: g7QCN9m12114:to=, delay=00:00:02, xdelay=00:00:02,mailer=esmtp, pri=139793, relay=mailin-03.mx.netscape.net.[64.12.137.249], dsn=2.0.0, stat=Sent (OK) ### reply revieved Aug 26 05:23:38 cvd-bs3-8 sendmail[12119]: g7QCNbm12119:from=, size=1883, class=0, nrcpts=1,msgid=<7C6EED2A.10449403.001611A6 at netscape.net>, proto=ESMTP,daemon=MTA, relay=imo-d03.mx.aol.com [205.188.157.35] ### entry from aliases refering to the Aug 26 05:23:38 cvd-bs3-8 sendmail[12120]: g7QCNbm12119:to="|/home/mailman/mail/wrapper mailcmd testlist", ctladdr= (8/0), delay=00:00:00,xdelay=00:00:00, mailer=prog, pri=31196, dsn=2.0.0, stat=Sent ###---------------------------------- this is what is what's in my alias file mailman: root mail-owner: mailman ## testlist mailing list ## created: 22.Aug.02 mailman testlist: "|/home/mailman/mail/wrapper post testlist" testlist-admin: "|/home/mailman/mail/wrapper mailowner testlist" testlist-request: "|/home/mailman/mail/wrapper mailcmd testlist" testlist-owner: testlist-admin ###-------------------------------- This is what's in my httpd.conf file (apache_1.3.26) Alias /pipermail/ "/home/mailman/archives/public/" Options FollowSymLinks AllowOverride None Order allow,deny Allow from all ScriptAlias /mailman/ "/home/mailman/cgi-bin/" Options None AllowOverride None Order allow,deny Allow from all ###--------------------- This is the symlink in /etc/smrsh lrwxrwxrwx 1 root root 26 Aug 22 15:21 wrapper -> /home/mailman/mail/wrapper ##--------------------- from the sendmail logs it seems that the testlist-request alias is not resolving or something. Can anyone tell me what's going wrong here. Do i have all other configurations done correctly?? thanx, PS yes I know I shouldn't post real ip's and such but Im too lazy to change them. From bjorn-ivar at inc.humorshack.com Tue Aug 27 12:29:31 2002 From: bjorn-ivar at inc.humorshack.com (Bjorn-Ivar Sigbjornsen) Date: Tue, 27 Aug 2002 12:29:31 +0200 Subject: [Mailman-Users] import feature Message-ID: <5.1.0.14.0.20020827122547.00c1dd68@mail.europulse.com> Hi I have been looking at the Mail Man program you offer and it looks really interesting. As I already have subscribers to another mailinglist, I wonder if it's possible to import the existing subscribers directly into Mail Man? I also wonder if the Plain Digests mode means that you can post a newsletter that is not being sent out immediately, but say 6 hours later? That way I can send it out during the night. One last thing. Is it possible to set it up as an announce list only, so replies don't go out to all subscribers? Thanks for your help! Best, Bjorn-Ivar From pjcd at sun.ac.za Tue Aug 27 13:13:30 2002 From: pjcd at sun.ac.za (John Dovey) Date: Tue, 27 Aug 2002 13:13:30 +0200 Subject: [Mailman-Users] How to reconstruct MIME Attachments References: <26021.1030435552@kanga.nu> Message-ID: <0bcc01c24dba$c6b34b50$664ae892@jsgbib.sun.ac.za> Hi, > > Hi, subscribers of my mailing lists keep asking me how they can > > download attached files from messages that are in the archives or > > reconstruct Attachments from the daily batches they receive. Since > > most of them seemed rather unexperienced (just as I am), could > > somebody point out an easy way to decode the MIME-attachments from the > > Archive pages... Or can I change something in the Preferences to make > > their lives easier? You can tell your subscribers to take a look at http://members.aol.com/decfaq/decfaq.htm which is a shell extension for decoding email etc.. Hope this Helps John >From the Website : General Program Information Decode Shell Extension is a freeware internet email attachment decoder for decoding files that contain one or more internet email attachments. The program works from Windows Explorer only. Basic usage is that you first save the complete internet message - text and attachment - to a file on disk. Then you use Windows Explorer to navigate to the file you saved, highlight the file, right click, and select 'Decode' from the menu. See Basic Decoding Steps for more information and follow the above links to the examples for more information on actual usage. Decode Shell Extension can decode Base64(MIME), yEnc, BinHex (Mac format), quoted-printable, plain text, XXENCODED, and User (table) encoded files. Support for yEnc is new to version 4.6. The program can decode multiple attachments within a single message files and multi-part files (already concatenated). From curt at acm.org Tue Aug 27 19:51:03 2002 From: curt at acm.org (curt brune) Date: Tue, 27 Aug 2002 10:51:03 -0700 Subject: [Mailman-Users] Mailman + htdig integration howto Message-ID: <20020827175103.GN11277@lenin.net> Is there a HOWTO for integrating htdig with Mailman ? Please cc me. Cheers, Curt From John at MyOfficeOnThe.Net Tue Aug 27 22:30:14 2002 From: John at MyOfficeOnThe.Net (Rev John J Macuga III) Date: Tue, 27 Aug 2002 16:30:14 -0400 Subject: [Mailman-Users] What Now In-Reply-To: <13828F680182D511893300508BD6831701EA8451@oscex2-bu.osc.uscg.mil> Message-ID: I just ran the mailman RPM from RedHat. What now? Where do I look for instructions on the next steps? Ignorant but GRATEFULL. JJ From david at gitman.net Wed Aug 28 03:16:04 2002 From: david at gitman.net (David Gitman) Date: Tue, 27 Aug 2002 21:16:04 -0400 Subject: [Mailman-Users] Permission problems In-Reply-To: <1030436952.3d6b385892f5e@mail.camp.lv> Message-ID: <004c01c24e30$7af5c8c0$1401a8c0@ack> I checked the mailman user crontab. I'm sure mailman it's running it. [-d] -----Original Message----- From: mailman-users-admin at python.org [mailto:mailman-users-admin at python.org] On Behalf Of janis at camp.lv Sent: Tuesday, August 27, 2002 4:29 AM To: mailman-users at python.org Subject: Re: [Mailman-Users] Permission problems Hi! It could be that there is problem with the cron. Mailman's cron jobs has to be executed w user/group mailman and seems that they are not. Janis Putrams > Hi! > > I've got a Mailman problem. Surprised? :) > After a reboot the mailing-lists stopped working. > Mailing a specific person is still working though. I > use exim and Mailman. Let's start from the > beginning. This line is in /etc/inetd.conf: > > smtp stream tcp nowait mail /usr/sbin/exim exim -bs > > > When I send a mail to selinux-drift mailing-list I > get this in /var/log/exim/mainlog > > 2002-08-25 22:50:24 17j4L2-0007Bo-00 <= > timte878 at student.liu.se H=igloo.df.lth.se > [194.47.250.47] U=root P=esmtp S=1243 > id=399a03e0aa.3e0aa399a0 at student.liu.se > 2002-08-25 22:50:26 17j4L2-0007Bo-00 => > |/home/mailman/mail/wrapper post selinux-drift > D=system_aliases > T=address_pipe > 2002-08-25 22:50:26 17j4L2-0007Bo-00 Completed > > I don't know what should be here, but it seems to be > ok. I now assume that Mailman got the mail that it's > supposed to forward to everyone on the list. Right? > The mailman configuration is: > selinux-drift: "|/home/mailman/mail/wrapper post > selinux-drift" > > /home/mailman/bin/check_perms returns "No problems > found" > > > The mailman logs > > /home/mailman/logs/qrunner: > Aug 25 13:43:03 2002 (13379) Could not acquire > qrunner lock > > /home/mailman/logs/post shows all sendings that > succeeded. There's no entry from Aug 21. > /home/mailman/logs/bounce shows no entry after Aug 18. > > The most interesting is /home/mailman/logs/error. I > attached it. The last line says: > IOError: [Errno 13] Permission denied: > '/home/mailman/qfiles/482cxxxxxxxxxxx.db' > > Seems there's something wrong with the permissions. > > $ ls -ld qfiles > drwxrwsr-x 2 root mailman 28672 Aug 25 23:29 qfiles/ > > In the qfiles directory every .db and .msg file has: > -rw-rw-r-- 1 list mailman > > Anyone have any clue what's wrong here? > > Cheers, > Tim > ------------------------------------------------------ Mailman-Users mailing list Mailman-Users at python.org 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/ From mailman-users at imc.nl Wed Aug 28 08:41:10 2002 From: mailman-users at imc.nl (Roelf Schreurs) Date: Wed, 28 Aug 2002 08:41:10 +0200 Subject: [Mailman-Users] errors log Message-ID: <000801c24e5d$e56e95b0$c764a8c0@ads.intra.imc> Hi I get the following error in my error log. Aug 27 10:10:10 2002 (26463) Uncaught runner exception: unpack list of wrong size Aug 27 10:10:10 2002 (26463) Traceback (most recent call last): File "/opt/mailman/Mailman/Queue/Runner.py", line 105, in _oneloop self._onefile(msg, msgdata) File "/opt/mailman/Mailman/Queue/Runner.py", line 154, in _onefile keepqueued = self._dispose(mlist, msg, msgdata) File "/opt/mailman/Mailman/Queue/IncomingRunner.py", line 129, in _dispose status = self._dopipeline(mlist, msg, msgdata, pipeline) File "/opt/mailman/Mailman/Queue/IncomingRunner.py", line 152, in _dopipeline sys.modules[modname].process(mlist, msg, msgdata) File "/opt/mailman/Mailman/Handlers/ToDigest.py", line 76, in process g(msg, unixfrom=1) File "/opt/mailman/pythonlib/email/Generator.py", line 81, in flatten self._write(msg) File "/opt/mailman/pythonlib/email/Generator.py", line 109, in _write self._dispatch(msg) File "/opt/mailman/pythonlib/email/Generator.py", line 128, in _dispatch main, sub = ctype.split('/') ValueError: unpack list of wrong size What does this mean? Roelf -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/mailman-users/attachments/20020828/5feb047f/attachment.htm From helmutm at cyberdev.org Wed Aug 28 10:26:54 2002 From: helmutm at cyberdev.org (Helmut Merz) Date: Wed, 28 Aug 2002 10:26:54 +0200 Subject: [Mailman-Users] Permission problems In-Reply-To: <004c01c24e30$7af5c8c0$1401a8c0@ack> References: <004c01c24e30$7af5c8c0$1401a8c0@ack> Message-ID: <02082810265401.13290@merz05> Hi David, Am Mittwoch, 28. August 2002 03:16 schrieb David Gitman: > I checked the mailman user crontab. I'm sure mailman it's > running it. and are you sure that user "mailman" is in group "mailman"? - I once had it in "users" (default group for new users), with a similar effect :-( Helmut From R.Barrett at ftel.co.uk Wed Aug 28 11:24:10 2002 From: R.Barrett at ftel.co.uk (Richard Barrett) Date: Wed, 28 Aug 2002 10:24:10 +0100 Subject: [Mailman-Users] Mailman + htdig integration howto In-Reply-To: <20020827175103.GN11277@lenin.net> Message-ID: <5.1.0.14.2.20020828100029.02b2bb38@pop.ftel.co.uk> At 10:51 27/08/2002 -0700, curt brune wrote: >Is there a HOWTO for integrating htdig with Mailman ? > >Please cc me. > >Cheers, >Curt See http://www.python.org/cgi-bin/faqw-mm.py?query=htdig&querytype=simple&casefold=yes&req=search for general search suggestions. Applied together the following two MM patches do a fairly comprehensive job of adding htdig search to mail archives produced by MM's internal archiver. The second patch - 444884 - adds a file INSTALL.htdig-mm you may find useful http://sourceforge.net/tracker/index.php?func=detail&aid=444879&group_id=103&atid=300103 http://sourceforge.net/tracker/index.php?func=detail&aid=444884&group_id=103&atid=300103 From wash at wananchi.com Wed Aug 28 11:30:59 2002 From: wash at wananchi.com (Odhiambo Washington) Date: Wed, 28 Aug 2002 12:30:59 +0300 Subject: [Mailman-Users] removal of subscriber list from web pages In-Reply-To: <13828F680182D511893300508BD6831701EA8451@oscex2-bu.osc.uscg.mil> References: <13828F680182D511893300508BD6831701EA8451@oscex2-bu.osc.uscg.mil> Message-ID: <20020828093059.GB16402@ns2.wananchi.com> * Rantanen, TC1 [20020827 22:04]: wrote: > Where can I find the entries (code) for roster/subscribe list, removal. > > Even with only admins set to see subscriber list only (to much info for > people to see), I want to take even this out of the listinfo web > page. http://your.site/mailman/admin/listname Login and configure the list. Take a good look at Privacy options. cheers - wash +----------------------------------+-----------------------------------------+ Odhiambo Washington, wash at wananchi.com . WANANCHI ONLINE LTD (Nairobi, KE) | http://ns2.wananchi.com/~wash/ . 1ere Etage, Loita Hse, Loita St., | GSM: (+254) 722 743 223 . # 10286, 00100 NAIROBI | +---------------------------------+------------------------------------------+ "Oh My God! They killed init! You Bastards!" --from a /. post From valen at tuatha.org Wed Aug 28 14:17:16 2002 From: valen at tuatha.org (John P. Looney) Date: Wed, 28 Aug 2002 13:17:16 +0100 Subject: [Mailman-Users] changing DEFAULT_HOST_NAME after creating lists Message-ID: <20020828121716.GD1757@jinny.ie> I created dozens of mailman lists on my new list server, without changing DEFAULT_HOST_NAME from 'localhost.localdomain'. So now all the mail lists now say that 'localhost.localdomain' is where their administrative UI is. Any ideas how I can change that (I've changed it in mm_cfg.py, but that doesn't seem to affect all the lists). Some nice automated scripty way of changing all the config.db's would be perfect.. John From fan98 at gmx.net Wed Aug 28 15:46:46 2002 From: fan98 at gmx.net (fanatic) Date: Wed, 28 Aug 2002 15:46:46 +0200 Subject: [Mailman-Users] mailman postfix howto Message-ID: <3D6CD446.6070300@gmx.net> hi ppl :) I don't know whether this is the right place to ask ... but anyway : does any of you have a good howto to make mailman run with postfix and debian ? many thanx in advance ------ fan98 at gmx.net From raquel at thericehouse.net Wed Aug 28 17:16:06 2002 From: raquel at thericehouse.net (Raquel Rice) Date: Wed, 28 Aug 2002 08:16:06 -0700 Subject: [Mailman-Users] changing DEFAULT_HOST_NAME after creating lists In-Reply-To: <20020828121716.GD1757@jinny.ie> References: <20020828121716.GD1757@jinny.ie> Message-ID: <20020828081606.50e81e3c.raquel@thericehouse.net> On Wed, 28 Aug 2002 13:17:16 +0100 "John P. Looney" wrote: > I created dozens of mailman lists on my new list server, without > changing DEFAULT_HOST_NAME from 'localhost.localdomain'. > > So now all the mail lists now say that 'localhost.localdomain' is > where > their administrative UI is. Any ideas how I can change that (I've > changed it in mm_cfg.py, but that doesn't seem to affect all the > lists). > > Some nice automated scripty way of changing all the config.db's > would be > perfect.. > > John I was hosting some lists on one of my domains. Later they got their own domain and I had to move their lists over to their domain. All I did was to go to the first page of the web administration, almost to the bottom of the "General Options" there are two fields, "Host name this list prefers." and "Base URL for Mailman web interface.". Of course, this assumes that you have your machine set up to send/receive mail for the new domain. -- Raquel ============================================================ Silent gratitude isn't much use to anyone. --Gladys Browyn Stern From vic at vgg.sci.uma.es Wed Aug 28 19:54:18 2002 From: vic at vgg.sci.uma.es (Victoriano Giralt) Date: Wed, 28 Aug 2002 19:54:18 +0200 (CEST) Subject: [Mailman-Users] mailman postfix howto In-Reply-To: <3D6CD446.6070300@gmx.net> References: <3D6CD446.6070300@gmx.net> Message-ID: <34994.62.36.189.111.1030557258.squirrel@vgg.sci.uma.es> > I don't know whether this is the right place to ask ... but anyway : It is. > does any of you have a good howto to make mailman run with > postfix and debian ? README.postfix in Mailman sources (any *nix will do) -- Victoriano Giralt Systems Manager Central Computing Facility University of Malaga SPAIN From ashley at pcraft.com Wed Aug 28 20:09:12 2002 From: ashley at pcraft.com (Ashley M. Kirchner) Date: Wed, 28 Aug 2002 12:09:12 -0600 Subject: [Mailman-Users] Serialize? Message-ID: <3D6D11C8.FD853007@pcraft.com> Has anyone ever thought of some way to serialize outgoing messages? I realize this will probably mean one single message per user (as opposed to what it does now, a single one per multiple recipients), however I keep seeing requests for this. Some way to include the user's email address in the body of the message, or something similar. Is there any other method of doing this, be it an external script that does it before handing it off to the MTA, something. Ideas anyone? -- W | I haven't lost my mind; it's backed up on tape somewhere. +-------------------------------------------------------------------- Ashley M. Kirchner . 303.442.6410 x130 IT Director / SysAdmin / WebSmith . 800.441.3873 x130 Photo Craft Laboratories, Inc. . 3550 Arapahoe Ave. #6 http://www.pcraft.com ..... . . . Boulder, CO 80303, U.S.A. From davereed at w5sv.org Wed Aug 28 20:08:09 2002 From: davereed at w5sv.org (David F. Reed) Date: Wed, 28 Aug 2002 13:08:09 -0500 Subject: [Mailman-Users] changing DEFAULT_HOST_NAME after creating lists In-Reply-To: <20020828081606.50e81e3c.raquel@thericehouse.net> References: <20020828121716.GD1757@jinny.ie> <20020828081606.50e81e3c.raquel@thericehouse.net> Message-ID: <20020828180809.M55410@w5sv.org> There is a place in the overall configuration (one of the .py scripts) that you can change the entry of all of them... On a RedHat 7.3 system, it is /var/mailman/Mailman/mm_cfg.py On other systems, I would think a locate mailman|grep mm_cfg.py would find it.. Edit variable DEFAULT_HOST_NAME = Good luck; if you have a moent for it, I am curious how you moved all the lists, archives, etc. --Dave David F. Reed -> email: W5SV at arrl.net (for pgp key: davereed at W5SV.org http://keys.pgp.com/ ) ---------- Original Message ----------- From: Raquel Rice To: mailman-users Sent: Wed, 28 Aug 2002 08:16:06 -0700 Subject: Re: [Mailman-Users] changing DEFAULT_HOST_NAME after creating lists > On Wed, 28 Aug 2002 13:17:16 +0100 > "John P. Looney" wrote: > > > I created dozens of mailman lists on my new list server, without > > changing DEFAULT_HOST_NAME from 'localhost.localdomain'. > > > > So now all the mail lists now say that 'localhost.localdomain' is > > where > > their administrative UI is. Any ideas how I can change that (I've > > changed it in mm_cfg.py, but that doesn't seem to affect all the > > lists). > > > > Some nice automated scripty way of changing all the config.db's > > would be > > perfect.. > > > > John > > I was hosting some lists on one of my domains. Later they got their > own domain and I had to move their lists over to their domain. All > I did was to go to the first page of the web administration, almost > to the bottom of the "General Options" there are two fields, "Host > name this list prefers." and "Base URL for Mailman web interface.". > Of course, this assumes that you have your machine set up to > send/receive mail for the new domain. > > -- > Raquel > ============================================================ > Silent gratitude isn't much use to anyone. > --Gladys Browyn Stern > > ------------------------------------------------------ > Mailman-Users mailing list > Mailman-Users at python.org > 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/ ------- End of Original Message ------- From listmail at gearyweb.com Wed Aug 28 20:08:42 2002 From: listmail at gearyweb.com (Michael Geary) Date: Wed, 28 Aug 2002 12:08:42 -0600 Subject: [Mailman-Users] mailman postfix howto In-Reply-To: <34994.62.36.189.111.1030557258.squirrel@vgg.sci.uma.es> Message-ID: <2FC0F786-BAB1-11D6-AE5F-003065B85DAA@gearyweb.com> Umm. There actually _isn't_ such a file in the Mailman source. However, I have recently set up Mailman with postfix on Darwin (OS X). I found the instructions in the INSTALL file to be correct and helpful. The one tricky thing for me was that I had to place the following information in my /etc/aliases file: ## test mailing list ## created: 25-Aug-2002 mailman test: "|/usr/local/mailman/mail/wrapper post test" test-admin: "|/usr/local/mailman/mail/wrapper mailowner test" test-request: "|/usr/local/mailman/mail/wrapper mailcmd test" test-owner: test-admin AND I had to map actual addresses to these 'users' in my /etc/postfix/virtual file: test at mydomain.org test test-request@ mydomain.org test-request test-admin@ mydomain.org test-admin test-owner@ mydomain.org test-owner Then do the usual postmap & newaliases commands. If things aren't working for you, what is happening? -michael On Wednesday, August 28, 2002, at 11:54 AM, Victoriano Giralt wrote: > >> I don't know whether this is the right place to ask ... but anyway : > It is. >> does any of you have a good howto to make mailman run with >> postfix and debian ? > README.postfix in Mailman sources (any *nix will do) From vic at vgg.sci.uma.es Wed Aug 28 20:19:31 2002 From: vic at vgg.sci.uma.es (Victoriano Giralt) Date: Wed, 28 Aug 2002 20:19:31 +0200 (CEST) Subject: [Mailman-Users] mailman postfix howto In-Reply-To: <2FC0F786-BAB1-11D6-AE5F-003065B85DAA@gearyweb.com> References: <34994.62.36.189.111.1030557258.squirrel@vgg.sci.uma.es> <2FC0F786-BAB1-11D6-AE5F-003065B85DAA@gearyweb.com> Message-ID: <35022.62.36.189.111.1030558771.squirrel@vgg.sci.uma.es> > Umm. There actually _isn't_ such a file in the Mailman source. Yes there is, just wrong casing: mailman-2.1b2/README.POSTFIX I don't remember about 2.0, I've moved to 2.1b3. Amongst many other niceties, it interfaces nicely with postfix. -- Victoriano Giralt Systems Manager Central Computing Facility University of Malaga SPAIN From ashley at pcraft.com Wed Aug 28 21:54:23 2002 From: ashley at pcraft.com (Ashley M. Kirchner) Date: Wed, 28 Aug 2002 13:54:23 -0600 Subject: [Mailman-Users] Serialize? References: <3D6D11C8.FD853007@pcraft.com> <3D6D2798.2DCCF851@whidbey.com> Message-ID: <3D6D2A6F.C8E05BA8@pcraft.com> "G. Armour Van Horn" wrote: > Those groups of multiple recipients are large - several hundred at a time. To make > the change you suggest means multiplying your bandwidth and server requirements by > the average size of your active lists. My most active list has 240 digest > subscribers and 300 regular subscribers. Both appear to be handled in a single > command. Done one at a time there would be a huge increase in CPU load and > bandwidth, and folks at the end of a list would get their messages later than those > at the head of the list. Ya, I realize all of this, however I have clients who would like, are requesting, and generally want this type of mechanism built in. The main reason is because many of the subscribers no longer remember what e-mail address they used to subscribe, and consequently don't know what to use to UNsubscribe. Having Mailman serialize its messages will provide a simple way for them to unsubscribe. -- W | I haven't lost my mind; it's backed up on tape somewhere. +-------------------------------------------------------------------- Ashley M. Kirchner . 303.442.6410 x130 IT Director / SysAdmin / WebSmith . 800.441.3873 x130 Photo Craft Laboratories, Inc. . 3550 Arapahoe Ave. #6 http://www.pcraft.com ..... . . . Boulder, CO 80303, U.S.A. From wash at wananchi.com Wed Aug 28 07:46:16 2002 From: wash at wananchi.com (Odhiambo Washington) Date: Wed, 28 Aug 2002 08:46:16 +0300 Subject: [Mailman-Users] Mailman + htdig integration howto In-Reply-To: <20020827175103.GN11277@lenin.net> References: <20020827175103.GN11277@lenin.net> Message-ID: <20020828054616.GJ16402@ns2.wananchi.com> * curt brune [20020828 03:29]: wrote: > Is there a HOWTO for integrating htdig with Mailman ? Yes, there is, although I don't remember where it resides, but I have attached it. cheers - wash +----------------------------------+-----------------------------------------+ Odhiambo Washington, wash at wananchi.com . WANANCHI ONLINE LTD (Nairobi, KE) | http://ns2.wananchi.com/~wash/ . 1ere Etage, Loita Hse, Loita St., | GSM: (+254) 722 743 223 . # 10286, 00100 NAIROBI | +---------------------------------+------------------------------------------+ "Oh My God! They killed init! You Bastards!" --from a /. post -------------- next part -------------- Installing and Using the Mailman-htdig Integration ================================================== This patch: http://sourceforge.net/tracker/index.php?func=detail&aid=444884&group_id=103&atid=300103 Contents ======== Prereqisites Compatibility History Introduction Installing and Building Mailman with this patch What is Installed by the Patch Configuration of Mailman-htdig Integration Health Warning on the packet! Starting from Scratch (Again) General htdig Permissions Considerations Local htdig Configuration Remote htdig Configuration Upgrading an Existing Standard Mailman Installation Changing from local to remote htdig or vice versa Coping with htdig Upgrades Changing the Addressing Scheme of your web_page_url Operational Information Notes and Warnings Contributors Appendices Appendix 1 -Technique for htdigging when Mailman's DEFAULT_URL uses the https Prerequisites ============ Prior to installing this patch you should also have installed the patch that provides enhanced indexing of Mailman archives see: http://sourceforge.net/tracker/index.php?func=detail&aid=444879&group_id=103&atid=300103 You must have a working installation of htdig with htsearch available via CGI on your HTTP server installed on either the machine on which you are running Mailman or on another machine which has access to Mailman list archives via NFS or some similarly competent network file sharing scheme. Regardless of how you configure things to provide Mailman's Web UI, if its gives normal operation of the /mailman/private CGI script for providing access to private list archives, it should also support access to htdig search results via the /mailman/htdig CGI script. Compatibility ============= htdig-2.0.12-0.1.patch - Mailman 2.0.12 htdig-2.0.11-0.1.patch - Mailman 2.0.11 htdig-2.0.10-0.2.patch - Mailman 2.0.10 htdig-2.0.10-0.1.patch - Mailman 2.0.10 htdig-2.0.9-0.1.patch - Mailman 2.0.9 htdig-2.0.8-0.1.patch - Mailman 2.0.8, 2.0.7, 2.0.6 and probably 2.0.3, 2.0.4 and 2.0.5 History ======= Previous versions - original versions of this patch provided most of the features described here with the main exception being support for remote htdig, that is running htdig on a different system to Mailman. They were also baked in some configuration assumptions, which are now configurable. htdig-2.0.12-0.1.patch - latest version: 1. Rebuilt patch to get no-comment application on Mailman 2.0.12 2. Added HTDIG_EXTRAS facility to allow arbitrary htdig configuration parameters to be specified for addition to every htdig.conf file created i.e. site wide additions. See comments below on the use of HTDIG_EXTRAS. htdig-2.0.11-0.1.patch: 1. No substantive change. Simply rebuilt patch to get no-comment application on Mailman 2.0.11 htdig-2.0.10-0.2.patch: 1. Python 2.2 compatibility fixes to nightly_htdig cron script and its relatives. Doing import * inside a function removed. 2. Added note on potential problems with htdig and file permissions. htdig-2.0.10-0.1.patch: 1. change in src/Makefile.in to get clean patch application to MM 2.0.10 htdig-2.0.9-0.1.patch: 1. minor cosmetic changes to get clean patch application to MM 2.0.9 htdig-2.0.8-0.1.patch: 1. resolves a problem with the integration of htdig when the web_page_url for a list, which is usually the same as DEFAULT_URL from either $prefix/Mailman/Defaults.py or $prefix/Mailman/mm_cfg.py, doesn't use the http addressing scheme. This arises because htdig will only build indices if the URLs for pages use the http addressing scheme. There is a work-around for this problem posted in htdig's mail archives - see the copy in Appendix 1 to this document. 2. This patch revision implements the solution documented in that e-mail. If non-http URLs are used by the web_page_url of a list an additional htdig configuration file for use by htsearch is generated. 3. In all other respects the operation of the Mailman-htdig integration remains unchanged. There is no benefit in upgrading to this revised patch unless you need to use other than http addressing in your DEFAULT_URL or set other than http addressing in the web_page_url configuration of any of your lists. 4. If changing to or from a non-http addressing scheme then the per list htdig config files of the lists affected and their associated htdig indices must be reconstructed. See the section below entitled 'Changing the Addressing Scheme of your web_page_url' for details of how to do this. htdig-2.0.6-0.3.patch: 1. adds support for remote htdig, that is: running htdig on a different system to Mailman. 2. enhances the configurability of the integration. Some of the programmed assumptions made in previous versions are now configurable in mm_cfg.py. The configuration variables concerned default to the previous fixed values so that this version is backwards compatible with earlier versions. 3. does some minor cosmetic code changes. 4. extends the associated documentation. Introduction ============ This integration enables use of the htdig (http://www.htdig.org) search engine for searching mail list archives produced by pipermail, Mailman's built-in archiver. You can use htdig without applying these patches to Mailman but you may find it awkward to achieve some of the features offered by this patch. The main features of the patch are: 1. per list search facility with a search form on each list's TOC page. 2. maintenance of privacy of private archives. The user has to establish their credentials via the normal private archive access mechanism before any access via htdig is allowed. 3. a common base URL for both public and private archive access via htsearch results. This means that htdig indices are unaffected by changing an archive from private to public and vice versa. All access to archives via htdig is controlled by a wrapped CGI script called htdig.py. 4. Choice of running htdig on the machine running Mailman (aka local htdig) or running htdig on another machine which has access to Mailman's archives via NFS or some similarly competent network file sharing scheme (aka remote htdig). 5. cron activated scripts and crontab entry to run htdig regularly to maintain the per list search indices. 6. automatic creation, deletion and maintenance of htdig configuration files and such. Beyond installing htdig and telling Mailman where it is via mm_cfg you do not have to do much other setup. Installing and Building Mailman with this patch ============================================== Create your Mailman build directory in the normal way. You can apply the patch to either a fresh expansion of the Mailman source distribution or the one you used to build a currently working Mailman installation. Execute the following command in the Mailman build directory: patch -p1 < htdig-2.0.8-0.1.patch Follow the configure and make procedures for regular Mailman as given in the $build/INSTALL file Then follow the Mailman-htdig configuration instructions given below. What is Installed by the Patch ============================== The patch amends: ---------------- $prefix/Mailman/Archiver/HyperArch.py the changes in this file set up the per list htdig stuff such as config files and adds the search forms to the list TOC pages. $build/Mailman/Defaults.py.in adds the default configuration variables needed to support the mailman-htdig integration $build/cron/crontab.in.in adds the nightly_htdig cron script to the default crontab $build/Makefile.in $build/cron/Makefile.in $build/src/Makefile.in $build/bin/Makefile.in necessary changes to Makefiles used for installing Mailman The patch adds: -------------- $prefix/cgi-bin/htdig $prefix/Mailman/Cgi/htdig.py these are a CGI script and its wrapper, which is always on the path of URLs returned from searches of htdig indices. The script provides secure access to such URLs in the same way that the $prefix/cgi-bin/private and $prefix/Mailman/Cgi/private.py. htdig.py ensures private archives are kept private, applying the same criteria for permitting access as private.py, and delivering material from public archives without demanding any authentication. $prefix/bin/blow_away_htdig this is a utility script for removing per list htdig data, e.g. the config file and indices/db files. This is necessary when: a. ceasing use of the Mailman-htdig integration b. moving from local to remote htdig or vice-versa c. upgrading to a version of htdig which has an incompatible index/db file format d. changing the addressing scheme (http versus https) in the web_page_url configuration variable of a list $prefix/cron/nightly_htdig $prefix/cron/remote_nightly_htdig $prefix/cron/remote_nightly_htdig_noshare $prefix/cron/remote_nightly_htdig.pl These scripts all do the same thing; they can be installed as a cron task and run regularly to invoke htdig's rundig script to update mailing list search indices. Only one of these scripts is used, the choice of which depending on your system configuration. nightly_htdig is used where Mailman and htdig run on the same system. the remote_... scripts are used where Mailman and htdig live on different systems. You choose which one suits your needs best: remote_nightly_htdig uses the same python files on both systems, that is the same .py and .pyc files are accessed, and it hence depends on compatible bytecode between the Mailman system and htdig system. It also accesses Mailman data files and depends on compatibility of data files contents, for example pickled python values. This should work OK if the same version of python is being run on both systems even where the systems are not heterogeneous, for example one is Sun/Solaris and the other is PC/Linux. remote_nightly_htdig_noshare shares no python files between the two systems. While it is still written in python it but acquires information from the file system using directory listings and stat operations. remote_nightly_htdig.pl is a rewrite of remote_nightly_htdig_noshare in Perl. It is for use where the htdig system does not have python available on it: in which case, shame on you. $prefix/cgi-bin/updateTOC $prefix/Mailman/Cgi/updateTOC.py these are a CGI script and its wrapper, for use where Mailman and htdig live on different systems. The script is a work-around for the problem of using remote_nightly_htdig, remote_nightly_htdig_noshare or remote_nightly_htdig.pl which precludes these scripts from directly updating the TOC page of each archived list. Instead, these scripts call this CGI script to do that for them. This CGI script will not operate when entered as a URL from a browser. Configuration of Mailman-htdig Integration ========================================== Configuration of the Mailman-htdig integration is carried out on the Mailman side. While you must have to hand some information about your htdig installation, you should not have to tinker with htdig for the integration to work. Most of the configuration of the integration is done by values assigned to python variables in either $prefix/Mailman/Defaults.py or $prefix/Mailman/mm_cfg.py. If you opt to run htdig on a different machine or under a different HTTP server to the one running the HTTP server which provides Mailman's Web UI you will also have to edit whichever of the patch's three htdig related cron scripts you opt to run (remote_nightly_htdig, remote_nightly_htdig_noshare, or remote_nightly_htdig.pl) to add a small amount of configuration information. Health Warning on the packet! ----------------------------- Be careful when editing configuration information in $prefix/Mailman/mm_cg.py: the only Mailman config file you should be editing. Check, double check and then recheck before going ahead. If you get either variable names or their values wrong a lot of confusion in the operation of both Mailman and htdig can result. You (and others supporting you) can spend hours trying to identify problems and looking for non-existent bugs as a consequence of such editing errors. Expect to find errors in these instructions; compensate for them and tell me when you do (r.barrett at ftel.co.uk). Also do read the htdig documentation, release notes etc. This patch integrates a working htdig with htsearch available through CGI. These notes are about Mailman and integrating it with that working htdig. It is up to you to sort out the htdig end of things. Starting from Scratch (Again) ----------------------------- This is getting ahead of things but some of you may already be asking "What if I've already been using an older version of this patch and want to start afresh", or "I want to change from local to remote htdig or vice versa" In these cases your friend will be the $prefix/bin/blow_away_htdig script. It removes existing htdig related stuff out of your Mailman installation to the extent that it was added by this patch and added to by the normal operation of pipermail and nightly_htdig. With that removed and a revised Mailman configuration, the patched code will start rebuilding the htdig data. But before you get carried away with blow_away_htdig, read the rest of these notes. General ------- This patch adds a number of default variables to the file $prefix/Mailman/Defaults.py that affect operation of the Mailman-htdig integration. These are in addition to the standard Mailman defaults in that file. If, in the light of what is said below, you decide any of these are incorrect, you can override them in $prefix/Mailman/mm_cfg.py [NOT IN Defaults.py! See the comments in Defaults.py for details]. By default the Mailman-htdig integration is NOT ENABLED by the installation of this patch; a default variable in Defaults.py turns off the operation of the integration. You have to actively override that default in mm_cfg.py to turn on operation of the integration. Once a list is created, changing most of these variables will have either no effect or a bad effect. You will need to run $prefix/bin/blow_away_htdig script and/or $prefix/bin/arch to rebuild the archive pages if you make significant changes to the Mailman-htdig integration configuration variables. The install process will not overwrite an existing mm_cfg.py file so you can freely make changes to this file. If you are re-installing a later version of this patch you may have to change what is already configured in the existing file and, if necessary, add extra configuration variables to it. Most of the Mailman-htdig control variables default to sensible values which you will not need to change, especially if you are using local htdig. The semantics of most variables apply to both local and remote htdig operation but with some the values assigned will depend on whether htdig is viewing things from the same or a remote machine. The first two variables control what is indexed by htdig. The values assigned are both embedded in the HTML generated by pipermail in the list archives and added. Changing the values of these variables will mean that all previously generated HTML pages in list archives will be out of date and you will probably want to rebuild existing archives using $prefix/bin/arch: ARCHIVE_INDEXING_ENABLE defines a string telling htdig that it should look at the following material when building it indices. Default: ARCHIVE_INDEXING_ENABLE = '' ARCHIVE_INDEXING_DISABLE defines a string telling htdig that it not should not look at the following material when building it indices. Default: ARCHIVE_INDEXING_DISABLE = '' USE_HTDIG - Semantics 0 - don't use integrated htdig, 1 - use it turns Mailman-htdig integration on or off. Defaults: USE_HTDIG = 0 Notes: 1. when USE_HTDIG is turned on the patched code in Mailman will start adding htdig stuff for any archiving-enabled mail lists as new posts for each list are handled by Mailman. Until a new post is made after enabling with USE_HTDIG an existing mail list's archive will not be htdig searchable. When the new post is handled: a. the list's personalised htdig config file is created b. necessary links to the htdig config file are created c. a search form is added to the TOC page for the list Even with this done, htdig searches only become available when htdig indices are constructed. This is done when one or other of the patch's htdig related cron scripts are run (nightly_htdig, remote_nightly_htdig, remote_nightly_htdig_noshare, or remote_nightly_htdig.pl, depending on how you configure your system). These can be run from the command line ahead of their scheduled cron time to get htdig searches operational. 2. Turning USE_HTDIG off will not remove htdig indices or search forms from existing archive-enabled lists. It will however stop htdig features from being added to newly created lists. If you want to eliminate htdig from your existing lists then use the $prefix/bin/blow_away_htdig script. HTDIG_ARCHIVE_URL this is the URL path that equates to the wrapper $prefix/cgi-bin/htdig which controls access to the $prefix/Mailman/Cgi/htdig.py script. Default: HTDIG_ARCHIVE_URL = '/mailman/htdig' It is highly unlikely that you will want to change from the default value unless you are also changing other variables such as PRIVATE_ARCHIVE_URL because of some non-standard installation decisions on your part. HTDIG_SEARCH_URL this is the URL of the htsearch CGI program part of the htdig package. Default: HTDIG_SEARCH_URL = '/cgi-bin/htsearch' The default assumes a single HTTP server providing access to htdig and to Mailman's web UI are on the Mailman machine and htsearch has been installed in the HTTP server's cgi-bin directory. This value will depend on your htdig installation decisions and HTTP server configuration files (typically /etc/httpd/httpd.conf on a late model Apache installation) i.e the ScriptAlias through which the htsearch CGI program is reached. HTDIG_FILES_URL this is the URL of the directory containing various HTML and Graphics files installed by htdig; files such as buttonr.gif, buttonl.gif and button1-10.gif. The URL must end with a '/'. Default: HTDIG_FILES_URL = '/htdig/' The default assumes the HTTP servers providing access to htdig and to Mailman's web UI are on the same machine and a symbolic link called 'htdig' has been put into your HTTP server's top level HTML directory which points to the directory your htdig install has put the actual files into; this link is often to /usr/share/htdig. This value will depend on your htdig installation decisions and HTTP server's configuration files (typically /etc/httpd/httpd.conf on a late model Apache installation) i.e the Alias through which the link to the htdig files are reached. HTDIG_CONF_LINK_DIR this is the name of a directory in which links to list specific htdig config files are placed. Default: HTDIG_CONF_LINK_DIR = os.path.join(VAR_PREFIX, 'archives', 'htdig') The VAR_PREFIX of the default is resolved to an actual file system path when when Mailman's 'make install' is run. The 'os.path.join' creates a full file system path by gluing together the three pieces when Mailman is run. This definition puts the directory alongside the default PUBLIC_ARCHIVE_FILE_DIR and PRIVATE_ARCHIVE_FILE_DIR. Unless you are changing the value of these variables you probably do not want to change HTDIG_CONF_LINK_DIR. HTDIG_RUNDIG_PATH this is the path in you file system to the rundig shell script that is installed as part of htdig. This tells one or other of the patch's htdig related cron scripts (nightly_htdig and remote_nightly_htdig) where to find rundig in order that they can execute it. Default: HTDIG_RUNDIG_PATH = '/usr/local/bin/rundig' HTDIG_MAILMAN_LINK the value of this is the name of a symbolic link you must create in the directory where htdig expects to find its configuration files. The target of this link is the directory whose path is the value of HTDIG_CONF_LINK_DIR. The value of this variable is embedded in the per list search forms in each list's TOC page generated by the patched code, where it tells htsearch where to find the list's htdig config file. Default: HTDIG_MAILMAN_LINK = 'htdig-mailman' REMOTE_HTDIG - Semantics 0 - htdig runs on local machine, 1 -on remote machine says whether htdig is run on the same machine as Mailman or on another machine. Default: REMOTE_HTDIG = 0 REMOTE_PRIVATE_ARCHIVE_FILE_DIR only relevant if REMOTE_HTDIG = 1. It is the file system path to the directory in which Mailman stores private archives, as seen by the machine running htdig. Default: REMOTE_PRIVATE_ARCHIVE_FILE_DIR = = os.path.join(VAR_PREFIX, 'archives', 'private') The VAR_PREFIX of the default is resolved to an actual file system path when when Mailman's 'make install' is run. The 'os.path.join' creates a full file system path by gluing together the three pieces when Mailman is run. If you assign a value to this in mm_cfg.pfg, just put the relevant explicit file system path in. HTDIG_EXTRAS You can assign a string value to this config variable and that string will be included in all of your site's list specific htidg configuration files when they are created. The value of the string can be any attribute declarations as defined at http://www.htdig.org/confindex.html. Be cautious in what you do with this. Most sites will not need to use this at all. But if you have some idiosyncratic htdig installation it might help overcome problems in integrating with Mailman. If you think you need to use it I suggest: 1. You try creating a test list without assigning a value to HTDIG_EXTRAS in $prefix/Mailman/mm.cfg.py 2. Enable archiving for that test list. 3. Send a message to the test list so that its archive is created together with its htdig configuration file. 4. Review the content of the list's htdig conf file in $prefix/archives/private//htdig/.conf. 5. You will see where the default value of HTDIG_EXTRAS from $prefix/Mailman/Defaults.py has been inserted. This value is only an htdig comment and does nothing. 6. Consider whether what you will assign to HTDIG_EXTRAS in $prefix/Mailman/mm.cfg.py will make sense in the context of the rest of the htdig conf file's contents. htdig Permissions Considerations ------------------------------------ Python scripts added by this patch (nightly_htdig and its relatives) run the htdig rundig script identified by HTDIG_RUNDIG_PATH to build search indices for Mailman archives. Code added by this patch generates per list htdig configuration files which are passed as a parameter to the rundig script. These configuration files identify a list specific directory ($prefix/archives/private//htdig) in which list specific data files generated by and used by htdig are to be placed. However, the rundig script identified by HTDIG_RUNDIG_PATH may attempt to generate some files in htdig's COMMON_DIR when it is first run by nightly_htdig; the files concerned are likely to be root2word.db, word2root.db, synonyms.db and possibly some others generated by htidg's htfuzzy program. The standard rundig script generates these files selectively if they do not already exist. Depending on how you have installed htdig and how the rundig script is first run, there may be a permissions problem when nightly_hdig executes rundig under the mailman UID if it tries to generate these files. You may need to either give the mailman UID write permission over htdig's COMMON_DIR or, before the nightly_htdig script is first run, run htdig's htfuzzy executable with a sufficiently privileged UID in the manner that the rundig script would run htfuzzy, to create any necessary files in COMMON_DIR. See htdig's documentation for further information on this topic. Local htdig Configuration ------------------------- This configuration is for when you are running Mailman, htdig, the HTTP server used to provide Mailman's web UI and htdig's htsearch CGI script, on the same machine. You will need to: 1. Set up a symbolic link in the directory where htdig expects to find its configuration files; this depends on how you configured and installed htdig but it is usually the directory containing htdig's default htdig.conf file. The target of this link is the directory whose path is assigned as the value of HTDIG_CONF_LINK_DIR. The name of the link must be same as the value you assign to HTDIG_MAILMAN_LINK. For example, use the command: ln -s /home/mailman/archives/htdig /etc/htdig-mailman 2. If different to the default value, add the definition of HTDIG_MAILMAN_LINK to file $prefix/Mailman/mm_cfg.py 3. If different to the default value, add the definition of HTDIG_RUNDIG_PATH to file $prefix/Mailman/mm_cfg.py. 4. Add the definition of USE_HTDIG with the value 1 to $prefix/Mailman/mm_cfg.py. USE_HTDIG = 1 If necessary you can override the values of any of the other configuration variables in file $prefix/Mailman/mm_cfg.py. In particular you might need to change the following URL variables from their defaults: HTDIG_SEARCH_URL and HTDIG_FILES_URL. These URLs can be just the path i.e. absolute URL on the same server as that which serves Mailman's Web UI, or a full URL identifying the protocol (http), server, server port and path, for example http://mailer.your.com:8080/cgi-bin/htdig/htsearch. Remote htdig Configuration -------------------------- This configuration is for when you are running htdig and an HTTP server providing access to htsearch on a different machine to that running Mailman and the HTTP server used to provide Mailman's web interface. For this configuration to work, htdig's programs, both those run from command lines such as rundig and those run via CGI such as htsearch, must be able to see Mailman archives through NFS. In the examples below we'll assume that /mnt/mailman-archives on the htdig machine maps to $prefix/mailman/archives on the Mailman machine. You should also arrange for he mailman UID and its GID to be common to both machines. Remember that when rundig is called on the htdig machine to produce search indices for each list it will be trying to write those files via NFS in Mailman's archive area and will thus need to run with an appropriate identity and permissions. The differences between the local and remote configuration are: 1. configuration values telling htdig where to find files are as viewed from the remote machine. 2. configuration values giving URLs that refer to htdiggy things have to be as viewed from the Mailman machine. You will need to: 1. Set up a symbolic link in the directory where htdig expects to find its configuration files; this depends on how you configured and installed htdig but it is usually the directory containing htdig's default htdig.conf file. The target of this link is the directory whose path is assigned as the value of HTDIG_CONF_LINK_DIR as seen from the remote machine running htdig. The name of the link must be same as the value you assign to HTDIG_MAILMAN_LINK. For example, use the command: ln -s /mnt/mailman-archives/htdig /etc/htdig-mailman 2. Add the definition of HTDIG_MAILMAN_LINK to file $prefix/Mailman/mm_cfg.py. For example: HTDIG_MAILMAN_LINK = 'htdig-mailman' 3. Add the definition of HTDIG_RUNDIG_PATH to file $prefix/Mailman/mm_cfg.py. This is path to rundig on the remote machine running htdig. For example: HTDIG_RUNDIG_PATH = '/usr/local/bin/rundig' 4. Add the definition of HTDIG_SEARCH_URL to file $prefix/Mailman/mm_cfg.py. This must be a full URL referring to the htsearch CGI program on the remote htdig machine, as seen from the Mailman local machine. For example: HTDIG_SEARCH_URL = 'http://htdiggy.your.com/cgi-bin/htsearch' 5. Add the definition of HTDIG_FILES_URL to file $prefix/Mailman/mm_cfg.py. This must be a full URL referring to the directory containing htdig files on the remote htdig machine as seen from the Mailman local machine. This URL must end with a '/'. For example: HTDIG_FILES_URL = 'http://htdiggy.your.com/htdig/' 6. Add the definition of REMOTE_PRIVATE_ARCHIVE_FILE_DIR to $prefix/Mailman/mm_cfg.py. This must be the absolute file system path to the directory in which Mailman stores private archives as seen by the machine running htdig. For example: REMOTE_PRIVATE_ARCHIVE_FILE_DIR = '/mnt/mailman-archives/private' 7. Add the definition of USE_HTDIG with the value 1 to $prefix/Mailman/mm_cfg.py. USE_HTDIG = 1 8. Add the definition of REMOTE_HTDIG with the value 1 to $prefix/Mailman/mm_cfg.py. REMOTE_HTDIG = 1 You have to choose one of the three remote_nightly_htdig scripts found in $prefix/cron - remote_nightly_htdig, remote_nightly_htdig_noshare and remote_nightly_htdig.pl - and transfer it to the htdig machine. See above under heading "What is Installed by the Patch/What the patch adds" for an explanation of the differences between these scripts, which all do the same basic job. You should add the script to the crontab for the mailman UID on the htdig machine. But first you need to edit the selected script to add some configuration information. What has to be added depends on which script you opt to use. In each case the variables concerned are declared near the top of the script and you just have to enter the appropriate values: remote_nightly_htdig you only need to set the value of the python variable MAILMAN_PATH to be the directory $prefix as seen from the htdig machine. The whole Mailman installation must be accessible via NFS in order to use this script. remote_nightly_htdig_noshare you need to copy the values for the following configuration variables from either $prefix/Mailman/mm_cfg.py or $prefix/Mailman/Defaults.py to the script: DEFAULT_URL, REMOTE_PRIVATE_ARCHIVE_FILE_DIR, HTDIG_RUNDIG_PATH. The variables declared in remote_nightly_htdig_noshare use the same names. This script only requires that the archives directory of the Mailman installation be accessible via NFS. Note: DEFAULT_URL is not a Mailman-htdig integration specific configuration variable. In most installations DEFAULT_URL is setup automatically by the 'make install' in $prefix/Mailman/Defaults.py and not usually overridden in $prefix/Mailman/mm_cfg.py. You should find it defined near the top of Defaults.py. remote_nightly_htdig.pl you need to copy the values for the following configuration variables from either $prefix/Mailman/mm_cfg.py or $prefix/Mailman/Defaults.py to the script: DEFAULT_URL, REMOTE_PRIVATE_ARCHIVE_FILE_DIR, HTDIG_RUNDIG_PATH. Being a Perl script, the variables in remote_nightly_htdig.pl use the same names but prefixed with the '$' character. This script only requires that the archives directory of the Mailman installation be accessible via NFS. Note 1: DEFAULT_URL is not a Mailman-htdig integration specific configuration variable. In most installations DEFAULT_URL is setup automatically by the 'make install' in $prefix/Mailman/Defaults.py and not usually overridden in $prefix/Mailman/mm_cfg.py. You should find it defined near the top of Defaults.py Note 2: You may need to change the '#! /usr/bin/env perl' on the first line of this script if that doesn't find your Perl executable. You may also need to verify the Perl packages used by this script are installed on your system. As with the nightly_htdig script when running with local htdig, these scripts can be run from the command line using the mailman UID in order to get htdig to construct an initial set of indices. Upgrading an Existing Standard Mailman Installation --------------------------------------------------- You will want to suspend operation of Mailman while doing the upgrade. Consider doing a shutdown of the MTA delivering mail to Mailman and removing Mailman's crontab. Configure and install as described above. Restart Mailman's crontab and restart your MTA's delivery to Mailman. If your installation already has archives: 1. Send a message to each of your archive-enabled lists. This will stimulate the setup of the new per list htdig config files in the Mailman archives. 2. Consider rebuilding your existing archives with $prefix/bin/arch. This will embed the ARCHIVE_INDEXING_ENABLE and ARCHIVE_INDEXING_DISABLE in the regenerated archive pages and, after nightly_htdig has been run, give improved search results. 3. Run the nightly_htdig script from the command line to generate a new set of per list htdig search indices. Changing from local to remote htdig or vice versa ------------------------------------------------- You will want to suspend operation of Mailman while making this change. Consider doing a shutdown of the MTA delivering mail to Mailman and removing Mailman's crontab. Run the $prefix/bin/blow_away_htdig script to remove all existing per list htdig config files and htdig indices/db files. Configure per the instructions above for the local or remote target. Restart Mailman's crontab and restart your MTA's delivery to Mailman. Send a message to each of your archive-enabled lists. This will stimulate the set up of the new per list htdig config files in Mailman archives. Run the nightly_htdig script from the command line to generate a new set of per list htdig search indices. Coping with htdig Upgrades -------------------------- If you change the version of htdig you run, you may find that the indices built with the ealier version are not compatible with the newer version of htdig's programs. In that case do the following: 1. You will want to suspend operation of Mailman while making this change. Consider doing a shutdown of the MTA delivering mail to Mailman and removing Mailman's crontab. 2. Run the $prefix/bin/blow_away_htdig script with the -i flag to remove all existing per list htdig indices/db files. 3. Restart Mailman's crontab and restart your MTA's delivery to Mailman. 4. Run the nightly_htdig script from the command line to generate new sets of per list htdig search indices. Changing the Addressing Scheme of your web_page_url --------------------------------------------------- If you change the addressing scheme of the web_page_url for a list to or from http then you will need to rebuild the list's htdig configuration file(s) and the related htdig indices. Do the following: 1. You may want to suspend operation of Mailman while making this change. Consider doing a shutdown of the MTA delivering mail to Mailman and removing Mailman's crontab. 2. Run the $prefix/bin/blow_away_htdig script to remove all existing per list htdig material for the list(s) concerned. 3. Restart Mailman's crontab and restart your MTA's delivery to Mailman. 4. Send a message to each affected list to provoke reconstruction of the list's htdig config file(s). 5. Run the nightly_htdig script from the command line to generate new sets of per list htdig search indices. Operational Information ======================= If you have just turned USE_HTDIG on or just used $prefix/bin/blow_away_htdig (without the -i flag) there will initially be no per list htdig information saved in the archives. When the first post to each archive-enabled list is archived by pipermail, the per list htdig config file will be constructed and some directories and links added to your Mailman archive directories. The htdig search form will be added to list's TOC page. However, until one of the nightly_htdig scripts is run no htdig indices will be constructed. You can either wait for the script to run as a cron job or run it (while using the mailman UID) from the command line. Notes and Warnings ================== Redhat 7.1 and 7.2 installations: If you install htdig from the htdig-3.2.0 binary rpm of RH7.1/2 Binary CD 1 of 2 you also have to install the htdig-web-3.2.0 binary rpm. This may be from RH 7.1/2 Binary CD 2 of 2 or CD 1 of 2 depending on whether you are using actual CDs or downloaded CD images. Apache/htdig issues The htsearch CGI script part of htdig and some associated HTML and graphics file must be accessible via you web server and the Mailman configuration variables HTDIG_SEARCH_URL and HTDIG_FILES_URL setup accordingly. Depending on how you install htdig and Apache you may need to add Alias and/or ScriptAlias directives to you Apache configuration file to make the htdig components accessible. Check the Apache and htdig documentation. Contributors ============ Original author and maintainer: Richard Barrett - r.barrett at ftel.co.uk Past bug fixes: Nigel Metheringham Testers: Mark T. Valites , Rehan van der Merwe Appendices ========== Appendix 1 -Technique for htdigging when Mailman's DEFAULT_URL uses the https ---------------------------------------------------------------------------- A technique for htdigging when Mailman's DEFAULT_URL uses the https addressing scheme is described in this archived e-mail: http://www.htdig.org/mail/1999/10/0187.html The text of that e-mail is as follows: [htdig] Re: Help about htdig indexing https files -------------------------------------------------------------------------------- Gilles Detillieux (grdetil at scrc.umanitoba.ca) Wed, 27 Oct 1999 10:18:31 -0500 (CDT) Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] Next message: Avi Rappoport: "[htdig] indexing SSL (was: Help building the database)" Previous message: Gilles Detillieux: "Re: Fw: [htdig] mutiple search results" In reply to: Torsten Neuer: "Re: Fw: [htdig] mutiple search results" -------------------------------------------------------------------------------- According to Edouard DESSIOUX: > >Currently, htdig will not support URLs that begin with https://, even when > >using local_urls to bypass the server. A trick that might work would be > >to index using http:// instead, but use local_urls to point to the directory > >that contains the contents of the secure server. > > I used that, and now, when i use htsearch, it work, except the fact > that all my URL are http://x.y.z/ instead of https://x.y.z/ > > >You'd need to use separate > >configuration files for digging and searching, and use url_part_aliases in > >each of these configuration files to rewrite the http:// into https:// in the > >search results. > > This is the part i dont understand, and i would like you to explain. It basically works as a search and replace. One url_part_aliases in the configuration file used by htdig maps the http://x.y.z/ into some special code like "*site", and another url_part_aliases in the configuration file used by htsearch maps the "*site" back into the value you want, i.e. https://x.y.z/. The substitution is left to right in htdig, and right to left in htsearch. So, if you use the same config file for both, or the same setting for both, you get back what you started with (but saved some space in the database because of the encoding). However, if you use two separate config files with different url_part_aliases setting for htdig and htsearch, you can remap parts of URLs from one substring to another. I hope this makes things clearer. I thought the current description at http://www.htdig.org/attrs.html#url_part_aliases was already quite clear. -- Gilles R. Detillieux E-mail: Spinal Cord Research Centre WWW: http://www.scrc.umanitoba.ca/~grdetil Dept. Physiology, U. of Manitoba Phone: (204)789-3766 Winnipeg, MB R3E 3J7 (Canada) Fax: (204)789-3930 ------------------------------------ From raul at ulinx.dnsalias.net Wed Aug 28 15:41:46 2002 From: raul at ulinx.dnsalias.net (raul-ulinx) Date: Wed, 28 Aug 2002 15:41:46 +0200 Subject: [Mailman-Users] mailman - postfix howto Message-ID: <3D6CD31A.5050200@ulinx.dnsalias.net> hi ppl :) I don't know whether this is the right place to ask ... but anyway : does any of you have a good howto to make mailman run with postfix ? many thanx in advance ------ fan98 at gmx.net From Dan.Mick at sun.com Wed Aug 28 20:17:47 2002 From: Dan.Mick at sun.com (Dan Mick) Date: Wed, 28 Aug 2002 11:17:47 -0700 Subject: [Mailman-Users] mailman postfix howto References: <2FC0F786-BAB1-11D6-AE5F-003065B85DAA@gearyweb.com> Message-ID: <3D6D13CB.4050201@sun.com> That's true. It's called README.POSTFIX. Michael Geary wrote: > Umm. There actually _isn't_ such a file in the Mailman source. >> README.postfix in Mailman sources (any *nix will do) From ewaldchen at globalcomputer.com Wed Aug 28 22:58:23 2002 From: ewaldchen at globalcomputer.com (Waldchen, Erick (VIPTechSprt)) Date: Wed, 28 Aug 2002 16:58:23 -0400 Subject: [Mailman-Users] archive stats Message-ID: <97BB32FD26B4D311B1010090276AE3E602A8F001@CWEXCHANGESVR01> Thank you for the very excellent Mailman. It's been rock-solid for the past 5 months I've been using it. My only wish is for a way to generate statistics on list how the list is being used. (top posters, top subjects, top posting times, etc.) My users really get into the "numbers" thing, if you know what I mean ;) If I was a programmer I would try to write something that parses the archives and would generate an HTML stats page, but I don't have the skills for something like that. Does such a program exist for Mailman? I've searched extensively online but haven't found anything yet. Thanks for your time, Sincerely, Erick Waldchen -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/mailman-users/attachments/20020828/839b23b2/attachment.html From barry at python.org Wed Aug 28 23:42:13 2002 From: barry at python.org (Barry A. Warsaw) Date: Wed, 28 Aug 2002 17:42:13 -0400 Subject: [Mailman-Users] Serialize? References: <3D6D11C8.FD853007@pcraft.com> Message-ID: <15725.17333.589045.535352@anthem.wooz.org> >>>>> "AMK" == Ashley M Kirchner writes: AMK> Has anyone ever thought of some way to serialize outgoing AMK> messages? I realize this will probably mean one single AMK> message per user (as opposed to what it does now, a single AMK> one per multiple recipients), however I keep seeing requests AMK> for this. Some way to include the user's email address in AMK> the body of the message, or something similar. AMK> Is there any other method of doing this, be it an AMK> external script that does it before handing it off to the AMK> MTA, something. Ideas anyone? How about the personalization support that's already in MM2.1? -Barry From vanhorn at whidbey.com Thu Aug 29 00:08:00 2002 From: vanhorn at whidbey.com (G. Armour Van Horn) Date: Wed, 28 Aug 2002 15:08:00 -0700 Subject: [Mailman-Users] Serialize? References: <3D6D11C8.FD853007@pcraft.com> <15725.17333.589045.535352@anthem.wooz.org> Message-ID: <3D6D49C0.F0E92832@whidbey.com> Barry, According to the website, 2.1 is a beta program not to be installed for production use. Half my listss (and my most active list) are things I volunteered to do for various reasons. But I do have a number of lists that I am paid to host, which, by my lights, means that this is a production use. Therefore, I quickly scan messages related to 2.1b3 and occasionally lust after one or more features, but I'm not installing it. Are you suggesting now that 2.1 can be put in production? What I'm hearing is that 2.1b3 seems actually to be running for a lot of folks, some of them clearly with much larger installations than mine. If that's the case, why don't you roll it out? Obviously you still have the ability to issue patches, as you continue to do with 2.0. Personally, I'd just as soon upgrade to 2.1 as to make the final leap from 2.0.12 with the 2.0.13 candidate patch to the actual 2.0.13. I'm brave enough for that, I think. But not until you say so! Van "Barry A. Warsaw" wrote: > >>>>> "AMK" == Ashley M Kirchner writes: > > AMK> Has anyone ever thought of some way to serialize outgoing > AMK> messages? I realize this will probably mean one single > AMK> message per user (as opposed to what it does now, a single > AMK> one per multiple recipients), however I keep seeing requests > AMK> for this. Some way to include the user's email address in > AMK> the body of the message, or something similar. > > AMK> Is there any other method of doing this, be it an > AMK> external script that does it before handing it off to the > AMK> MTA, something. Ideas anyone? > > How about the personalization support that's already in MM2.1? > > -Barry > > ------------------------------------------------------ > Mailman-Users mailing list > Mailman-Users at python.org > 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/ -- ---------------------------------------------------------- Sign up now for Quotes of the Day, a handful of quotations on a theme delivered every morning. Enlightenment! Daily, for free! mailto:twisted at whidbey.com?subject=Subscribe_QOTD For web hosting and maintenance, visit Van's home page: http://www.domainvanhorn.com/van/ ---------------------------------------------------------- From chris.a.adams at state.or.us Thu Aug 29 00:19:01 2002 From: chris.a.adams at state.or.us (Christopher Adams) Date: Wed, 28 Aug 2002 15:19:01 -0700 Subject: [Mailman-Users] modifying user html pages Message-ID: <002f01c24ee0$e931efc0$0b7a799f@osl.state.or.us.osl.state.or.us> I want to customize the Subscribe Results page for a particular list. Mostlly all I want to do is remove the part about posting messages, as this list is for announcements from one person. When I look at the subscribe.html file, I see the fields like this: Where are these and how can I get access to them? I could just write over these completely with the html that I want, but I just want to modify it a bit. Christopher Adams Automated Systems Oregon State Library 503-378-4243 x258 chris.a.adams at state.or.us From sead at arraycomm.com Thu Aug 29 00:32:45 2002 From: sead at arraycomm.com (Sead Mujushi) Date: Wed, 28 Aug 2002 15:32:45 -0700 Subject: [Mailman-Users] Non-member postings to list automatically rejected howto? (again) Message-ID: <2515076729.1030548765@[172.16.1.93]> Hi guys, this is an implementation question. I've posted it earlier but never got a reply. How can I configure a list so that postings from non-members are automatically rejected with no action required on my part as an administrator? A list administrator needs to "tend to administrative" requests for every message, including those that are not from members and are rejected (which usually come from spammers due to the name of the list). From alex at phred.org Thu Aug 29 00:35:20 2002 From: alex at phred.org (alex wetmore) Date: Wed, 28 Aug 2002 15:35:20 -0700 (PDT) Subject: [Mailman-Users] Non-member postings to list automatically rejected howto? (again) In-Reply-To: <2515076729.1030548765@[172.16.1.93]> Message-ID: <20020828153414.A759-100000@phred.org> On Wed, 28 Aug 2002, Sead Mujushi wrote: > How can I configure a list so that postings from non-members are > automatically rejected with no action required on my part as an > administrator? In Mailman-2.0.x you can't without making changes to the source code. I don't know of any public patches for doing this, but you might find them on sourceforge. I understand that 2.1 has this as a base feature. alex From william+mm at hq.newdream.net Thu Aug 29 00:52:14 2002 From: william+mm at hq.newdream.net (Will Yardley) Date: Wed, 28 Aug 2002 15:52:14 -0700 Subject: [Mailman-Users] Re: mailman postfix howto In-Reply-To: <3D6CD446.6070300@gmx.net> References: <3D6CD446.6070300@gmx.net> Message-ID: <20020828225214.GS27931@hq.newdream.net> fanatic wrote: > I don't know whether this is the right place to ask ... but anyway : > does any of you have a good howto to make mailman run with > postfix and debian ? apt-get install postfix apt-get install mailman works out of the box for me :> (just put the aliases in /etc/aliases) -- Will Yardley input: william < @ hq . newdream . net . > From ashley at pcraft.com Thu Aug 29 01:13:02 2002 From: ashley at pcraft.com (Ashley M. Kirchner) Date: Wed, 28 Aug 2002 17:13:02 -0600 Subject: [Mailman-Users] Serialize? References: <3D6D11C8.FD853007@pcraft.com> <15725.17333.589045.535352@anthem.wooz.org> Message-ID: <3D6D58FE.98019AF9@pcraft.com> "Barry A. Warsaw" wrote: > How about the personalization support that's already in MM2.1? As "G. Armour Van Horn" pointed out, everything on the website points to 2.1 still being beta, and I can't use that on my production server(s), nor my client's for that matter. If you're saying that 2.1b3 is actually stable, that's a different matter. I'd like to hear input on this please. -- W | I haven't lost my mind; it's backed up on tape somewhere. +-------------------------------------------------------------------- Ashley M. Kirchner . 303.442.6410 x130 IT Director / SysAdmin / WebSmith . 800.441.3873 x130 Photo Craft Laboratories, Inc. . 3550 Arapahoe Ave. #6 http://www.pcraft.com ..... . . . Boulder, CO 80303, U.S.A. From davereed at w5sv.org Thu Aug 29 01:45:58 2002 From: davereed at w5sv.org (David F. Reed) Date: Wed, 28 Aug 2002 18:45:58 -0500 Subject: [Mailman-Users] changed server, some issues require help/advice Message-ID: <3D6D60B6.2000505@w5sv.org> fellow mailman users, I am in the process of swapping mailman to a different server; I have managed to get it mostly working, but there are a few issues I need to solve before I can proceed with my testing... Problem: if I go the URL for mailman, it shows no lists; if I go to the /var/mailman directory, under archives/private that is there, the links are under archives/public and oddly, if I got to /url/mailman/ it goes to the list! if I go to the admin pages, they are all set to be public... I am stumped. Any help. hints, etc. greatly appreciated. Advice request: I am thinking after I can get to all of it, to try sending a test mail to each list and see if its working... Are there other things that I should look at / consider? Many thanks --Dave -- David F. Reed -> email: W5SV at arrl.net (for pgp key: davereed at W5SV.org http://keys.pgp.com/ ) From davereed at w5sv.org Thu Aug 29 02:08:02 2002 From: davereed at w5sv.org (David F. Reed) Date: Wed, 28 Aug 2002 19:08:02 -0500 Subject: [Mailman-Users] What Now References: Message-ID: <3D6D65E2.9000301@w5sv.org> Rev John J Macuga III wrote: >I just ran the mailman RPM from RedHat. What now? Where do I look for >instructions on the next steps? > a hint first; learn to use grep; it will be invaluable to you... for example, [davereed at dave davereed]$ locate mailman |grep REDHAT /usr/share/doc/mailman-2.0.13/README.REDHAT or: [davereed at dave davereed]$ locate README |grep mailman /usr/share/doc/mailman-2.0.13/README.EXIM /usr/share/doc/mailman-2.0.13/README /usr/share/doc/mailman-2.0.13/README.LINUX /usr/share/doc/mailman-2.0.13/README.QMAIL /usr/share/doc/mailman-2.0.13/README.REDHAT /usr/share/doc/mailman-2.0.13/README.SENDMAIL try for the more restricted subset first, and it will run faster; the above is slower than: [davereed at dave davereed]$ locate mailman |grep README /usr/share/doc/mailman-2.0.13/README.EXIM /usr/share/doc/mailman-2.0.13/README /usr/share/doc/mailman-2.0.13/README.LINUX /usr/share/doc/mailman-2.0.13/README.QMAIL /usr/share/doc/mailman-2.0.13/README.REDHAT /usr/share/doc/mailman-2.0.13/README.SENDMAIL try it, you will like it... -Dave >Ignorant but GRATEFULL. > >JJ > > > >------------------------------------------------------ >Mailman-Users mailing list >Mailman-Users at python.org >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/ > -- David F. Reed -> email: W5SV at arrl.net (for pgp key: davereed at W5SV.org http://keys.pgp.com/ ) From barry at python.org Thu Aug 29 04:02:23 2002 From: barry at python.org (Barry A. Warsaw) Date: Wed, 28 Aug 2002 22:02:23 -0400 Subject: [Mailman-Users] Serialize? References: <3D6D11C8.FD853007@pcraft.com> <15725.17333.589045.535352@anthem.wooz.org> <3D6D49C0.F0E92832@whidbey.com> Message-ID: <15725.32943.419535.702075@anthem.wooz.org> >>>>> "GAVH" == G Armour Van Horn writes: GAVH> Therefore, I quickly scan messages related to 2.1b3 and GAVH> occasionally lust after one or more features, but I'm not GAVH> installing it. Are you suggesting now that 2.1 can be put in GAVH> production? It's already being used in production in many places, so I think it's generally pretty stable. I do think some shaking out still needs to happen before I can give it full endorsement. But that's why it's still beta! :) GAVH> What I'm hearing is that 2.1b3 seems actually to be running GAVH> for a lot of folks, some of them clearly with much larger GAVH> installations than mine. If that's the case, why don't you GAVH> roll it out? Darn good idea! :) GAVH> Obviously you still have the ability to issue GAVH> patches, as you continue to do with 2.0. Personally, I'd GAVH> just as soon upgrade to 2.1 as to make the final leap from GAVH> 2.0.12 with the 2.0.13 candidate patch to the actual GAVH> 2.0.13. I'm brave enough for that, I think. GAVH> But not until you say so! I think we're really close. There will definitely be a beta4 RSN, but I don't think it will be too much longer. Nobody wants MM2.1 out the door more than me! -Barry From valen at tuatha.org Thu Aug 29 10:13:20 2002 From: valen at tuatha.org (John P. Looney) Date: Thu, 29 Aug 2002 09:13:20 +0100 Subject: [Mailman-Users] changing DEFAULT_HOST_NAME after creating lists Message-ID: <20020829081320.GV1757@jinny.ie> On Wed, Aug 28, 2002 at 01:08:09PM -0500, David F. Reed mentioned: > There is a place in the overall configuration (one of the .py scripts) > that you can change the entry of all of them... > > On a RedHat 7.3 system, it is /var/mailman/Mailman/mm_cfg.py > On other systems, I would think a locate mailman|grep mm_cfg.py > would find it.. > > Edit variable DEFAULT_HOST_NAME = > > > Good luck; if you have a moent for it, > I am curious how you moved all the lists, archives, etc. The problem is that this variable is only accessed when the list is created - so for all new lists, the DEFAULT_HOST_NAME will be correct. In the end, I just went to the web page of all sixty lists, and changed them manually. John From detlef.neubauer at charite.de Thu Aug 29 15:36:10 2002 From: detlef.neubauer at charite.de (Detlef Neubauer) Date: 29 Aug 2002 15:36:10 +0200 Subject: [Mailman-Users] Another Postfix/Mailman post but not a GID problem. In-Reply-To: Randy Romero's message of "Tue, 27 Aug 2002 17:00:28 -0400 (EDT)" References: Message-ID: Randy Romero writes: > ::postfix main.cf entries:: > alias_database = dbm:/etc/postfix/aliases > alias_maps = dbm:/home/mailman/aliases I think ,---- | alias_database = dbm:/etc/postfix/aliases, dbm:/home/mailman/aliases | alias_maps = dbm:/etc/postfix/aliases, dbm:/home/mailman/aliases `---- is better. I have Linux and Postfix and ,---- | alias_maps = hash:/etc/aliases, hash:/etc/aliases.mailman | alias_database = hash:/etc/aliases, hash:/etc/aliases.mailman `---- works fine for me. If i change my aliases file Postfix needs a newaliases command. Please send no Cc. I answer only via the list. Detlef Neubauer -- .oO GnuPG Key auf http://www.keyserver.net/ Oo. From mailman at davetopping.com Wed Aug 28 19:09:36 2002 From: mailman at davetopping.com (mailman at davetopping.com) Date: Wed, 28 Aug 2002 16:09:36 -0100 (BST) Subject: [Mailman-Users] 'Newbie' question - List posting to newsgroups - How? Message-ID: Hello I would like to know how to get my Mailman mailing list to 'forward' postings made to it to a 'remote' newsgroup account. Anybody advise, please, if this is possible and if so, how? Thanks From mailman at davetopping.com Thu Aug 29 13:37:00 2002 From: mailman at davetopping.com (mailman at davetopping.com) Date: Thu, 29 Aug 2002 10:37:00 -0100 (BST) Subject: [Mailman-Users] List posting to newsgroup gateway - please help Message-ID: I am trying to work out how to 'forward' a mailman list post to a 'remote' usenet gateway for two (2) newsgroups. The mailman list is located on my own system. The usenet gateway is www.uncensored-news.com. Can this be done and does anyone know how? TIA From chris.a.adams at state.or.us Thu Aug 29 17:11:21 2002 From: chris.a.adams at state.or.us (Christopher Adams) Date: Thu, 29 Aug 2002 08:11:21 -0700 Subject: [Mailman-Users] changing default welcome message Message-ID: <007301c24f6e$55223fe0$0b7a799f@osl.state.or.us.osl.state.or.us> I have searched the archives and have seen this question, but no clear answer. If I want to change or eliminate the default welcome message for specific lists, what is the procedure? Christopher Adams Automated Systems Oregon State Library 503-378-4243 x258 chris.a.adams at state.or.us From claw at kanga.nu Thu Aug 29 18:08:46 2002 From: claw at kanga.nu (J C Lawrence) Date: Thu, 29 Aug 2002 09:08:46 -0700 Subject: [Mailman-Users] Serialize? In-Reply-To: Message from "Ashley M. Kirchner" of "Wed, 28 Aug 2002 13:54:23 MDT." <3D6D2A6F.C8E05BA8@pcraft.com> References: <3D6D11C8.FD853007@pcraft.com> <3D6D2798.2DCCF851@whidbey.com> <3D6D2A6F.C8E05BA8@pcraft.com> Message-ID: <28452.1030637326@kanga.nu> On Wed, 28 Aug 2002 13:54:23 -0600 Ashley M Kirchner wrote: > Ya, I realize all of this, however I have clients who would like, are > requesting, and generally want this type of mechanism built in. The > main reason is because many of the subscribers no longer remember what > e-mail address they used to subscribe, and consequently don't know > what to use to UNsubscribe. Having Mailman serialize its messages > will provide a simple way for them to unsubscribe. 0) That is what the password reminders are for: They remind people that they are subscribed, and under what address etc. 1) See VERP 2) Search the list archives for references to VERP, and in particular Chuq von Rospach's analysis. 3) Mailman v2.1 can do VERP (kinda) -- J C Lawrence ---------(*) Satan, oscillate my metallic sonatas. claw at kanga.nu He lived as a devil, eh? http://www.kanga.nu/~claw/ Evil is a name of a foeman, as I live. From claw at kanga.nu Thu Aug 29 18:14:37 2002 From: claw at kanga.nu (J C Lawrence) Date: Thu, 29 Aug 2002 09:14:37 -0700 Subject: [Mailman-Users] Serialize? In-Reply-To: Message from "G. Armour Van Horn" of "Wed, 28 Aug 2002 15:08:00 PDT." <3D6D49C0.F0E92832@whidbey.com> References: <3D6D11C8.FD853007@pcraft.com> <15725.17333.589045.535352@anthem.wooz.org> <3D6D49C0.F0E92832@whidbey.com> Message-ID: <28528.1030637677@kanga.nu> On Wed, 28 Aug 2002 15:08:00 -0700 G Armour Van Horn wrote: > But not until you say so! As with all software upgrades you get to decide when something is ready for deployment on your systems, nobody else. The criteria you use for those decisions is private to you and has no necessary relations to the criteria or statements of anyone else. Translation: Make up your own mind, make your own choices, support your arguments with your own reasoning. There are several production systems that I'm runnign straight out of that source base's CVS repository. You can't get much more raw than that. Similarly there are several other production systems that are two or three whole major versions back in the past purely becuase I don't trust the current versions. Inform youself of the layout and values of the the field and then pick. This is OSS. There are no magic "This product is now golden" bullets. -- J C Lawrence ---------(*) Satan, oscillate my metallic sonatas. claw at kanga.nu He lived as a devil, eh? http://www.kanga.nu/~claw/ Evil is a name of a foeman, as I live. From ashley at pcraft.com Thu Aug 29 18:22:50 2002 From: ashley at pcraft.com (Ashley M. Kirchner) Date: Thu, 29 Aug 2002 10:22:50 -0600 Subject: [Mailman-Users] Serialize? References: <3D6D11C8.FD853007@pcraft.com> <3D6D2798.2DCCF851@whidbey.com> <3D6D2A6F.C8E05BA8@pcraft.com> <28452.1030637326@kanga.nu> Message-ID: <3D6E4A5A.C689A92D@pcraft.com> I did it again, reply instead of reply-all. Sorry claw... - AMK4 ---------- J C Lawrence wrote: > 0) That is what the password reminders are for: They remind people that > they are subscribed, and under what address etc. Therein lies the problem. These people aren't using passwords to begin with. Subscribers don't get reminders of what they are subscribed as either. That would've been the easy way out, unfortunately, I don't have that choice. -- W | I haven't lost my mind; it's backed up on tape somewhere. +-------------------------------------------------------------------- Ashley M. Kirchner . 303.442.6410 x130 IT Director / SysAdmin / WebSmith . 800.441.3873 x130 Photo Craft Laboratories, Inc. . 3550 Arapahoe Ave. #6 http://www.pcraft.com ..... . . . Boulder, CO 80303, U.S.A. From wash at wananchi.com Thu Aug 29 18:28:57 2002 From: wash at wananchi.com (Odhiambo Washington) Date: Thu, 29 Aug 2002 19:28:57 +0300 Subject: [Mailman-Users] changing default welcome message In-Reply-To: <002101c24f74$ae950e80$0b7a799f@osl.state.or.us.osl.state.or.us> References: <007301c24f6e$55223fe0$0b7a799f@osl.state.or.us.osl.state.or.us> <20020829153937.GD42417@ns2.wananchi.com> <002101c24f74$ae950e80$0b7a799f@osl.state.or.us.osl.state.or.us> Message-ID: <20020829162857.GH42417@ns2.wananchi.com> * Christopher Adams [20020829 18:51]: wrote: > What is the "web UI" config options? Are you speaking of the web interface? Yes, the latter. > If so, all that allows me to do is eliminate sending a welcome message to > users that the owner subscribes from the web interface and/or the text that > the owner appends to the default. Correct, I should have clarified myself. I am sorry I did not. > That doesn't give the option of actually changing or elminating the default > welcome message altogether. Maybe I am missing something. I grep-ed thro the mailman directory and found the message locations: sudo find /usr/local/mailman -type f -exec grep -li 'Welcome' {} \; | less Then I took a look and saw that the welcome message is a template with vars to be substituted. There must be another script that does the subsitituions. I guess that script is the "add_member" script, but I am not aware how you could manipulate either the welcome message template or the add_member script to work on a per list basis. The welcome message template is in: $prefix/templates/en/subscribeack.txt -Wash -- Odhiambo Washington "The box said 'Requires Wananchi Online Ltd. www.wananchi.com Windows 95, NT, or better,' Tel: +254 2 313985-9 +254 2 313922 so I installed FreeBSD." GSM: +254 72 743223 +254 733 744121 This sig is McQ! :-) If you want to know what god thinks of money, just look at the people he gave it to. -- Dorthy Parker From bkinne at wpo.it.luc.edu Thu Aug 29 19:08:19 2002 From: bkinne at wpo.it.luc.edu (Brian W. Kinne) Date: Thu, 29 Aug 2002 12:08:19 -0500 Subject: [Mailman-Users] Batch add w/names? Message-ID: <20020829120819.72485f6e.bkinne@wpo.it.luc.edu> Greetings; I'm moving lists at my site from listproc to mailman. Some of the old list owners like the ability to associate the e-mail address with a real name. Since 2.1 has this feature, I've tried to batch subscribe members with their names without success. Is there syntax I'm missing, or must I batch subscribe the addresses and then go back and add the names one at a time? I've tried this with 2.1b2. Thanks, Brian From bobb+mailman-users at redbrick.dcu.ie Thu Aug 29 20:02:02 2002 From: bobb+mailman-users at redbrick.dcu.ie (Robert bobb Crosbie) Date: Thu, 29 Aug 2002 19:02:02 +0100 Subject: [Mailman-Users] changing DEFAULT_HOST_NAME after creating lists In-Reply-To: <20020829081320.GV1757@jinny.ie> References: <20020829081320.GV1757@jinny.ie> Message-ID: <20020829180200.GA34632@lummux.tchpc.tcd.ie> John P. Looney hath declared on Thursday the 29 day of August 2002 :-: > > Edit variable DEFAULT_HOST_NAME = > The problem is that this variable is only accessed when the list is > created - so for all new lists, the DEFAULT_HOST_NAME will be correct. > > In the end, I just went to the web page of all sixty lists, and changed > them manually. Bit late now, but you could have done something with "withlist"... cat > foo.py < /dev/null done - bobb From wheakory at isu.edu Thu Aug 29 20:49:40 2002 From: wheakory at isu.edu (Kory Wheatley) Date: Thu, 29 Aug 2002 12:49:40 -0600 Subject: [Mailman-Users] Pause or queue message delivery Message-ID: <3D6E6CC4.2040304@isu.edu> I've got a Mailman mailing list that contains 14,000 subscribers, on a Linux box that's using sendmail has the delivery agent that sends all of the messages to one mail host, because all 14,000 subscribers have an email account on our mail server. This Linux box is only used to deliver our Mailman mailing to our Mail server which is a HPUX 11 server, using sendmail as the routing agent. We sent a message to the 14,000 recipient mailing list the other day and it put the load on our Unix Box that contains our mail server to the roof How can I setup sendmail or Mailman to not kill the system so hard when I send to this mailing list, can I change something in sendmail to maybe pause or queue delivery, after a certain number of messages that have been delivered and keep that sequence happening, or deliver 15 at a time and then pause 40 seconds or something, to cause better performance. I know that when I send to the mailing list, in our server logs sendmail creates a envelope of 21 recipients, is this the problem? It's not real critical that these messages when sent to the mailing list are received right away, so having a pause or delay between messages is not a problem. I've not done much configuration changes to sendmail or Mailman so, I would appreciate any help that would allow this delivery to allow better performance. -- ######################################### Kory Wheatley Academic Computing Analyst Sr. Phone 282-3874 ######################################### Everything must point to him. From chris.a.adams at state.or.us Thu Aug 29 18:13:08 2002 From: chris.a.adams at state.or.us (Christopher Adams) Date: Thu, 29 Aug 2002 09:13:08 -0700 Subject: [Mailman-Users] RE: changing the default welcome message Message-ID: <007c01c24f76$f6db5620$0b7a799f@osl.state.or.us.osl.state.or.us> What is the "web UI" config options? Are you speaking of the web interface? If so, all that allows me to do is eliminate sending a welcome message to users that the owner subscribes from the web interface and/or the text that the owner appends to the default. That doesn't give the option of actually changing or elminating the default welcome message altogether. Maybe I am missing something Christopher Adams Automated Systems Oregon State Library 503-378-4243 x258 chris.a.adams at state.or.us ----- Original Message ----- From: "Odhiambo Washington" To: "Christopher Adams" Sent: Thursday, August 29, 2002 8:39 AM Subject: Re: [Mailman-Users] changing default welcome message > * Christopher Adams [20020829 18:21]: wrote: > > I have searched the archives and have seen this question, but no clear > > answer. If I want to change or eliminate the default welcome message for > > specific lists, what is the procedure? > > You should look in the web UI config options for your lists. > > -Wash > > -- > Odhiambo Washington "The box said 'Requires > Wananchi Online Ltd. www.wananchi.com Windows 95, NT, or better,' > Tel: +254 2 313985-9 +254 2 313922 so I installed FreeBSD." > GSM: +254 72 743223 +254 733 744121 This sig is McQ! :-) > > Chicken Little only has to be right once. > Christopher Adams Automated Systems Oregon State Library 503-378-4243 x258 chris.a.adams at state.or.us From goeran at zaengerlein.de Thu Aug 29 22:32:53 2002 From: goeran at zaengerlein.de (Goeran Zaengerlein) Date: Thu, 29 Aug 2002 22:32:53 +0200 Subject: [Mailman-Users] make install fails for 2.1b3 Message-ID: <001001c24f9b$41c17d80$a63a8a89@cern.ch> Hello *, I tried to install Mailman 2.1b3 and I followed the installation instruction exactly but make install fails with the following message: --- snip --- Compiling /usr/local/mailman/Mailman/versions.py ... Traceback (most recent call last): File "bin/update", line 44, in ? import paths ImportError: No module named paths make: *** [update] Error 1 --- snap --- My system: SuSE 7.2 Python 2.2.1 gcc 2.95.3 The problem was already described here: http://mail.python.org/pipermail/mailman-users/2002-July/020991.html but no solution has been posted as far as I could see... Any idea how solve this or how to further debug the problem? thanks a lot in advance, Goeran Zaengerlein From vanhorn at whidbey.com Thu Aug 29 22:14:40 2002 From: vanhorn at whidbey.com (G. Armour Van Horn) Date: Thu, 29 Aug 2002 13:14:40 -0700 Subject: [Mailman-Users] Serialize? References: <3D6D11C8.FD853007@pcraft.com> <15725.17333.589045.535352@anthem.wooz.org> <3D6D49C0.F0E92832@whidbey.com> <28528.1030637677@kanga.nu> Message-ID: <3D6E80B0.3810EA51@whidbey.com> J C, If you're running a number of servers it does get easier, and I suspect that there are quite a few users here who are in that situation. One system for Mailman is plenty for my needs, particularly since Mailman has that machine all to itself, so other upgrades can't interfere with it. I can't justify another system as a sandbox for 2.1, and wouldn't have time to figure out reasonable tests to run on it anyway. Translation: The leaders can make up their minds for themselves, the followers have to follow. At this point, Barry clearly says (on the website) it isn't ready, but he has legal constraints to worry about, or at least a reputation to protect, if everyone runs the beta and then problems develop. You only risk one machine (and its users) at a time. Mailman is a very small part of my business, and a little hobby interest on the side. This means I need it to be stable, I don't have time to move to 2.1 and have to move back. I'd rather move to 2.1 and leave it for a while, not run 2.1b3, 2.1b4, maybe 2.1b5, and then 2.1.0. If ten folks pop up and say they are running multiple lists in production on multiple machines in 2.1b3 that's a powerful bit of information, likely enough for me to conclude that it really is a production-worthy product at this point. (Particularly if they are running the same MTA I am. I chose Postfix when I setup my Mailman system entirely because the Mailman homepage information made it clear this would be the best combination. Has that changed?) I'm curious how you can have several production systems running from the CVS and still not trust the current versions, but maybe I misunderstand something in there. But hey, in this case I am one of the followers. I do have to have a signal that "this product is now golden." I don't really have to have it from Barry, the user community will do. I almost certainly will wait for the release of 2.1 to save time for myself. I was just making a nuisance of myself because so many were saying use the beta and Barry (through the site) was saying not to, and felt that the issue should be addressed. If nothing else, it pushed Barry to endorse the current beta more strongly than he had before! Van J C Lawrence wrote: > On Wed, 28 Aug 2002 15:08:00 -0700 > G Armour Van Horn wrote: > > > But not until you say so! > > As with all software upgrades you get to decide when something is ready > for deployment on your systems, nobody else. The criteria you use for > those decisions is private to you and has no necessary relations to the > criteria or statements of anyone else. > > Translation: Make up your own mind, make your own choices, support > your arguments with your own reasoning. > > There are several production systems that I'm runnign straight out of > that source base's CVS repository. You can't get much more raw than > that. Similarly there are several other production systems that are two > or three whole major versions back in the past purely becuase I don't > trust the current versions. > > Inform youself of the layout and values of the the field and then pick. > This is OSS. There are no magic "This product is now golden" bullets. > > -- > J C Lawrence > ---------(*) Satan, oscillate my metallic sonatas. > claw at kanga.nu He lived as a devil, eh? > http://www.kanga.nu/~claw/ Evil is a name of a foeman, as I live. -- ---------------------------------------------------------- Sign up now for Quotes of the Day, a handful of quotations on a theme delivered every morning. Enlightenment! Daily, for free! mailto:twisted at whidbey.com?subject=Subscribe_QOTD For web hosting and maintenance, visit Van's home page: http://www.domainvanhorn.com/van/ ---------------------------------------------------------- From Dan.Mick at sun.com Thu Aug 29 23:06:08 2002 From: Dan.Mick at sun.com (Dan Mick) Date: Thu, 29 Aug 2002 14:06:08 -0700 Subject: [Mailman-Users] Serialize? References: <3D6D11C8.FD853007@pcraft.com> <15725.17333.589045.535352@anthem.wooz.org> <3D6D49C0.F0E92832@whidbey.com> <28528.1030637677@kanga.nu> <3D6E80B0.3810EA51@whidbey.com> Message-ID: <3D6E8CC0.7060509@sun.com> G. Armour Van Horn wrote: > At this point, Barry clearly says (on the website) it isn't ready, but he > has legal constraints to worry about, or at least a reputation to protect, > if everyone runs the beta and then problems develop. You only risk one > machine (and its users) at a time. Surely not legal, but yes. > Mailman is a very small part of my business, and a little hobby interest on > the side. This means I need it to be stable, I don't have time to move to > 2.1 and have to move back. I'd rather move to 2.1 and leave it for a while, > not run 2.1b3, 2.1b4, maybe 2.1b5, and then 2.1.0. It should be noted that it's *very* trivial to upgrade. I do this probably four times a week when Barry's busy: mmstop (a wrapper for /etc/init.d/mailman stop) cvs -q update -dAP resolve any conflicts from my local hacks (usually 30 seconds) ./doconfig (wrapper for ./configure with flags) make install mmstart (see above) total time about 5 minutes; total number of problems I've seen from interim software: probably 10 over the lifetime of 2.0.x, most having to do with broken email messages that get evolving parsing code's panties all bunched. It's been my experience that interim CVS versions of Mailman are *very* stable. As usual: your mileage *will* vary. But Mailman is not very fragile, in my experience. And if you want to, keeping track of your last-stable date or revision tag, and rolling back with CVS, is pretty easy too. If you add in "back up the critical config.pck's" it's even easier to roll back. (Not that I've ever had to.) From goeran at zaengerlein.de Fri Aug 30 00:31:23 2002 From: goeran at zaengerlein.de (Goeran Zaengerlein) Date: Fri, 30 Aug 2002 00:31:23 +0200 Subject: [Mailman-Users] make install fails for 2.1b3 In-Reply-To: <001001c24f9b$41c17d80$a63a8a89@cern.ch> Message-ID: <001301c24fab$ce8a5790$a63a8a89@cern.ch> Hi *, ok, I found out what the problem is: The configure script creates the file "/src/mailman-2.1b3/misc/paths.py", but "make install" does not copy it to "$prefix/bin". When make runs the update target it calls the $prefix/bin/update script which tries to import the paths module. If you do the installation on a system where already a mailman installation exists you won't get the error as the paths.py already exists... So problem is only visible for a from-the-scratch installation. Any idea where in the Makefile the paths.py should be copied and why this does actually not happen? I think there might be a problem with the makefile in /misc, but I am not so fluent in makefiles ;) My workaround for now is: make install cp ./misc/paths.py /usr/local/mailman/bin make install regards, Goeran Zaengerlein From dan.mick at sun.com Fri Aug 30 00:49:17 2002 From: dan.mick at sun.com (Dan Mick) Date: Thu, 29 Aug 2002 15:49:17 -0700 (PDT) Subject: [Mailman-Users] make install fails for 2.1b3 Message-ID: <200208292249.g7TMnTqY003689@utopia.West.Sun.COM> > "/src/mailman-2.1b3/misc/paths.py", but "make install" does not copy it > to "$prefix/bin". Don't know why. top-level Makefile: SUBDIRS= bin cron misc Mailman scripts src templates messages tests install: -> doinstall: -> @for d in $(SUBDIRS); \ do \ (cd $$d; $(MAKE) install); \ done misc/Makefile: PATHSDIRS= bin cron scripts install: . . for d in $(PATHSDIRS); \ do \ dir=$(prefix)/$$d; \ $(INSTALL) -m $(FILEMODE) paths.py $$dir; \ done . . Maybe you have a broken make? From goeran at zaengerlein.de Fri Aug 30 02:49:18 2002 From: goeran at zaengerlein.de (Goeran Zaengerlein) Date: Fri, 30 Aug 2002 02:49:18 +0200 Subject: [Mailman-Users] make install fails for 2.1b3 In-Reply-To: <200208292249.g7TMnTqY003689@utopia.West.Sun.COM> Message-ID: <001601c24fbf$247991d0$a63a8a89@cern.ch> Hi Dan, > > Maybe you have a broken make? > Hm... I uninstalled my make RPM and installed it again... Did not help... But I copied the paths.py to cron, bin and scripts and should do the job for now... thanks a lot! Goeran Zaengerlein From wheakory at isu.edu Fri Aug 30 06:45:53 2002 From: wheakory at isu.edu (Kory Wheatley) Date: Thu, 29 Aug 2002 22:45:53 -0600 Subject: [Mailman-Users] Forget password form and unsubscribe without password Message-ID: <3D6EF881.CA59B84D@isu.edu> In mailman 2.0.13 is there a way for users to unsubscribe without remembering their password. I know you can send a message to listname-request at domain.com, and in the body put unsubscribe, but this requires a password. Has anyone developed a web forget password form, where the user can type in their email address and it will send them their mailman subscribers password. I would appreciate it if anyone would share their code. I'm trying to learn python. Kory Wheatley From raquel at thericehouse.net Fri Aug 30 07:09:13 2002 From: raquel at thericehouse.net (Raquel Rice) Date: Thu, 29 Aug 2002 22:09:13 -0700 Subject: [Mailman-Users] Forget password form and unsubscribe without password In-Reply-To: <3D6EF881.CA59B84D@isu.edu> References: <3D6EF881.CA59B84D@isu.edu> Message-ID: <20020829220913.1f0ed5c6.raquel@thericehouse.net> On Thu, 29 Aug 2002 22:45:53 -0600 Kory Wheatley wrote: > In mailman 2.0.13 is there a way for users to unsubscribe without > remembering their password. I know you can send a message to > listname-request at domain.com, and in the body put unsubscribe, but > this requires a password. > > Has anyone developed a web forget password form, where the user > can type in their email address and it will send them their > mailman subscribers password. I would appreciate it if anyone > would share their code. I'm trying to learn python. > > > Kory Wheatley Go to the list page: http://domain.name/mailman/listinfo.cgi/listname At the bottom of the form enter your email address and click on "Edit Options". There's a place to get your password sent to you. -- Raquel ============================================================ Whatever you are, be a good one. --Abraham Lincoln From claw at kanga.nu Fri Aug 30 07:14:23 2002 From: claw at kanga.nu (J C Lawrence) Date: Thu, 29 Aug 2002 22:14:23 -0700 Subject: [Mailman-Users] Serialize? In-Reply-To: Message from "G. Armour Van Horn" of "Thu, 29 Aug 2002 13:14:40 PDT." <3D6E80B0.3810EA51@whidbey.com> References: <3D6D11C8.FD853007@pcraft.com> <15725.17333.589045.535352@anthem.wooz.org> <3D6D49C0.F0E92832@whidbey.com> <28528.1030637677@kanga.nu> <3D6E80B0.3810EA51@whidbey.com> Message-ID: <3973.1030684463@kanga.nu> From shu.ung at anu.edu.au Fri Aug 30 07:31:46 2002 From: shu.ung at anu.edu.au (Shu Ung) Date: Fri, 30 Aug 2002 15:31:46 +1000 Subject: [Mailman-Users] Batch add w/names? In-Reply-To: <20020829120819.72485f6e.bkinne@wpo.it.luc.edu> Message-ID: Try Full Name
Shu On Friday, August 30, 2002, at 03:08 AM, Brian W. Kinne wrote: > Greetings; > > I'm moving lists at my site from listproc to mailman. Some of the old > list owners like the ability to associate the e-mail address with a > real name. Since 2.1 has this feature, I've tried to batch subscribe > members with their names without success. Is there syntax I'm missing, > or must I batch subscribe the addresses and then go back and add the > names one at a time? I've tried this with 2.1b2. > > Thanks, > > Brian > > ------------------------------------------------------ > Mailman-Users mailing list > Mailman-Users at python.org > 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/ > From mailman-users at imc.nl Fri Aug 30 09:42:53 2002 From: mailman-users at imc.nl (Roelf Schreurs) Date: Fri, 30 Aug 2002 09:42:53 +0200 Subject: [Mailman-Users] errors Message-ID: <000801c24ff8$d96c6ac0$c764a8c0@ads.intra.imc> Hi I'm quite worried about these errors in mailman. Can somebody please explain what this means. Thanks Aug 30 09:37:42 2002 (21563) Uncaught runner exception: unpack list of wrong size Aug 30 09:37:42 2002 (21563) Traceback (most recent call last): File "/opt/mailman/Mailman/Queue/Runner.py", line 105, in _oneloop self._onefile(msg, msgdata) File "/opt/mailman/Mailman/Queue/Runner.py", line 154, in _onefile keepqueued = self._dispose(mlist, msg, msgdata) File "/opt/mailman/Mailman/Queue/IncomingRunner.py", line 129, in _dispose status = self._dopipeline(mlist, msg, msgdata, pipeline) File "/opt/mailman/Mailman/Queue/IncomingRunner.py", line 152, in _dopipeline sys.modules[modname].process(mlist, msg, msgdata) File "/opt/mailman/Mailman/Handlers/ToDigest.py", line 76, in process g(msg, unixfrom=1) File "/opt/mailman/pythonlib/email/Generator.py", line 81, in flatten self._write(msg) File "/opt/mailman/pythonlib/email/Generator.py", line 109, in _write self._dispatch(msg) File "/opt/mailman/pythonlib/email/Generator.py", line 128, in _dispatch main, sub = ctype.split('/') ValueError: unpack list of wrong size Aug 30 09:38:13 2002 (21563) Uncaught runner exception: unpack list of wrong size Aug 30 09:38:13 2002 (21563) Traceback (most recent call last): File "/opt/mailman/Mailman/Queue/Runner.py", line 105, in _oneloop self._onefile(msg, msgdata) File "/opt/mailman/Mailman/Queue/Runner.py", line 154, in _onefile keepqueued = self._dispose(mlist, msg, msgdata) File "/opt/mailman/Mailman/Queue/IncomingRunner.py", line 129, in _dispose status = self._dopipeline(mlist, msg, msgdata, pipeline) File "/opt/mailman/Mailman/Queue/IncomingRunner.py", line 152, in _dopipeline sys.modules[modname].process(mlist, msg, msgdata) File "/opt/mailman/Mailman/Handlers/ToDigest.py", line 76, in process g(msg, unixfrom=1) File "/opt/mailman/pythonlib/email/Generator.py", line 81, in flatten self._write(msg) File "/opt/mailman/pythonlib/email/Generator.py", line 109, in _write self._dispatch(msg) File "/opt/mailman/pythonlib/email/Generator.py", line 128, in _dispatch main, sub = ctype.split('/') ValueError: unpack list of wrong size -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/mailman-users/attachments/20020830/afbb3b46/attachment.htm From fcombernous at eprocess.fr Fri Aug 30 10:48:38 2002 From: fcombernous at eprocess.fr (Fabien COMBERNOUS) Date: Fri, 30 Aug 2002 10:48:38 +0200 Subject: [Mailman-Users] question about private archives. Message-ID: <20020830084837.GA14051@fcombernous.mtp.eprocess.fr> Lo, I had installed mailman 2.0.9 with sources. All work fine. My archives are generated. But we have a read acces to my private archives without any passwd. Is it Normal ? Fabien. -- Fabien COMBERNOUS - IT Engineer eProcess - Parc Club du Mill?naire Batiment n? 6 1025 rue Henri Becquerel - 34000 Montpellier FRANCE http://www.eprocess.fr - +33 (0)4 67 13 84 50 From R.Barrett at ftel.co.uk Fri Aug 30 10:51:47 2002 From: R.Barrett at ftel.co.uk (Richard Barrett) Date: Fri, 30 Aug 2002 09:51:47 +0100 Subject: [Mailman-Users] errors In-Reply-To: <000801c24ff8$d96c6ac0$c764a8c0@ads.intra.imc> Message-ID: <5.1.0.14.2.20020830094112.04718710@pop.ftel.co.uk> At 09:42 30/08/2002 +0200, Roelf Schreurs wrote: >Hi > >I'm quite worried about these errors in mailman. >Can somebody please explain what this means. > >Thanks > >Aug 30 09:37:42 2002 (21563) Uncaught runner exception: unpack list of >wrong size >Aug 30 09:37:42 2002 (21563) Traceback (most recent call last): > File "/opt/mailman/Mailman/Queue/Runner.py", line 105, in _oneloop > self._onefile(msg, msgdata) > File "/opt/mailman/Mailman/Queue/Runner.py", line 154, in _onefile > keepqueued = self._dispose(mlist, msg, msgdata) > File "/opt/mailman/Mailman/Queue/IncomingRunner.py", line 129, in _dispose > status = self._dopipeline(mlist, msg, msgdata, pipeline) > File "/opt/mailman/Mailman/Queue/IncomingRunner.py", line 152, in > _dopipeline > sys.modules[modname].process(mlist, msg, msgdata) > File "/opt/mailman/Mailman/Handlers/ToDigest.py", line 76, in process > g(msg, unixfrom=1) > File "/opt/mailman/pythonlib/email/Generator.py", line 81, in flatten > self._write(msg) > File "/opt/mailman/pythonlib/email/Generator.py", line 109, in _write > self._dispatch(msg) > File "/opt/mailman/pythonlib/email/Generator.py", line 128, in _dispatch > main, sub = ctype.split('/') >ValueError: unpack list of wrong size > >Aug 30 09:38:13 2002 (21563) Uncaught runner exception: unpack list of >wrong size >Aug 30 09:38:13 2002 (21563) Traceback (most recent call last): > File "/opt/mailman/Mailman/Queue/Runner.py", line 105, in _oneloop > self._onefile(msg, msgdata) > File "/opt/mailman/Mailman/Queue/Runner.py", line 154, in _onefile > keepqueued = self._dispose(mlist, msg, msgdata) > File "/opt/mailman/Mailman/Queue/IncomingRunner.py", line 129, in _dispose > status = self._dopipeline(mlist, msg, msgdata, pipeline) > File "/opt/mailman/Mailman/Queue/IncomingRunner.py", line 152, in > _dopipeline > sys.modules[modname].process(mlist, msg, msgdata) > File "/opt/mailman/Mailman/Handlers/ToDigest.py", line 76, in process > g(msg, unixfrom=1) > File "/opt/mailman/pythonlib/email/Generator.py", line 81, in flatten > self._write(msg) > File "/opt/mailman/pythonlib/email/Generator.py", line 109, in _write > self._dispatch(msg) > File "/opt/mailman/pythonlib/email/Generator.py", line 128, in _dispatch > main, sub = ctype.split('/') >ValueError: unpack list of wrong size I can explain what but not necessarily why or the consequences. The qrunner code processing an incoming message has extracted a Content-type: header from the message expecting it to be of the form 'maintype/subtype'. The code is trying to separate the two parts of the mime type, i.e. 'maintype' and 'subtype', by splitting the string into two parts with '/' as the delimiter between the parts. This split operation is failing because the Content-type: header value there has either no '/' character or more than one '/' character in it. In either case the header value in the message concerned is malformed. I haven't looked beyond the obvious to determine what is done with/to the message having the apparently defective header. From R.Barrett at ftel.co.uk Fri Aug 30 11:09:21 2002 From: R.Barrett at ftel.co.uk (Richard Barrett) Date: Fri, 30 Aug 2002 10:09:21 +0100 Subject: [Mailman-Users] question about private archives. In-Reply-To: <20020830084837.GA14051@fcombernous.mtp.eprocess.fr> Message-ID: <5.1.0.14.2.20020830095238.04718710@pop.ftel.co.uk> At 10:48 30/08/2002 +0200, Fabien COMBERNOUS wrote: >Lo, > >I had installed mailman 2.0.9 with sources. All work fine. My archives >are generated. But we have a read acces to my private archives without any >passwd. Is it Normal ? > >Fabien. > >-- What is the URL by which the private archives concerned is being accessed? Normally, private archives should have a URL path which starts '/mailman/private//'. This URL goes via a MM script in $prefix/Mailman/Cgi/private.py which should enforce privacy and require a password to gain access. There should NOT be a symbolic link $prefix/archives/public/ pointing at $prefix/archives/private/. By contrast public archives should have a URL path which starts '/pipermail/'. This should be served direct by your web server without any authentication by Mailman itself. There should be a symbolic link $prefix/archives/public/ pointing at $prefix/archives/private/. Tell us which URL you are using. Also, what have you added in the way of Alias, Exec and/or ScriptAlias directives to you Apache server's httpd.conf to provide access to Mailman stuff. From barry at python.org Fri Aug 30 15:19:07 2002 From: barry at python.org (Barry A. Warsaw) Date: Fri, 30 Aug 2002 09:19:07 -0400 Subject: [Mailman-Users] Batch add w/names? References: <20020829120819.72485f6e.bkinne@wpo.it.luc.edu> Message-ID: <15727.28875.971699.451841@anthem.wooz.org> >>>>> "BWK" == Brian W Kinne writes: BWK> I'm moving lists at my site from listproc to mailman. Some of BWK> the old list owners like the ability to associate the e-mail BWK> address with a real name. Since 2.1 has this feature, I've BWK> tried to batch subscribe members with their names without BWK> success. Is there syntax I'm missing[...?] Yes, and it needs to be better documented on the mass subscribe page (feel free to lodge an SF bug report so I don't forget). Enter the addresses like so: aperson at example.com (Anne Person) bdude at example.com (Brian D. Ude) etc... Actually, any format recognized by email.Utils.parseaddr() is acceptable: http://www.python.org/doc/current/lib/module-email.Utils.html so Anne Person "Brian D. Ude" Should work too. -Barry From barry at python.org Fri Aug 30 15:22:59 2002 From: barry at python.org (Barry A. Warsaw) Date: Fri, 30 Aug 2002 09:22:59 -0400 Subject: [Mailman-Users] make install fails for 2.1b3 References: <001001c24f9b$41c17d80$a63a8a89@cern.ch> <001301c24fab$ce8a5790$a63a8a89@cern.ch> Message-ID: <15727.29107.994716.408730@anthem.wooz.org> >>>>> "GZ" == Goeran Zaengerlein writes: GZ> ok, I found out what the problem is: The configure script GZ> creates the file "/src/mailman-2.1b3/misc/paths.py", but "make GZ> install" does not copy it to "$prefix/bin". I do occasionally get reports about this, but I've never been able to reproduce it, even on fresh installs. I wonder if this is a GNU make-ism problem? I've primarily tested on various flavi of Linux, but OTOH, it doesn't /seem/ like I'm doing anything particularly GNU make-y. Thanks Dan for analyzing the way it /ought/ to work (and does for me and most people). I'd love to understand why it's broken for some folks. -Barry From stafford at bbri.org Fri Aug 30 17:36:33 2002 From: stafford at bbri.org (Walter Stafford) Date: Fri, 30 Aug 2002 11:36:33 -0400 Subject: [Mailman-Users] Mailman stopped working after changing IP address Message-ID: Hi, After I changed the ip address of my linux box, mailman stopped working. (Our ISP assigned us a new IP number range). I have changed the hosts file and rerun the m4 sendmail.mc config script. But somewhere I have missed something. I created a new test list and tried to subscribe to it through the web interface but I get no response from it. There are a lot of files piling up in /home/mailman/qfiles None of the lists (I have 4) will forward messages or allow new subscriptions. Can anyone help?? Walter Stafford -- ------------------------------------------------------ Walter Stafford Director of Computer Services Boston Biomedical Research Institute 64 Grove Street Watertown, MA 02472 USA Main: 617-658-7700 Direct: 617-658-7808 Fax: 617-972-1753 mailto:stafford at bbri.org http://www.bbri.org/ --------------------------------------------------------- From wolf at wolfstream.net Fri Aug 30 17:49:26 2002 From: wolf at wolfstream.net (Tom Whiting) Date: Fri, 30 Aug 2002 10:49:26 -0500 Subject: [Mailman-Users] Mailman stopped working after changing IP address In-Reply-To: References: Message-ID: <200208301049.26710.wolf@wolfstream.net> On Friday 30 August 2002 10:36 am, Walter Stafford wrote: > Hi, > After I changed the ip address of my linux box, mailman stopped > working. (Our ISP assigned us a new IP number range). I have changed the > hosts file and rerun the m4 sendmail.mc config script. But somewhere I have > missed something. I created a new test list and tried to subscribe to it > through the web interface but I get no response from it. There are a > > lot of files piling up in /home/mailman/qfiles > > None of the lists (I have 4) will forward messages or allow new > subscriptions. Can anyone help?? > > Walter Stafford There's a few reasons that this could be happening (none relating to Mailman that I know of) A> Your DNS records haven't bounced back to you yet (in some cases this can take up to 3d to filter through the 'net). Personally, I use EveryDNS, with a perl monitor every hour or so. They manage to get the ip back and registered usually in < an hour and in some cases MUCH less. B> Your OLD I.P. address is hardcoded into your MTA somewhere (I believe PARTS of qmail do this (depending on your distro)). C> You somehow have your old I.P. address set in your O.S. some other way. ___________________________________ TJW: Head tech, Dreamless Realms Mud: http://dreamless.wolfstream.net Snippets http://dreamless.wolfstream.net/ Telnet dreamless.wolfstream.net:9275 The OLC Pages http://olc.wolfstream.net ___________________________________ From arif at welfarelaw.org Fri Aug 30 17:51:30 2002 From: arif at welfarelaw.org (Arif Mamdani) Date: 30 Aug 2002 10:51:30 -0500 Subject: [Mailman-Users] messages to user not being delivered Message-ID: <1030722690.1870.18.camel@localhost.localdomain> Hey folks, I'm having a really strange issue here, that I've been beating my head against the wall with. If it's okay, I'd like to summarize what I've done, in hopes that one of you may see something that I haven't and be able to provide some guidance in where else I can look. I'm running a number of lists, and we've recently found that one user who's subscribed to two of those lists isn't receiving her messages. On the server, they appear to be delivered just fine: Aug 29 19:27:48 lincproject postfix/smtp[26161]: DBE901AF2A7: to=, relay=fifthave.org[216.248.203.53], delay=44, status=sent (250 TAA10442 Message accepted for delivery) but on her end, she never sees them. Looking from Mailman logs doesn't show any bounces/errors/anything related to her or the lists in question. We set up a test list, with her as the only subscriber and she does receive messages from that list. What this suggests to me is that the problem is somewhere on her end, but before I confidently say that, I want to be sure that I'm not overlooking something, and have ruled out any possibility of problems at my end. thanks -arif -- Arif Mamdani arif at welfarelaw.org Circuit Rider ph: 651.644.0199 LINC Project -- Welfare Law Center c: 917.655.2579 www.lincproject.org www.welfarelaw.org From sammons_david at yahoo.com.mx Fri Aug 30 17:47:10 2002 From: sammons_david at yahoo.com.mx (=?iso-8859-1?q?David=20Sammons?=) Date: Fri, 30 Aug 2002 10:47:10 -0500 (CDT) Subject: [Mailman-Users] Problems with MM 2.0.9 Message-ID: <20020830154710.11312.qmail@web21306.mail.yahoo.com> Hi there! I have problems installing MM2.0.9 at compiling time a receive the message: checking for CGI extensions... no Traceback (most recent call last): File "conftest.py", line 2, in ? from socket import * File "/usr/local/lib/python2.1/socket.py", line 41, in? from _socket import * ImportError: ld.so.1: /usr/local/bin/python: fatal: libssl.so.0.9.6: open failed: No such file or directory Any ideas??? Thanks a lot!!!! _________________________________________________________ Do You Yahoo!? La emoci?n e intensidad del deporte en Yahoo! Deportes. http://deportes.yahoo.com.mx From stafford at bbri.org Fri Aug 30 21:20:27 2002 From: stafford at bbri.org (Walter Stafford) Date: Fri, 30 Aug 2002 15:20:27 -0400 Subject: [Mailman-Users] Mailman stopped working after changing IP address In-Reply-To: <200208301049.26710.wolf@wolfstream.net> References: <200208301049.26710.wolf@wolfstream.net> Message-ID: Hi Tom. It turned out that I had unwittingly deleted from the hosts file the line 127.0.0.1 my_server.bbri.org localhost Once I added that back, all the emails that were being held were processed correctly by crond and sendmail. But I had had multiple problems: before that I couldn't get the posts to appear or the subscription requests to show up until I reset some permissions to what they should be in the Mailman directories. So this was a two step process. I had also impetuously reinstalled Mailman as root accidently and that caused problems too until I re-installed it as mailman and then reset the owner/group correctly... Your clues were quite helpful; they got me on the right track. Thanks. Walter At 10:49 -0500 8/30/02, Tom Whiting wrote: >On Friday 30 August 2002 10:36 am, Walter Stafford wrote: >> Hi, >> After I changed the ip address of my linux box, mailman stopped >> working. (Our ISP assigned us a new IP number range). I have changed the >> hosts file and rerun the m4 sendmail.mc config script. But somewhere I have >> missed something. I created a new test list and tried to subscribe to it >> through the web interface but I get no response from it. There are a >> >> lot of files piling up in /home/mailman/qfiles >> >> None of the lists (I have 4) will forward messages or allow new >> subscriptions. Can anyone help?? >> >> Walter Stafford > >There's a few reasons that this could be happening (none relating to Mailman >that I know of) >A> Your DNS records haven't bounced back to you yet (in some cases this can >take up to 3d to filter through the 'net). >Personally, I use EveryDNS, with a perl monitor every hour or so. They manage >to get the ip back and registered usually in < an hour and in some cases MUCH >less. > >B> Your OLD I.P. address is hardcoded into your MTA somewhere (I believe PARTS >of qmail do this (depending on your distro)). > >C> You somehow have your old I.P. address set in your O.S. some other way. >___________________________________ >TJW: Head tech, Dreamless Realms >Mud: http://dreamless.wolfstream.net >Snippets http://dreamless.wolfstream.net/ >Telnet dreamless.wolfstream.net:9275 >The OLC Pages http://olc.wolfstream.net >___________________________________ -- ------------------------------------------------------ Walter Stafford Director of Computer Services Boston Biomedical Research Institute 64 Grove Street Watertown, MA 02472 USA Main: 617-658-7700 Direct: 617-658-7808 Fax: 617-972-1753 mailto:stafford at bbri.org http://www.bbri.org/ --------------------------------------------------------- From Ncampbell at nbta.org Thu Aug 29 19:36:16 2002 From: Ncampbell at nbta.org (Norman Campbell) Date: Thu, 29 Aug 2002 13:36:16 -0400 Subject: [Mailman-Users] HTML Emails Message-ID: I currently have several lists being hosted by another company using Mailman 2.1b2. We want the capability to send html email. When I send the email, it is received as attachments only. Nothing is in the body of the email. Is there a way so that the email is received with the html in the body of the message? Thanks, Norm Campbell Information & Technology Manager NBTA 703.684.0836 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/mailman-users/attachments/20020829/335ede84/attachment.html From walter at bbri.org Fri Aug 30 04:42:46 2002 From: walter at bbri.org (walter stafford) Date: Thu, 29 Aug 2002 22:42:46 -0400 Subject: [Mailman-Users] Mailman stopped working after changing IP address Message-ID: <3D6EDBA6.50DFC96C@bbri.org> Hi, After I changed the ip address of my linux box, mailman stopped working. (Our ISP assigned us a new IP range). I have changed the hosts file and rerun the m4 sendmail.mc config script. But somehwere i have missed something. I created a new test list and tried to subscribe to it throught the web interface but I get no repsonse from it. There are a lot of files piling up in /home/mailman/qfiles None of the lists (I have 4) will forward messages or allow new subscriptions. Can anyone help?? Walter Stafford From nb at cisto.com Fri Aug 30 10:28:02 2002 From: nb at cisto.com (Norbert Bollow) Date: Fri, 30 Aug 2002 10:28:02 +0200 Subject: [Mailman-Users] Serialize? In-Reply-To: <3D6E80B0.3810EA51@whidbey.com> (vanhorn@whidbey.com) References: <3D6D11C8.FD853007@pcraft.com> <15725.17333.589045.535352@anthem.wooz.org> <3D6D49C0.F0E92832@whidbey.com> <28528.1030637677@kanga.nu> <3D6E80B0.3810EA51@whidbey.com> Message-ID: <200208300828.g7U8S2A22290@quill.local> G. Armour Van Horn wrote: > If you're running a number of servers it does get easier, and I suspect that > there are quite a few users here who are in that situation. One system for > Mailman is plenty for my needs, particularly since Mailman has that machine > all to itself, so other upgrades can't interfere with it. I can't justify > another system as a sandbox for 2.1, and wouldn't have time to figure out > reasonable tests to run on it anyway. There's no problem whatsoever with running several (a few) separate Mailman installs on the same machine. It's just when you haven dozens of hundreds of installs that it become necessary to change a few things. Greetings, Norbert. -- Founder & Steering Committee member of http://gnu.org/projects/dotgnu/ Norbert Bollow, Weidlistr.18, CH-8624 Gruet (near Zurich, Switzerland) Tel +41 1 972 20 59 Fax +41 1 972 20 69 http://norbert.ch List hosting with GNU Mailman on your own domain name http://cisto.com From raquel at thericehouse.net Sat Aug 31 00:05:49 2002 From: raquel at thericehouse.net (Raquel Rice) Date: Fri, 30 Aug 2002 15:05:49 -0700 Subject: [Mailman-Users] Serialize? In-Reply-To: <200208300828.g7U8S2A22290@quill.local> References: <3D6D11C8.FD853007@pcraft.com> <15725.17333.589045.535352@anthem.wooz.org> <3D6D49C0.F0E92832@whidbey.com> <28528.1030637677@kanga.nu> <3D6E80B0.3810EA51@whidbey.com> <200208300828.g7U8S2A22290@quill.local> Message-ID: <20020830150549.491f1e20.raquel@thericehouse.net> On Fri, 30 Aug 2002 10:28:02 +0200 Norbert Bollow wrote: > G. Armour Van Horn wrote: > > > If you're running a number of servers it does get easier, and I > > suspect that there are quite a few users here who are in that > > situation. One system for Mailman is plenty for my needs, > > particularly since Mailman has that machine all to itself, so > > other upgrades can't interfere with it. I can't justify another > > system as a sandbox for 2.1, and wouldn't have time to figure > > out reasonable tests to run on it anyway. > > There's no problem whatsoever with running several (a few) > separate Mailman installs on the same machine. It's just when you > haven dozens of hundreds of installs that it become necessary to > change a few things. > > Greetings, Norbert. This is something I was thinking of doing. I only run about 20 lists, but I don't want them messed with right now. I would like to do a seperate install of 2.1, testing it and them putting a couple of new lists onto it to see how it works. Is there anything special I need to be aware of in doing that? -- Raquel ============================================================ When you are joyous, look deep into your heart and you shall find it is only that which has given you sorrow that is giving you joy. When you are sorrowful look again in your heart, and you shall see that in truth you are weeping for that which has been your delight. --Kahlil Gibran From fndlm at uaf.edu Sat Aug 31 02:57:05 2002 From: fndlm at uaf.edu (Dusty McDonald) Date: Fri, 30 Aug 2002 16:57:05 -0800 Subject: [Mailman-Users] can't find /usr/bin/env Message-ID: <200208301657050533.054C8649@aurora.alaska.edu> I am trying to install mailman on Solaris8. 'make install' dies with "/usr/bin/env: No such file or directory" /usr/bin/env does exist: bash-2.03$ ls -l /usr/bin/env total 110336 -rwxr-xr-x 1 root bin 5116 Jan 5 2000 /usr/bin/env check_perms finds the same problem. The file is global read and execute. Does mailman need write permission? If so, is that safe, and why the cryptic error message? Is something else hinky? BTW, "check_perms -v" and "check_perms -f" produce exactly the same message as plain old "check_perms". What's happening there? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/mailman-users/attachments/20020830/de6a5358/attachment.htm From booker at lava.net Sat Aug 31 05:07:24 2002 From: booker at lava.net (Booker) Date: Fri, 30 Aug 2002 17:07:24 -1000 Subject: [Mailman-Users] Trying to debug "All recipients refused:..." Message-ID: <004701c2509b$8bbb0e00$c17f4140@lava.net> Greetings, I'm having problems with this mailing list I'm trying to setup. Initially the list worked fine until I added more users. Here's what I have in my configs and my logs. I'm guessing that the MTA or SMTP server is doing the refusing. in logs/smtp Aug 30 14:16:30 2002 (21555) All recipients refused: Server not connected Aug 30 14:16:30 2002 (21555) smtp for 1991 recips, completed in 328.470 seconds in mm_cfg.py SMTPHOST = 'virtaul.smtp.host.net' #bunch of smtp servers we have load balanced SMTPPORT = 25 # default from smtplib Is there an option that I can turn on so that the output in logs/smtp is more verbose? Mahalo, Booker From wash at wananchi.com Sat Aug 31 08:37:11 2002 From: wash at wananchi.com (Odhiambo Washington) Date: Sat, 31 Aug 2002 09:37:11 +0300 Subject: [Mailman-Users] HTML Emails In-Reply-To: References: Message-ID: <20020831063711.GE29010@ns2.wananchi.com> * Norman Campbell [20020831 00:25]: wrote: > I currently have several lists being hosted by another company using Mailman > 2.1b2. We want the capability to send html email. When I send the email, > it is received as attachments only. Nothing is in the body of the email. > Is there a way so that the email is received with the html in the body of > the message? I think that is a MUA problem. When someone sends HTML mail and there is no filtering between the sender and the recipient, the failure to display the mail correctly is a problem that lies with the mail client, no? I see in so many lists people send HTML mail and we hate them ;-( -Wash -- Odhiambo Washington "The box said 'Requires Wananchi Online Ltd. www.wananchi.com Windows 95, NT, or better,' Tel: +254 2 313985-9 +254 2 313922 so I installed FreeBSD." GSM: +254 72 743223 +254 733 744121 This sig is McQ! :-) He who Laughs, Lasts.