[Mailman-Users] Pipermail scrubbing ascii txt to ksh attachment

2021-03-03 Thread Mark Dale via Mailman-Users
Hi Listers, I've got a client's list to which a plain text email notice is sent everyday. Mailman-Version: 2.1.34 Postfix Debian 10 The message contents are fairly similar each day and the text message renders in email clients just fine and the .mbox file reads fine also. However, Pipermail ren

Re: [Mailman-Users] (pipermail versus ...) To join aconversationfromthe web interface

2008-09-24 Thread Edward Harvey
Edward Harvey wrote: Not sure how much of this you like / agree with, but here's an example of how I like to obscure things like that: http://nedharvey.com/pipermailconfig.html Thanks for the suggestion. One comment on your page - I don't think the list reply mailto should be

Re: [Mailman-Users] (pipermail versus ...) To join aconversationfromthe web interface

2008-09-23 Thread Mark Sapiro
Edward Harvey wrote: > >Not sure how much of this you like / agree with, but here's an example >of how I like to obscure things like that: > http://nedharvey.com/pipermailconfig.html Thanks for the suggestion. One comment on your page - I don't think the list reply mailto should be obscur

Re: [Mailman-Users] (pipermail versus ...) To join a conversationfromthe web interface

2008-09-22 Thread Edward Harvey
Edward Harvey wrote: Oh - I misunderstood the meaning of that. Here's what I thought: I thought if OBSCURES is No, the archiver shows [EMAIL PROTECTED] I thought if OBSCURES is Yes, the archiver shows joe -at- domain I think this is cool the way it is, and it was just my misunderstanding

Re: [Mailman-Users] (pipermail versus ...) To join a conversationfromthe web interface

2008-09-19 Thread Mark Sapiro
Edward Harvey wrote: > >Oh - I misunderstood the meaning of that. Here's what I thought: >I thought if OBSCURES is No, the archiver shows >[EMAIL PROTECTED] >I thought if OBSCURES is Yes, the archiver shows >joe -at- domain > >I think this is cool the way it is, and it was just my misunderstandi

Re: [Mailman-Users] (pipermail versus ...) To join a conversation fromthe web interface

2008-09-19 Thread Edward Harvey
Edward Ned Harvey wrote: Presently, I'm using pipermail. I'm open to suggestions. This question is pretty complicated, so probably the best answer I could possibly get is to know how pipermail gets called, so I can go try and read its source and stuff. So I can dig into it myself. At pre

Re: [Mailman-Users] (pipermail versus ...) To join a conversation fromthe web interface

2008-09-16 Thread Mark Sapiro
Edward Ned Harvey wrote: >Presently, I'm using pipermail. I'm open to suggestions. > >This question is pretty complicated, so probably the best answer I could >possibly get is to know how pipermail gets called, so I can go try and read >its source and stuff. So I can dig into it myself. At pres

[Mailman-Users] (pipermail versus ...) To join a conversation from the web interface

2008-09-16 Thread Edward Ned Harvey
Presently, I'm using pipermail. I'm open to suggestions. This question is pretty complicated, so probably the best answer I could possibly get is to know how pipermail gets called, so I can go try and read its source and stuff. So I can dig into it myself. At present, I have no idea what proces

Re: [Mailman-Users] pipermail footer (was: mailman footer)

2008-04-02 Thread Mark Sapiro
Jim Popovitch wrote: >Is there a way to add a pipermail (archive) footer, but not an email >footer, specifically a script (a'la Google Analytics)? You can always edit the templates. See . article.html - for the article itself

[Mailman-Users] pipermail footer (was: mailman footer)

2008-04-01 Thread Jim Popovitch
Is there a way to add a pipermail (archive) footer, but not an email footer, specifically a script (a'la Google Analytics)? Thx, -Jim P. -- Mailman-Users mailing list Mailman-Users@python.org http://mail.python.org/mailman/listinfo/mailman-users

Re: [Mailman-Users] Pipermail URL handling in archives

2008-02-22 Thread Jim Popovitch
On Fri, Feb 22, 2008 at 9:01 PM, Dov Oxenberg <[EMAIL PROTECTED]> wrote: > > Hi, > Please pardon me for butting in, I will be the first to admit I am probably > the least qualified to give an opinion here, but > :-) > It seems to me this is a DNS issue, no? Simply because the trailing > cha

Re: [Mailman-Users] Pipermail URL handling in archives

2008-02-22 Thread Dov Oxenberg
as DNS is concerned. If you have a form front end it should not be that big a deal to just "trim" the period or comma from the URL. Or am I just totally out of touch here??? > Date: Fri, 22 Feb 2008 19:09:16 -0500> From: [EMAIL PROTECTED]> To: > mailman-users@python.

Re: [Mailman-Users] Pipermail URL handling in archives

2008-02-22 Thread Stephen J. Turnbull
Jim Popovitch writes: > On Fri, Feb 22, 2008 at 4:03 PM, Mark Sapiro <[EMAIL PROTECTED]> wrote: > So, the problem seems to appear with commas too which makes me wonder > if this can be resolved with this: > >urlpat = re.compile(r'(\w+://[^>)\s]+?)(\.|,)?(\s|$)') # URLs in text > > but

Re: [Mailman-Users] Pipermail URL handling in archives

2008-02-22 Thread Jim Popovitch
On Fri, Feb 22, 2008 at 7:37 PM, Mark Sapiro <[EMAIL PROTECTED]> wrote: > >Gets converted into: > > this is another url >HREF="http://www.yahoo.com,";>http://www.yahoo.com, > >and so is this >HREF="http://www.ibm.com";>http://www.google.com. > > > I assume that's a typo and 'i

Re: [Mailman-Users] Pipermail URL handling in archives

2008-02-22 Thread Mark Sapiro
Jim Popovitch wrote: >On Fri, Feb 22, 2008 at 4:03 PM, Mark Sapiro <[EMAIL PROTECTED]> wrote: >> You could try to find the line >> >> urlpat = re.compile(r'(\w+://[^>)\s]+)') # URLs in text >> >> near the beginning of Mailman/Archiver/HyperArch.py and change it to >> >> urlpat = re.compile(r'(

Re: [Mailman-Users] Pipermail URL handling in archives

2008-02-22 Thread Jim Popovitch
On Fri, Feb 22, 2008 at 4:03 PM, Mark Sapiro <[EMAIL PROTECTED]> wrote: > You could try to find the line > > urlpat = re.compile(r'(\w+://[^>)\s]+)') # URLs in text > > near the beginning of Mailman/Archiver/HyperArch.py and change it to > > urlpat = re.compile(r'(\w+://[^>)\s]+?)\.?(\s|$)') #

Re: [Mailman-Users] Pipermail URL handling in archives

2008-02-22 Thread Jim Popovitch
On Fri, Feb 22, 2008 at 4:03 PM, Mark Sapiro <[EMAIL PROTECTED]> wrote: > You could try to find the line > > urlpat = re.compile(r'(\w+://[^>)\s]+)') # URLs in text > > near the beginning of Mailman/Archiver/HyperArch.py and change it to > > urlpat = re.compile(r'(\w+://[^>)\s]+?)\.?(\s|$)') #

Re: [Mailman-Users] Pipermail URL handling in archives

2008-02-22 Thread Mark Sapiro
Jim Popovitch wrote: > >I have a problem with some URLs being handled incorrectly. >Specifically URLs that are at the end of a sentence followed by a >period (full stop). Example: > > To enroll visit this site: http://www.domain.tld/cgi-bin/enroll.pl. > >Mailman/Pipermail converts that sentence

[Mailman-Users] Pipermail URL handling in archives

2008-02-22 Thread Jim Popovitch
Hi, I have a problem with some URLs being handled incorrectly. Specifically URLs that are at the end of a sentence followed by a period (full stop). Example: To enroll visit this site: http://www.domain.tld/cgi-bin/enroll.pl. Mailman/Pipermail converts that sentence like so: To enroll vi

Re: [Mailman-Users] pipermail converts @ to at

2008-01-22 Thread Florian Effenberger
Hi, > What Mailman version is this? Both body and headers should be > controlloed by ARCHIVER_OBSCURES_EMAILADDRS in mm_cfg.py, but note that > this will not affect messages which are already archived. Changing it > will only affect new messages unless you rebuild the archive with bin/arch. thank

Re: [Mailman-Users] pipermail converts @ to at

2008-01-21 Thread Mark Sapiro
Florian Effenberger wrote: > Hi, > >> Try turning off address obfuscation. > > this doesn't seem to affect the message body, only the message headers. :-( What Mailman version is this? Both body and headers should be controlloed by ARCHIVER_OBSCURES_EMAILADDRS in mm_cfg.py, but note that this w

Re: [Mailman-Users] pipermail converts @ to at

2008-01-21 Thread Florian Effenberger
Hi, > Try turning off address obfuscation. this doesn't seem to affect the message body, only the message headers. :-( Florian -- Mailman-Users mailing list Mailman-Users@python.org http://mail.python.org/mailman/listinfo/mailman-users Mailman

Re: [Mailman-Users] pipermail converts @ to at

2008-01-21 Thread Brad Knowles
On 1/21/08, Florian Effenberger wrote: > pipermail converts @ to at in it's archives. I have disabled it for the > sender of a message, but it seems to be non-configurable for the >message body. Try turning off address obfuscation. Of course, then what you've done is to provide an archive of

[Mailman-Users] pipermail converts @ to at

2008-01-21 Thread Florian Effenberger
Hi there, pipermail converts @ to at in it's archives. I have disabled it for the sender of a message, but it seems to be non-configurable for the message body. Is there any option I missed? Thanks Florian Viel oder wenig? Schnell oder langsam? Unbegrenzt surfen + telefonieren ohne Zeit- und V

Re: [Mailman-Users] Pipermail --> MHonArc error

2007-06-02 Thread Richard Barrett
Karl I just noticed the posting that you made to mailman-users. I think that what is triggering the exception is the way you are running arch. When you run arch the first time with the --wipe option, the existing HTML archive content is deleted and the new HTML archive content is generated

[Mailman-Users] Pipermail --> MHonArc error

2007-05-01 Thread Karl Zander
I am trying to convert a list from the Pipermail archiver to MhonArc. I can run /bin/arch --wipe listname successfully. I get this error when generating the MhonArc archive with /bin/arch listname Pickling archive state into /data/mailman/archives/private/listname/pipermail.pck Traceback (

Re: [Mailman-Users] pipermail customization

2007-02-19 Thread Mark Sapiro
Denis wrote: > >I can't understand how to force rebild files from >/usr/local/mailman2/archives/private/webman/2007-February/* > >Seems for new files all ok. > >/usr/local/mailman/bin/mailmanctl restart - doesn't help : ( You have to rebuild the archive. See 'bin/arch --help'. If this archive i

Re: [Mailman-Users] pipermail customization

2007-02-19 Thread Denis
Thanks, this is interesting! I can't understand how to force rebild files from /usr/local/mailman2/archives/private/webman/2007-February/* Seems for new files all ok. /usr/local/mailman/bin/mailmanctl restart - doesn't help : ( Can you advice please? > Denis wrote: >>It's possible customi

Re: [Mailman-Users] pipermail customization

2007-02-19 Thread Mark Sapiro
Denis wrote: >It's possible customize archived message page? (like >http://mail.python.org/pipermail/mailman-users/2004-April/035963.html >) > >add custom header-footer-css ? See . The template is article.html. -- Mark Sapi

[Mailman-Users] pipermail customization

2007-02-19 Thread Denis
Hi guys .. It's possible customize archived message page? (like http://mail.python.org/pipermail/mailman-users/2004-April/035963.html ) add custom header-footer-css ? As I understand this pages by generated by papermail. But unfortunately i can't find way to customize papermail. Thanks! -

Re: [Mailman-Users] Pipermail directs to http instead of https?

2006-06-27 Thread Mark Sapiro
Todd Zullinger wrote: > >The value used above would be exactly what you'd use. In python, the >%(hostname)s and %(listname)s will be expanded to the values of >hostname and listname. Check out the current value for >PUBLIC_ARCHIVE_URL in Defaults.py. Just copy it to mm_cfg.py and >change http to

Re: [Mailman-Users] Pipermail directs to http instead of https?

2006-06-27 Thread Todd Zullinger
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ryan Steele wrote: > Todd Zullinger wrote: [...] >> If RedirectPermanent broke things horribly, it likely wouldn't be >> in the FAQ. It should only cause one redirection, from http to >> https. >> >> > It doesn't break things horribly. But, it can

Re: [Mailman-Users] Pipermail directs to http instead of https?

2006-06-27 Thread Ryan Steele
Todd Zullinger wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Ryan Steele wrote: > >> I can't see having RedirectPermanent being a good solution...many >> servers limit the number of redirections, and I know that Firefox >> and IE will suffer from redirection limits as well...there

Re: [Mailman-Users] Pipermail directs to http instead of https?

2006-06-27 Thread Todd Zullinger
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ryan Steele wrote: > I can't see having RedirectPermanent being a good solution...many > servers limit the number of redirections, and I know that Firefox > and IE will suffer from redirection limits as well...there is > extensive documentation of this

Re: [Mailman-Users] Pipermail directs to http instead of https?

2006-06-27 Thread Ryan Steele
Patrick/List, I think the person who administered the box before me installed Mailman incorrectly. But, complaining about their incompetency isn't gonna fix my problem. The fix_url script removes it from the listinfo page. I had to manually reset the proper addressa result of the aforem

Re: [Mailman-Users] Pipermail directs to http instead of https?

2006-06-27 Thread Todd Zullinger
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Patrick Bogen wrote: > On 6/27/06, Ryan Steele <[EMAIL PROTECTED]> wrote: >> I have a peculiar problem. An existing list I'm trying to repair has >> problems accessing the archives. The archives link changes the protocol >> to http instead of keeping

Re: [Mailman-Users] Pipermail directs to http instead of https?

2006-06-27 Thread Patrick Bogen
On 6/27/06, Ryan Steele <[EMAIL PROTECTED]> wrote: > I have a peculiar problem. An existing list I'm trying to repair has > problems accessing the archives. The archives link changes the protocol > to http instead of keeping the https protocol the rest of Mailman uses. > I have the following alia

[Mailman-Users] Pipermail directs to http instead of https?

2006-06-27 Thread Ryan Steele
List, I have a peculiar problem. An existing list I'm trying to repair has problems accessing the archives. The archives link changes the protocol to http instead of keeping the https protocol the rest of Mailman uses. I have the following alias and directory stanza in my Apache config file:

[Mailman-Users] Pipermail problems

2006-02-14 Thread Daniel Spreadbury
Hi fellow listers, I'm having some problems with pipermail. I've recently moved my mailman installation (together with all my web virtual hosts, etc.) to another server, which I did by making a .tgz file of the /usr/local/mailman/lists folder and its subdirectories, built mailman on the new server

Re: [Mailman-Users] Pipermail problems

2006-02-14 Thread Mark Sapiro
Daniel Spreadbury wrote: > >In my Apache virtual host definition, I have this line: > >Alias /pipermail "/usr/local/mailman/archives/public/" > >That folder exists, and contains links, like this: > >lrwxr-xr-x 1 root mailman 55 Feb 14 15:53 composers-list -> >/usr/local/mailman/archives/private

Re: [Mailman-Users] Pipermail question

2005-12-15 Thread Elvis Fernandes
Thanks! I found that patch, but I am stuggling to install it. This patch is in a patch format (different from a regular tarball install). Anyways, I have posted a request in sourceforge too. Elvis On 12/15/05, Mark Sapiro <[EMAIL PROTECTED]> wrote: > > Elvis Fernandes wrote: > > > >There is one f

Re: [Mailman-Users] Pipermail question

2005-12-15 Thread Mark Sapiro
Elvis Fernandes wrote: > >There is one feature that I would like to have on the Pipermail. >In the default way that I have setup mailman-pipermail, the emails can be >browsed by Thread - Subject - Author - Date. >If I select anyone of the above, I see the emails in the Subject - Author >format. >I

Re: [Mailman-Users] Pipermail question

2005-12-15 Thread Brad Knowles
At 12:24 PM -0800 2005-12-15, Elvis Fernandes wrote: > There is one feature that I would like to have on the Pipermail. > In the default way that I have setup mailman-pipermail, the emails can be > browsed by Thread - Subject - Author - Date. > If I select anyone of the above, I see the email

[Mailman-Users] Pipermail question

2005-12-15 Thread Elvis Fernandes
Hello, Thanks to all the responses from this mail list. I was able to successfully setup mailman, and have migrated one list already. There is one feature that I would like to have on the Pipermail. In the default way that I have setup mailman-pipermail, the emails can be browsed by Thread - Subj

Re: [Mailman-Users] Pipermail archives to https

2005-12-06 Thread Mark Sapiro
Don McGregor wrote: > >1. I want the existing archives (eg links to attachments in the >existing pipermail >archives) to point to https rather than http. If I just do a sed >script on archives/public/listname/*.txt to replace occurances >of http://mySiteName with https://mySiteName will that caus

[Mailman-Users] Pipermail archives to https

2005-12-06 Thread Don McGregor
I want to move an existing installation over to an https server of the same name. Two questions: 1. I want the existing archives (eg links to attachments in the existing pipermail archives) to point to https rather than http. If I just do a sed script on archives/public/listname/*.txt to replac

Re: [Mailman-Users] pipermail not found - [was: web list removal]

2005-11-29 Thread Mark Sapiro
>gus wrote: > > I am use apache2 in debian , and my question is: > where I must put the lines of > Script Alias /cgi-bin/ /usr/lib/cgi-bin > ScriptAlias /mailman/ /usr/lib/mailman/cgi-bin See -- Mark Sapiro <[EMAIL PROTECTED]> The highway is for gambler

Re: [Mailman-Users] pipermail not found - [was: web list removal]

2005-11-29 Thread gus
gus wrote: > Mark > Thanks for the information > but I have a problem.. > I am use apache2 in debian , and my question is: > where I must put the lines of > Script Alias /cgi-bin/ /usr/lib/cgi-bin > ScriptAlias /mailman/ /usr/lib/mailman/cgi-bin > > Thanks but in my files apache2.conf I don't meet

Re: [Mailman-Users] pipermail not found - [was: web list removal]

2005-11-28 Thread Mark Sapiro
gus wrote: > >When I access to the files I see these error > >The requested URL /pipermail/mailman/ was not found on this server. > > >Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 >PHP/4.3.10-16 mod_perl/1.99

Re: [Mailman-Users] pipermail

2005-07-12 Thread Brad Knowles
At 12:09 PM +0200 2005-07-12, Jean-Philippe GIOLA wrote: >> Please tell us what you think you're trying to accomplish with >> this idea, and maybe we can tell you a better way to actually do that. >> > I want to have both pipermail and an external archiver that I have > developped in php

Re: [Mailman-Users] pipermail

2005-07-12 Thread Jean-Philippe GIOLA
Brad Knowles wrote: > At 11:29 AM +0200 2005-07-12, Jean-Philippe GIOLA wrote: > >> I know that it is fully integrated into Mailman... >> But I want to use the pipermail's python scripts for external archiver >> like : PUBLIC_EXTERNAL_ARCHIVER = 'path_to_pipermail_script' >> It is possible to

Re: [Mailman-Users] pipermail

2005-07-12 Thread Brad Knowles
At 11:29 AM +0200 2005-07-12, Jean-Philippe GIOLA wrote: > I know that it is fully integrated into Mailman... > But I want to use the pipermail's python scripts for external archiver > like : PUBLIC_EXTERNAL_ARCHIVER = 'path_to_pipermail_script' > It is possible to use external script like hyp

Re: [Mailman-Users] pipermail

2005-07-12 Thread Jean-Philippe GIOLA
Brad Knowles wrote: > At 10:10 AM +0200 2005-07-12, Jean-Philippe GIOLA wrote: > >> Is it possible to use pipermail as public or private external >> archiver ? >> If it is, how ? > > > The current version of Pipermail is fully integrated into > Mailman. You can't use it as an external arc

Re: [Mailman-Users] pipermail

2005-07-12 Thread Brad Knowles
At 10:10 AM +0200 2005-07-12, Jean-Philippe GIOLA wrote: > Is it possible to use pipermail as public or private external archiver ? > If it is, how ? The current version of Pipermail is fully integrated into Mailman. You can't use it as an external archiver, because it is the de-fact

[Mailman-Users] pipermail

2005-07-12 Thread Jean-Philippe GIOLA
Hi all Is it possible to use pipermail as public or private external archiver ? If it is, how ? reguards -- Jean-Philippe Giola - 6577 -- Mailman-Users mailing list Mailman-Users@python.org http://mail.python.org/mailman/listinfo/mailman-use

Re: [Mailman-Users] pipermail and external archiver

2005-07-08 Thread Brad Knowles
At 3:05 PM +0200 2005-07-08, Jean-Philippe GIOLA wrote: > Is it possible to have both pipermail and an external archiver working > together ? If you modify the source code to call them both, or if you modify the aliases to send a copy of the message to Mailman and your external archiv

[Mailman-Users] pipermail and external archiver

2005-07-08 Thread Jean-Philippe GIOLA
Hi all Is it possible to have both pipermail and an external archiver working together ? Im actually using un external archiver (it's an archiver in php that I have developped - it work very well!!) and when i go to my list archive page ("server/pipermail/list_name"), it say that there is no ar

Re: [Mailman-Users] pipermail+archives

2005-06-25 Thread Mark Sapiro
JC Dill wrote: >Mark Sapiro wrote: >> Jean-Philippe GIOLA wrote: >> >>>I have seen in the list I use that these 2 headers are not all the times >>>existing, even if the mail that has been sent is an answer. >>>Perhaps it depends of the MUA. >> >> Yes, it depends on the MUA. The standard says th

Re: [Mailman-Users] pipermail+archives

2005-06-17 Thread JC Dill
Mark Sapiro wrote: > Jean-Philippe GIOLA wrote: > >>I have seen in the list I use that these 2 headers are not all the times >>existing, even if the mail that has been sent is an answer. >>Perhaps it depends of the MUA. > > Yes, it depends on the MUA. The standard says these headers SHOULD be >

Re: [Mailman-Users] pipermail+archives

2005-06-17 Thread Mark Sapiro
Jean-Philippe GIOLA wrote: > >I have seen in the list I use that these 2 headers are not all the times >existing, even if the mail that has been sent is an answer. >Perhaps it depends of the MUA. Yes, it depends on the MUA. The standard says these headers SHOULD be included, not that they MUST be

Re: [Mailman-Users] pipermail+archives

2005-06-17 Thread Jean-Philippe GIOLA
OK I have seen in the list I use that these 2 headers are not all the times existing, even if the mail that has been sent is an answer. Perhaps it depends of the MUA. thanks Mark Sapiro wrote: >Jean-Philippe GIOLA wrote: > > >>On what is pipermail based on to make the coherence with the >>r

Re: [Mailman-Users] pipermail+archives

2005-06-16 Thread Mark Sapiro
Jean-Philippe GIOLA wrote: > >On what is pipermail based on to make the coherence with the >representation of the archives ? >i-e in order to know witch mail is a answer to another mail for the html >representation for having a "three" representation. It uses the References: and/or the In-Reply-

[Mailman-Users] pipermail+archives

2005-06-16 Thread Jean-Philippe GIOLA
Hi all On what is pipermail based on to make the coherence with the representation of the archives ? i-e in order to know witch mail is a answer to another mail for the html representation for having a "three" representation. reguards -- Cordialement, Jean-Philippe Giola - 6577

Re: [Mailman-Users] Pipermail searchable capabilities

2005-01-04 Thread Mark Sapiro
Sythos wrote: > >Pipermail can have search features inside private both public archive >without external archiver like htdig nor mhonarc? If yes, how? htdig can be integrated with mailman to search the pipermail archives. See http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq01.011.htp --

[Mailman-Users] Pipermail searchable capabilities

2005-01-04 Thread Sythos
Hi all I've seen in http://www.mail-archive.com/mailman-users%40python.org/ a pipermail with searchable features, but it don't indicate about external search_engine Pipermail can have search features inside private both public archive without external archiver like htdig nor mhonarc? If yes, how

[Mailman-Users] pipermail archive over XXX time

2004-11-19 Thread Sythos
There is a way to say pipermail to delete archive older than XXX time? (day, month or years)? -- Sythos - http://www.sythos.net () ASCII Ribbon Campaign - against html/rtf/vCard in mail /\- against M$ attachments ---

Re: [Mailman-Users] Pipermail public mailing list archive question

2004-09-25 Thread Brad Knowles
At 8:08 PM -0700 2004-09-24, Dana Rasmussen wrote: Is it absolutely necessary to configure the web server to point to the Pipermail public archives? If you want the archives to be accessible, yes. Since Mailman puts a number of headers (and optionally, footers) on the outgoing messages which

[Mailman-Users] Pipermail public mailing list archive question

2004-09-24 Thread Dana Rasmussen
Hello, Is it absolutely necessary to configure the web server to point to the Pipermail public archives? Can this step be skipped? Thanks, Dana -- Mailman-Users mailing list [EMAIL PROTECTED] http://mail.python.org/mailman/listinfo/mailman-users

Re: [Mailman-Users] pipermail problem

2004-02-16 Thread Richard Barrett
On 16 Feb 2004, at 18:58, Obantec Support wrote: Hi mailman 2.1.3 pipermail seems to give odd result when trying to download full raw archive mhtml:http://lists.domain.co.uk/pipermail/wibble.mbox/wibble.mbox With a a properly configured MM installation this is not "pipermail giving funny resu

[Mailman-Users] pipermail problem

2004-02-16 Thread Obantec Support
Hi mailman 2.1.3 pipermail seems to give odd result when trying to download full raw archive mhtml:http://lists.domain.co.uk/pipermail/wibble.mbox/wibble.mbox page cannot be displayed. Mark -- Mailman-Users mailing list [EMAIL PROTECTED] h

[Mailman-Users] pipermail problem

2003-07-16 Thread Melih Kaya
i can't see the list archives,problem about pipermail I think..How can i solve this problem?Any idea? -- Mailman-Users mailing list [EMAIL PROTECTED] http://mail.python.org/mailman/listinfo/mailman-users Mailman FAQ: http://www.python.org/cgi-bi

[Mailman-Users] pipermail configuration

2003-06-18 Thread Saurav Pathak
hi, how may i configure pipermail to munge email addresses to hide them from spambots? also, how do i munge addresses that appear on the mailman webpages (list admins, e.g)? thanks, -- saurav -- Mailman-Users mailing list [EMAIL PROTECTED] ht

Re: [Mailman-Users] Pipermail

2003-03-27 Thread Adam Boettiger
On 3/27/03 1:50 PM, "Alex Salamon" <[EMAIL PROTECTED]> wrote: > I have a new install of Mailman and just created my first list. One > problem I've found is that when I click on Go to list archives, I get taken > to a page that doesn't exist. > What do I need to do to fix this? You need to post a

[Mailman-Users] Pipermail

2003-03-27 Thread Alex Salamon
I have a new install of Mailman and just created my first list. One problem I've found is that when I click on Go to list archives, I get taken to a page that doesn't exist. What do I need to do to fix this? Alex -- Mailman-Users mailing li

Re: [Mailman-Users] Pipermail: Display recipient fields?

2003-03-14 Thread Jon Carnes
You would have to edit the source for this. It is not currently a standard feature of Mailman. On Fri, 2003-03-14 at 07:10, Pat Finnerty wrote: > Hi, > > Is it possible to allow the TO: and CC: fields be shown in Pipermail > archive? Something that some of my users would like. > > I'm using M

[Mailman-Users] Pipermail: Display recipient fields?

2003-03-14 Thread Pat Finnerty
Hi, Is it possible to allow the TO: and CC: fields be shown in Pipermail archive? Something that some of my users would like. I'm using Mailman v2.1 and haven't seen any way of doing this. Cheers, Pat. -- Patrick Finnerty, System Administrator, Mission Critical & Proactive Services, Hewlett

[Mailman-Users] Pipermail and timezones

2003-03-14 Thread Pat Finnerty
Hi, I've noticed that mails posted to Mailman from a different timezone (I'm in GMT) will show the local senders time in the archive but shows the timezone as GMT. Hence you don't get messages in the archive displayed chronlogically. This happens with ARCHIVER_CLOBBER_DATE_POLICY set to 2. To

[Mailman-Users] Pipermail: Display recipient fields?

2003-03-11 Thread Pat Finnerty
Hi, Is it possible to allow the TO: and CC: fields be shown in Pipermail archive? Something that some of my users would like. I'm using Mailman v2.1 and haven't seen any way of doing this. -- Patrick Finnerty, System Administrator, Mission Critical & Proactive Services, Hewlett Packard, Ballybr

[Mailman-Users] Pipermail and timezones.

2003-03-11 Thread Pat Finnerty
Hi, I've noticed that mails posted to Mailman from a different timezone (I'm in GMT) will show the local senders time in the archive but shows the timezone as GMT. This happens with ARCHIVER_CLOBBER_DATE_POLICY set to 2. To workaround this I've set ARCHIVER_CLOBBER_DATE_POLICY = 1 as this wi

Re: [Mailman-Users] pipermail config problem

2003-02-04 Thread Tokio Kikuchi
Options FollowSymLinks http://httpd.apache.org/docs/mod/core.html#options states that Note: this option gets ignored if set inside a section. Use Options Indexes FollowSymLinks -- Tokio Kikuchi, tkikuchi@ is.kochi-u.ac.jp http://weather.is.kochi-u.ac.jp/ --

[Mailman-Users] pipermail config problem

2003-02-04 Thread Shaun W. Kruger
I've looked through a couple of months of the mailman-users archive and the FAQ. That said I feel safe asking this... I added Alias /pipermail/ /var/lib/mailman/archives/public/ to my Apache httpd.conf. After that I was getting things like this in my /var/log/apache/error.log... [Tue Feb 4 2

Re: [Mailman-Users] pipermail archive + order by date

2003-02-04 Thread Jon Carnes
I don't have this problem at all, and my threading works fine as well. What version of Mailman are you using and what is your ARCHIVER_CLOBBER_DATE set to? # This sets the default `clobber date' policy for the archiver. # When a message is to be archived either by Pipermail or an # external

[Mailman-Users] pipermail archive + order by date

2003-02-04 Thread kenneth
I posted this a while ago, but got no response to my question. Why does pipermail mess up the order of mails ? What changes need to be made to have all mails in the correct order by date (taking into account that mails from australia and from the US should be listed in the correct date-order) ?

[Mailman-Users] Pipermail Attachment Problem

2003-01-31 Thread David Eisner
I just installed Mailman 2.1, and somebody noticed that for Word file attachments, the attachment link in the archives showed up as ".dot" rather than ".doc". When I tested it out, my attachment was just a string of gibberish characters. I did some research and found Bug 669081. So I took the l

[Mailman-Users] Pipermail archive and attachments

2003-01-17 Thread Jan Siml
Hello Group! I have a problem with the archives produced by pipermail version 0.09. If the default language for the list is english, everything works fine and pipermail produces an archive with correct ../attachments/.. urls. Like this: Skipped content of type multipart/alternative-

Re: [Mailman-Users] pipermail errors

2002-10-08 Thread Barbara Johansen
Did you setup the cronjobs? On Tue, 8 Oct 2002, Michael Sharp wrote: > I have my httpd.conf configured as such for pipermail: > > Alias /pipermail/ "/usr/local/mailman/archives/public/" > > Options Indexes FollowSymlinks MultiViews > AllowOverride None > Order all

Re: [Mailman-Users] pipermail errors

2002-10-08 Thread Patrick
Le 08 octobre 2002 a 21:39, Michael Sharp écrivait: > /usr/local/mailman/bin/check_perms shows NO permission errors. Apache has > been restarted since the changes were made. Other than that, all works > fine, except http://domain.com/pipermail/ shows a 404 Error > Not Found. Have some mails

[Mailman-Users] pipermail errors

2002-10-08 Thread Michael Sharp
I have my httpd.conf configured as such for pipermail: Alias /pipermail/ "/usr/local/mailman/archives/public/" Options Indexes FollowSymlinks MultiViews AllowOverride None Order allow,deny Allow from all /usr/local/mailman/bin/check_perms shows NO perm

[Mailman-Users] Pipermail and Mailman

2002-08-14 Thread Ryan Pratt
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.

Re: [Mailman-Users] pipermail vs hypermail

2002-06-27 Thread Bob Stout
On Tue, 25 Jun 2002, Irene Sakellarakis wrote: > We're looking into using Mailman to replace our current Majordomo setup. > We're running into a problem with respect to pipermail, however. We have > extensive archives under a hacked hypermail format. > > We need to keep all our archives together,

[Mailman-Users] pipermail vs hypermail

2002-06-27 Thread Irene Sakellarakis
Hi there,  We're looking into using Mailman to replace our current Majordomo setup. We're running into a problem with respect to pipermail, however. We have extensive archives under a hacked hypermail format.   We need to keep all our archives together, whether that be in piper- or hyper-mai

[Mailman-Users] Pipermail date oddity

2002-06-15 Thread jgotts
Perhaps this is a FAQ, but I've noticed several mailman/pipermail archives with obviously incorrectly dated messages. For example, you commonly see things like 1 message for January 2010 in the web based archives. Wouldn't it be trivial to redate a message that comes across dated 7 days in the f

Re: [Mailman-Users] pipermail cannot parse Date: correctly

2002-05-04 Thread Barry A. Warsaw
> "WK" == WATANABE Katsuhiro <[EMAIL PROTECTED]> writes: WK> Precisely speaking, the problem is inherited from WK> $prefix/Mailman/pythonlib/rfc822.py . I've checked on Mailman WK> 2.0.8. I've filed this as a bug on the Python project. Python 2.3's rfc822.py has the same proble

[Mailman-Users] pipermail cannot parse Date: correctly

2002-04-27 Thread WATANABE Katsuhiro
Pipermail cannot recognize Date: field like Date: Wed,3 Apr 2002 14:58:26 +0800 correctly, though it understands Date: Wed, 3 Apr 2002 14:58:26 +0800 perfectly. Remember that RFC2822 says a space(FWS) at the head of "date" is optional, not mandatory: > date-time = [ day-of-week

[Mailman-Users] Pipermail option via browser throws an error

2002-02-03 Thread Ganesh HariHaran
Title: Pipermail option via browser throws an error Hi all So long!! I get an error when clicking the "Go to list archieve" from the admin interface. "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 an

[Mailman-Users] Pipermail option via browser throws an error

2002-02-03 Thread Ganesh HariHaran
Title: Pipermail option via browser throws an error Hi all So long!! I get an error when clicking the "Go to list archieve" from the admin interface. "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 an

Re: [Mailman-Users] Pipermail help

2002-01-16 Thread Jon Carnes
http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq03.007.htp On Wednesday 16 January 2002 11:32, Vitor Domingos wrote: > Where can i find more information about pipermail ? > I want to protect public archives folder of mailman with .htaccess. > > Does anyone know how could i do that ? >

[Mailman-Users] Pipermail help

2002-01-16 Thread Vitor Domingos
Where can i find more information about pipermail ? I want to protect public archives folder of mailman with .htaccess. Does anyone know how could i do that ? -- Cheers, Vitor Domingos -- Mailman-Users maillist - [EMAIL PROTECTED] http://ma

Re: [Mailman-Users] Pipermail/Mhonarc, archives...

2001-12-14 Thread J C Lawrence
On Fri, 14 Dec 2001 15:23:10 -0800 Ron Parker <[EMAIL PROTECTED]> wrote: > Where is this FAQ? http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq04.004.htp -- J C Lawrence -(*)Satan, oscillate my metallic sonatas. [EMAIL PROTECTED]

Re: [Mailman-Users] Pipermail/Mhonarc, archives...

2001-12-14 Thread Dan Wilder
On Fri, Dec 14, 2001 at 03:23:10PM -0800, Ron Parker wrote: > Where is this FAQ? The only Mailman FAQ I see is on the Mailman Home > page: > > http://www.gnu.org/software/mailman/faq.html > > but, no note regarding mhonarc there. http://www.python.org/cgi-bin/faqw-mm.py That's a FAQ itsel

  1   2   >