[Mailman-Users] name with the email address.

2002-06-26 Thread Subhasis Mahapatra

Hi to all,

How can I add name for each mail address.

ie,

my mail id is [EMAIL PROTECTED]  and I want to my name should appear in
the mailing list ( in the mailman mailing list in my institute).

Thanks in advance.

-- 
With Best Regards,
Subhasis Mahapatra



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



Re: [Mailman-Users] Mailman on a virtual site

2002-06-26 Thread Scott Courtney

On Tuesday 25 June 2002 07:14 pm, Colin J. Raven wrote:
 Greetings all!
 Small (but vital) question:

 Can mailman be installed on a virtual site (tenant on a server) by the
 **site** admin?
 Further info:


Yes. The only root prerequisite is that the customer's virtual mail domain
must all be routed to that customer's Linux login. This amounts to an entry
in /etc/mail/virtusertable like this:

  @customerdomain.com   local:customerlogin

The customer then uses Procmail recipes to handle all the mail, including
regular mail to the account itself, and the Mailman installation is totally
local within the home directory of the customer.

I'm running this in production on my server, for almost a month with no
trouble. I'm currently writing a HOWTO to explain the procedure; this should
be done in the next day or two and will be announced on the list.

My solution applies to Mailman 2.1b2 and later; I have not tested it with
the earlier versions.

(BTW, the delay in the HOWTO has resulted from my having to learn something
about DocBook in order to write it...the writing isn't the hard part!)

Scott

-- 
---+--
Scott Courtney | I don't mind Microsoft making money. I mind them
[EMAIL PROTECTED]   | having a bad operating system.-- Linus Torvalds
http://4th.com/| (The Rebel Code, NY Times, 21 February 1999)



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



Re: [Mailman-Users] Customization of main Mailman pages

2002-06-26 Thread Christiaan Keet


That's fine for customizing the per-list pages, I knew that.

My question was: how do you change the page you see when you go to
www.domain.com/mailman/listinfo/ (_NOT_ a list-specific page) ?

- Christiaan


On Tue, Jun 25, 2002 at 11:39:18PM -0400, Support Desk wrote:
 
 Save the default page(s) to your computer, and edit  the
 html  'till your heart is content, then copy and paste this
 revised html into the corresponding text box for the page
 you customized.. The admin page itself is not editable 
 through these links, but head and foot, etc. are and
 there are 4 editable pages here: 
 http://YOUR_DOMAIN/mailman/edithtml/YOUR_LIST 
 
 SD 
 
 - Original Message - 
 From: Christiaan Keet [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Tuesday, June 25, 2002 6:04 PM
 Subject: [Mailman-Users] Customization of main Mailman pages
 
 
 | I'm convinced this has to be an FAQ, but I can't find it so here
 | goes:
 | 
 | What's the best way to go about customizing the main Mailman pages
 | (the stuff you see when you go to www.domain.com/mailman/listinfo/
 | and .../admin/)?
 | 
 | - Christiaan


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



Re: [Mailman-Users] Wrapper

2002-06-26 Thread Scott Courtney

On Tuesday 25 June 2002 04:14 pm, Gour wrote:
 On Tue, Jun 11, 2002 at 01:49:18PM -0400, Tracy Snell wrote:
  Just needed to install the cron jobs. Didn't realize they were needed for
  delivery. All is well now. Running virtual domains, it all is working as
  advertised.

 What do you mean?

 I executed: crontab crontab.in and when I check crons with: crontab -l,
 it shows that cron jobs from crontab.in are active, but still - no
 delivery.

 Is there something else what I am missing?

Good morning! The crontab.in file probably does not contain the qrunner line.
I think the developers intend to have that running standalone as a daemon, but
on my installation that consumed excessive CPU even if the delay constants
were nonzero. So I'm running with the following line in my crontab:

* * * * * /usr/bin/python -S /(path)/bin/qrunner -o -r All  (logfile) 21

Salient details:

* * * * * means run once per minute.
(path) should be replaced with the path to Mailman's install directory
(logfile) should be replaced with a logfile name of your choice.
And of course, drop the parentheses.

NOTA BENE: Check the accuracy of the -o and -r All parameters by running it
manually before putting in your crontab. I'm using Mailman 2.1b2 and am not 100%
sure the params haven't changed. But the fundamental point -- that you won't get
delivery unless the qrunner is active -- still stands.

If you run this in the root crontab (not advised, but possible) you'll need an
extra parameter near the beginning of the line for the userid owning the
process.

Scott

-- 
---+--
Scott Courtney | I don't mind Microsoft making money. I mind them
[EMAIL PROTECTED]   | having a bad operating system.-- Linus Torvalds
http://4th.com/| (The Rebel Code, NY Times, 21 February 1999)



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



[Mailman-Users] Python newbie having trouble with withlist

2002-06-26 Thread Scott Courtney

Good morning.

Dumb question: How does one set the sys.path value for Python modules to find
their include files? I'm trying to use withlist and am testing with the
example module from the FAQ. The docs mention that another module has to be
in your sys.path but they don't tell you how that happens. I would like to
have my own primitive Python code *not* be intermingled with the installation
directory, so that it's easier for me to upgrade and maintain Mailman itself.

I am sure the answer to this is simple and I will feel stupid, but I'm not
spotting it in the documentation.

Thanks for any help.

Scott

-- 
---+--
Scott Courtney | I don't mind Microsoft making money. I mind them
[EMAIL PROTECTED]   | having a bad operating system.-- Linus Torvalds
http://4th.com/| (The Rebel Code, NY Times, 21 February 1999)



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



Re: [Mailman-Users] Customization of main Mailman pages

2002-06-26 Thread Support Desk


http://YOUR_DOMAIN/mailman/istinfo.html 
IS a list specific page (DUH!)

It IS the main page! (DUH!)

It is called the General list information page ... (DUH!) 

It is FULLY customizable! You don't like the pretty blue
and beige color scheme? Change it! You don't like the
Python Goat? Delete it! (DUH!) 

You customize it for your own list through admin at: 
http://YOUR_DOMAIN/mailman/edithtml/YOUR_LIST 
http://YOUR_DOMAIN/mailman/edithtml/YOUR_LIST/listinfo.html 
You type in or copy  paste your code in the box, and save it;
this changes the look of the page, if you want the page
to follow the look and feel of your site, if you want to add
a background, other links, buttons, scripts, add banners, 
change colors, add a pic of your girl friend, or whatever! 
you do that here!  
Note that any tag MM-etc is a Mailman tag, and you
may or may not wish to leave specific tags there. Just use
caution, maintain chronological backups of your changes
in case you screw anything up.. 

Do I need to give you a guided tour? 
Now go to your list admin
and L@@K on the right side, you see:
Other Administrative Activities under there is a link:
Edit the HTML for the public list pages  Click it! Then click this link: 
General list information page  Now, edit anything your little
heart desires! Then click [ Submit Changes ]  

Do you understand what I'm sayin'? 

Now, I need a drink... No charge for the guided tour.. ;-) 
SD


- Original Message - 
From: Christiaan Keet [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, June 26, 2002 8:37 AM
Subject: Re: [Mailman-Users] Customization of main Mailman pages


| 
| That's fine for customizing the per-list pages, I knew that.
| 
| My question was: how do you change the page you see when you go to
| www.domain.com/mailman/listinfo/ (_NOT_ a list-specific page) ?
| 
| - Christiaan
| 
| 
| On Tue, Jun 25, 2002 at 11:39:18PM -0400, Support Desk wrote:
|  
|  Save the default page(s) to your computer, and edit  the
|  html  'till your heart is content, then copy and paste this
|  revised html into the corresponding text box for the page
|  you customized.. The admin page itself is not editable 
|  through these links, but head and foot, etc. are and
|  there are 4 editable pages here: 
|  http://YOUR_DOMAIN/mailman/edithtml/YOUR_LIST 
|  
|  SD 
|  
|  - Original Message - 
|  From: Christiaan Keet [EMAIL PROTECTED]
|  To: [EMAIL PROTECTED]
|  Sent: Tuesday, June 25, 2002 6:04 PM
|  Subject: [Mailman-Users] Customization of main Mailman pages
|  
|  
|  | I'm convinced this has to be an FAQ, but I can't find it so here
|  | goes:
|  | 
|  | What's the best way to go about customizing the main Mailman pages
|  | (the stuff you see when you go to www.domain.com/mailman/listinfo/
|  | and .../admin/)?
|  | 
|  | - Christiaan
| 
| 
| --
| Mailman-Users mailing list
| [EMAIL PROTECTED]
| http://mail.python.org/mailman/listinfo/mailman-users
| Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
| 
| j)fju,z»j)bž
|b²ÓŠYšK®Êr¶'¢¸!¶Úþf¢–œ­†‰è®æj)fjåŠËbú?™¨¥™©î±êì1¨¥™©Åm¶ŸÿÃ
|)ÊØhžŠàýÈn)ÿ}ª°šjr


[Mailman-Users] Archives don't seem to be working right...

2002-06-26 Thread Christopher Miles

Hello,

I¹m having a problem with the archives for my lists. They appear to be
archiving okay, but you can¹t see them from the web page. It offers to let
you download the raw archive, which is growing, but it claims that there are
no archives.

Does anybody know where I went wrong?

Thank You,
-- Miles

 snippety-snip

The TestList Archives

You can get more information about this list or you can download the full
raw archive ( 108 KB ).

Currently, there are no archives.

 snip-snippety



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



[Mailman-Users] mailman and newsgroup question

2002-06-26 Thread Peter Vibert

Hi,

Mailman has an option to read/post to a newsgroup, and I was interested in
how I can make 
this work. I have a Slackware 7.0 system with Mailman 2.0.9 and INN. 
How do I do this? As in, make the newsgroup, and make it be an only local
news server.
Also, is it possible to authenticate to the newsgroup with a username and
password?
One last thing, does Mailman have any multiple administrator support?

Thanks very much,
Peter Vibert


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



[Mailman-Users] Hi, Italian MailMan Translation ?

2002-06-26 Thread O-Zone

Hi all,
i've aquestion. Where i can found an italia translation of MailMan ? Tnx !

O-Zone

-- 

O-Zone - TDSiena System Administrator 
Home @ www.zerozone.it





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



[Mailman-Users] Wrong permissions on archive links in mailman/archives/public

2002-06-26 Thread Garey Mills

Hi -

I'm using Mailman 2.1b on DEC OSF/1 4.0f. Archive links in public
are being created 

mailman mailman lrwx__

which does not work because my httpd runs as 'nobody', which was correctly
specified in the configuration. 

Where can I look to generate the links correctly?


Garey Mills
Library Systems Office
UC Berkeley 



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



RE: [Mailman-Users] Customization of main Mailman pages

2002-06-26 Thread Tim Mektrakarn

NO! the question is how do you edit the MAIN listserv page where the lists are 
populated not the main page of a specific list. 

for example
http://mail.python.org/mailman/listinfo

THAT PAGE

not 

http://mail.python.org/mailman/listinfo/c++-sig

i think we all know how to edit a page like that.

-Original Message-
From: Support Desk [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, June 26, 2002 6:40 AM
To: [EMAIL PROTECTED]
Subject: Re: [Mailman-Users] Customization of main Mailman pages



http://YOUR_DOMAIN/mailman/istinfo.html 
IS a list specific page (DUH!)

It IS the main page! (DUH!)

It is called the General list information page ... (DUH!) 

It is FULLY customizable! You don't like the pretty blue
and beige color scheme? Change it! You don't like the
Python Goat? Delete it! (DUH!) 

You customize it for your own list through admin at: 
http://YOUR_DOMAIN/mailman/edithtml/YOUR_LIST 
http://YOUR_DOMAIN/mailman/edithtml/YOUR_LIST/listinfo.html 
You type in or copy  paste your code in the box, and save it;
this changes the look of the page, if you want the page
to follow the look and feel of your site, if you want to add
a background, other links, buttons, scripts, add banners, 
change colors, add a pic of your girl friend, or whatever! 
you do that here!  
Note that any tag MM-etc is a Mailman tag, and you
may or may not wish to leave specific tags there. Just use
caution, maintain chronological backups of your changes
in case you screw anything up.. 

Do I need to give you a guided tour? 
Now go to your list admin
and L@@K on the right side, you see:
Other Administrative Activities under there is a link:
Edit the HTML for the public list pages  Click it! Then click this link: 
General list information page  Now, edit anything your little
heart desires! Then click [ Submit Changes ]  

Do you understand what I'm sayin'? 

Now, I need a drink... No charge for the guided tour.. ;-) 
SD


- Original Message - 
From: Christiaan Keet [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, June 26, 2002 8:37 AM
Subject: Re: [Mailman-Users] Customization of main Mailman pages


| 
| That's fine for customizing the per-list pages, I knew that.
| 
| My question was: how do you change the page you see when you go to
| www.domain.com/mailman/listinfo/ (_NOT_ a list-specific page) ?
| 
| - Christiaan
| 
| 
| On Tue, Jun 25, 2002 at 11:39:18PM -0400, Support Desk wrote:
|  
|  Save the default page(s) to your computer, and edit  the
|  html  'till your heart is content, then copy and paste this
|  revised html into the corresponding text box for the page
|  you customized.. The admin page itself is not editable 
|  through these links, but head and foot, etc. are and
|  there are 4 editable pages here: 
|  http://YOUR_DOMAIN/mailman/edithtml/YOUR_LIST 
|  
|  SD 
|  
|  - Original Message - 
|  From: Christiaan Keet [EMAIL PROTECTED]
|  To: [EMAIL PROTECTED]
|  Sent: Tuesday, June 25, 2002 6:04 PM
|  Subject: [Mailman-Users] Customization of main Mailman pages
|  
|  
|  | I'm convinced this has to be an FAQ, but I can't find it so here
|  | goes:
|  | 
|  | What's the best way to go about customizing the main Mailman pages
|  | (the stuff you see when you go to www.domain.com/mailman/listinfo/
|  | and .../admin/)?
|  | 
|  | - Christiaan
| 
| 
| --
| Mailman-Users mailing list
| [EMAIL PROTECTED]
| http://mail.python.org/mailman/listinfo/mailman-users
| Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
| 
| 1¨(tm)©±ê(tm)¨SxSËj)juz»ÊØzS?ÛÿùSZ¶¢¸(tm)¨(tm)©-+Swþf-fºÇ°Æ-f¶Úÿ§+¢zf÷?¸ýöÂi


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



Re: [Mailman-Users] nested lists

2002-06-26 Thread Marc MERLIN

On Mon, Jun 17, 2002 at 01:55:08PM -0700, Larry Guest wrote:
 I will be setting up mailman using lists to send mail to lists.  I only want
 lists members to be able to post.  So mailman needs to look down the chain
 of lists and make sure that the right people can posts to the list.  It must
 be able to do this but I am not 100% sure what to change in the config so it
 works. As an example user1 needs to post to the corp-eng department for
 which he is a member in the corp-eng-ca office.  The post needs to hit
 everyone in the corp-eng lists.  The architecture will look like this.

You can't really do this.
Your best workaround is to dump the list membership of all sublists, and
subscribe all the members to the main list (do it with cron)
In that scenario, the mail would not trickle down to the sublists, it would
go to the users directly

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 [EMAIL PROTECTED] for PGP key


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



Re: [Mailman-Users] Importing large archives ... design limit hit, and possible bug

2002-06-26 Thread Marc MERLIN

On Sat, Jun 01, 2002 at 09:35:38PM -0400, Scott Courtney wrote:
 Hi, folks
 
 I think I have found a bug in bin/arch, but I imagine someone has found it
 before. Also, I have run into an architectural limit and would like to
 change a constant to fix it, if possible.
 
As you found out, there are some issues with bin/arch
 
 This works, though it is cumbersome and slow.
 
 I'm not a Python guru but do  know C. I'm running on a machine with *lots*
 of RAM. Can someone point me to which module  I need to edit so that I can
 increase the  constant for an  array size  somewhere such that  this thing
 will handle more than 80 messages? I figure  if I know where to look I can
 puzzle out the code enough to make  a simple change like that. But it will
 take days to find it in code of an unfamiliar language with many modules.

It's not a constant, but arch has issues in some cases with some messages.
I haven't run it recently on a full mailbox, but it does chew a *lot* of
ram, and at least used to die on some messages.

 I'll make this proposal: Someone point me in the right direction to solve
 this thing. When I've got it working, I'll write an entry to submit for the
 FAQ to document this for the next person, as a way of contributing to the
 Mailman user community.
 
Unfortunately, I haven't played with that code, and few people have. It's
there, but it's pretty much unmaintained.
 
 I did some investigation and have found that the problem occurs when a normal
 text line in the body of a message happens to begin with the string From .
 It appears bin/arch is not being very smart about recognizing the beginning
 of a new message. I think what is needed is to add a more detailed parsing
 regexp to the code that determines where one message ends and another begins.
 
That's true. You should probably run ~mailman/bin/cleanarch on the mailbox
first. I'm not sure why that functionality isn't rolled inside arch

BTW, I'm talking about mailman 2.1b2.
Mailman 2.0  is another can  of worms, and arch  will probably not  be fixed
further.
 
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 [EMAIL PROTECTED] for PGP key


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



Re: [Mailman-Users] Mail Main

2002-06-26 Thread Marc MERLIN

On Wed, Jun 19, 2002 at 09:26:41AM -0600, Ryan Schouten - ABCOffice wrote:
 Does your software handle bounce backs?

mailman 2.0: somewhat
mailman 2.1b2: yes, if you enable VERP

In both cases, however, it won't work as well as Ezmlm

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 [EMAIL PROTECTED] for PGP key


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



RE: [Mailman-Users] Customization of main Mailman pages

2002-06-26 Thread Bob Weissman

At 12:28 PM 6/26/02, Tim Mektrakarn wrote:
NO! the question is how do you edit the MAIN listserv page where the lists are 
populated not the main page of a specific list. 

for example
http://mail.python.org/mailman/listinfo

THAT PAGE

not 

http://mail.python.org/mailman/listinfo/c++-sig

i think we all know how to edit a page like that.

Edit Cgi/listinfo.py.

- Bob



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



[Mailman-Users] Mailing list

2002-06-26 Thread MOUHSSINE ABBASSI


Hi,
I setup a mailing list on Mailman and I am able to access
its configuration from the web interface. The problem is when I send
email to this list no one of the list members receive any posted
messages.
I am running Mailman on Red Hat Linux and Sendmail is working fine with
another Mailing List software. I am not really sure what is wrong.

When I post a message to the list I don't get any error messages
and the message is not delivered to the list.

Thank you

M.



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



Re: [Mailman-Users] Customization of main Mailman pages

2002-06-26 Thread Support Desk


Yeah, yeah, the python script in cgi/listinfo.py can be edited
to customize the listinfo page. OK? Don't recall anyone EVER
wanting to customize THAT PAGE, OK? You are on your
own, no tour available... Have fun! 
SD 

- Original Message - 
From: Tim Mektrakarn 
To: Support Desk 
Sent: Wednesday, June 26, 2002 3:28 PM
Subject: RE: [Mailman-Users] Customization of main Mailman pages


NO! the question is how do you edit the MAIN listserv page where the lists are 
populated not the main page of a specific list. 

for example
http://mail.python.org/mailman/listinfo

THAT PAGE

not 

http://mail.python.org/mailman/listinfo/c++-sig

i think we all know how to edit a page like that.

-Original Message-
From: Support Desk [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, June 26, 2002 6:40 AM
To: [EMAIL PROTECTED]
Subject: Re: [Mailman-Users] Customization of main Mailman pages



http://YOUR_DOMAIN/mailman/istinfo.html 
IS a list specific page (DUH!)

It IS the main page! (DUH!)

It is called the General list information page ... (DUH!) 

It is FULLY customizable! You don't like the pretty blue
and beige color scheme? Change it! You don't like the
Python Goat? Delete it! (DUH!) 

You customize it for your own list through admin at: 
http://YOUR_DOMAIN/mailman/edithtml/YOUR_LIST 
http://YOUR_DOMAIN/mailman/edithtml/YOUR_LIST/listinfo.html 
You type in or copy  paste your code in the box, and save it;
this changes the look of the page, if you want the page
to follow the look and feel of your site, if you want to add
a background, other links, buttons, scripts, add banners, 
change colors, add a pic of your girl friend, or whatever! 
you do that here!  
Note that any tag MM-etc is a Mailman tag, and you
may or may not wish to leave specific tags there. Just use
caution, maintain chronological backups of your changes
in case you screw anything up.. 

Do I need to give you a guided tour? 
Now go to your list admin
and L@@K on the right side, you see:
Other Administrative Activities under there is a link:
Edit the HTML for the public list pages  Click it! Then click this link: 
General list information page  Now, edit anything your little
heart desires! Then click [ Submit Changes ]  

Do you understand what I'm sayin'? 

Now, I need a drink... No charge for the guided tour.. ;-) 
SD


- Original Message - 
From: Christiaan Keet [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, June 26, 2002 8:37 AM
Subject: Re: [Mailman-Users] Customization of main Mailman pages


| 
| That's fine for customizing the per-list pages, I knew that.
| 
| My question was: how do you change the page you see when you go to
| www.domain.com/mailman/listinfo/ (_NOT_ a list-specific page) ?
| 
| - Christiaan
| 
| 
| On Tue, Jun 25, 2002 at 11:39:18PM -0400, Support Desk wrote:
|  
|  Save the default page(s) to your computer, and edit  the
|  html  'till your heart is content, then copy and paste this
|  revised html into the corresponding text box for the page
|  you customized.. The admin page itself is not editable 
|  through these links, but head and foot, etc. are and
|  there are 4 editable pages here: 
|  http://YOUR_DOMAIN/mailman/edithtml/YOUR_LIST 
|  
|  SD 
|  
|  - Original Message - 
|  From: Christiaan Keet [EMAIL PROTECTED]
|  To: [EMAIL PROTECTED]
|  Sent: Tuesday, June 25, 2002 6:04 PM
|  Subject: [Mailman-Users] Customization of main Mailman pages
|  
|  
|  | I'm convinced this has to be an FAQ, but I can't find it so here
|  | goes:
|  | 
|  | What's the best way to go about customizing the main Mailman pages
|  | (the stuff you see when you go to www.domain.com/mailman/listinfo/
|  | and .../admin/)?
|  | 
|  | - Christiaan
| 
| 
| --
| Mailman-Users mailing list
| [EMAIL PROTECTED]
| http://mail.python.org/mailman/listinfo/mailman-users
| Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
| 
ŠYšK®ÉšŠX§‚X¬´Æ¢–f§RÇ«²œ­†‰è®m¶Ÿÿ™¨¥§+a¢z+ƒùšŠYšŸùb²Ø§~æj)fj{¬z»j)fjq@Bm§ÿðÃ
r¶'¢¸?r›Šßj¬šœ


[Mailman-Users] Mailman 2.0.11 Problem

2002-06-26 Thread Devin Atencio


Dear Mailman,

I have a user who is complaining that whenever they click on one of the 
mailman admin pages it sometimes displays a screen saying We're sorry,
we hit a bug!. If he clicks on Refresh at times the page will load, then 
other times it gives him the We're sorry, we hit a bug! screen. 
I also noticed that in the /home/mailman/locks directory there are lots
of lock files. I am running FreeBSD 4.3-STABLE, Python 1.5.2, and Mailman 
2.0.11. 

Any help would greatly be appreciated.

Devin Atencio





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



[Mailman-Users] Resend subscription confirmations

2002-06-26 Thread Akash Jain

Hey Folks,
So I am an idiot and had my MTA messed up for the
first hour of my mailman server's life this morning. 
In this time, about 70 people signed up for my list,
but the MTA bounced each message and isn't sending
another one out to them.  Hence I have about 70
entries in my pending_subscriptions.db that people
cannot confirm because they never got the confirmation
email.  How can I force mailman to resend the
confirmation emails?
-aki-

__
Do You Yahoo!?
Yahoo! - Official partner of 2002 FIFA World Cup
http://fifaworldcup.yahoo.com


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



[Mailman-Users] Mailman, Virtual Hosts and SUEXEC

2002-06-26 Thread Support Desk

I've heard from numerous resellers, who are unhappy that there
is an incompatibilty when Mailman runs in a virtual
hosting environment under SUEXEC.. Every reseller, every
customer of reseller, every domain on a machine has the
admin url of the server root domain. This is exposing the
customers of the resellers to the source of the hosting,
and is causing an uproar.. The server owners run suexec
for security, so, it's either expose the machine to hackers
by running mailman and others as root, or expose the
identity of the server owner to the customers of the resellers,
and there HAS to be a way to make mailman
run under suexec and still allow the url admin be the virtual
host, like it is without suexec!  
Please, is there any solution to this? 
SD ŠYšK®ÉšŠX§‚X¬´Æ¢–f§RÇ«²œ­†‰è®m¶Ÿÿ™¨¥§+a¢z+ƒùšŠYšŸùb²Ø§~æj)fj{¬z»j)fjq@Bm§ÿðÃ
r¶'¢¸?r›Šßj¬šœ