[Mailman-Users] configuration problem

2011-01-26 Thread Russell L. Carter
Installing on debian testing, all packages up to date.

Ok, it complicated maintenance a bit too much in my net to dedicate an
IP address to lists.domain, so I thought I would try the exact
approach as detailed in the install manual with postfix, namely using
alias_maps and virtual_alias_domains, etc., leading to a postfix
main.cf containing:

-
# http://www.postfix.org/ADDRESS_REWRITING_README.html#masquerade
masquerade_domains = lists.pinyon.org pinyon.org
# http://www.postfix.org/virtual.5.html
virtual_alias_domains = lists.pinyon.org
virtual_alias_maps = hash:/var/lib/mailman/data/virtual-mailman

alias_maps = hash:/etc/aliases hash:/var/lib/mailman/data/aliases
alias_database = hash:/etc/aliases
--

And that worked great!  Using the suggested initial 'mailman' list
I was able to add subscribers and send/receive, etc.  Perfect.

I ran into a permissions problem with apache and the private archives,
so I thought I would stop at that point, purge the installation, and
carefully recreate the configuration from scratch so that I could
document the exact steps for mailman installation on my site properly.

So I do (leaving the postfix previously working main.cf untouched):

$ apt-get remove --purge mailman
$ /bin/rm -rf /var/lib/mailman /usr/lib/mailman
$ cp [my-saved-working-copy-of-mm_cfg.py] /etc/mailman
$ newlist mailman
  [exact same stuff as before]
$ /etc/init.d/mailman start
$ /var/lib/mailman/bin/genaliases
$ /var/lib/mailman/bin/check_perms -f

and I notice that:

$  ls -lt /var/lib/mailman/data
total 36
-rw-rw 1 root list  1132 Jan 26 18:06 aliases
-rw-r- 1 root list 12288 Jan 26 18:06 aliases.db
-rw-rw-r-- 1 root list10 Jan 26 18:04 last_mailman_version
-rw-r--r-- 1 root list 14100 Oct 21 22:40 sitelist.cfg

Ok, first problem.  Where's virtual-mailman (and virtual-mailman.db)?

I go to the web interface http://lists.pinyon.org, but there is
no 'mailman' list.  I try to create the 'mailman' list in the web
interface, and I get:

Error: List already exists: mailman

So... what should I do?

Many thanks,
Russell

--- mm_cfg.py   2011-01-26 18:30:08.0 -0700
+++ mm_cfg.py.works 2011-01-26 18:30:28.0 -0700
@@ -57,16 +57,16 @@
 #-
 # If you change these, you have to configure your http server
 # accordingly (Alias and ScriptAlias directives in most httpds)
-DEFAULT_URL_PATTERN = 'http://%s/cgi-bin/mailman/'
+DEFAULT_URL_PATTERN = 'http://%s/'
 PRIVATE_ARCHIVE_URL = '/cgi-bin/mailman/private'
 IMAGE_LOGOS = '/images/mailman/'

 #-
 # Default domain for email addresses of newly created MLs
-DEFAULT_EMAIL_HOST = 'quine.gb.Pinyon.ORG'
+DEFAULT_EMAIL_HOST = 'lists.Pinyon.ORG'
 #-
 # Default host for web interface of newly created MLs
-DEFAULT_URL_HOST   = 'quine.gb.Pinyon.ORG'
+DEFAULT_URL_HOST   = 'lists.Pinyon.ORG'
 #-
 # Required when setting any of its arguments.
 add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST)
@@ -94,8 +94,10 @@
 # Uncomment if you use Postfix virtual domains (but not
 # postfix-to-mailman.py), but be sure to see
 # /usr/share/doc/mailman/README.Debian first.
-# MTA='Postfix'
-
+# RLC: follows /etc/mailman/postfix-to-mailman.py exactly:
+MTA='Postfix'
+POSTFIX_STYLE_VIRTUAL_DOMAINS = ['lists.pinyon.org']
+DEB_LISTMASTER = 'postmas...@pinyon.org'
 #-
 # Uncomment if you want to filter mail with SpamAssassin. For
 # more information please visit this website:
--
Mailman-Users mailing list Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] configuration problem

2011-01-26 Thread Mark Sapiro
Russell L. Carter wrote:

Installing on debian testing, all packages up to date.

Ok, it complicated maintenance a bit too much in my net to dedicate an
IP address to lists.domain,


You didn't need to dedicate an IP address. All you needed was to
replace your

lists.pinyon.org CNAME quine.pinyon.org.

with

lists.pinyon.org MX 10 quine.pinyon.org.



so I thought I would try the exact
approach as detailed in the install manual with postfix, namely using
alias_maps and virtual_alias_domains, etc., leading to a postfix
main.cf containing:

-
# http://www.postfix.org/ADDRESS_REWRITING_README.html#masquerade
masquerade_domains = lists.pinyon.org pinyon.org
# http://www.postfix.org/virtual.5.html
virtual_alias_domains = lists.pinyon.org
virtual_alias_maps = hash:/var/lib/mailman/data/virtual-mailman

alias_maps = hash:/etc/aliases hash:/var/lib/mailman/data/aliases
alias_database = hash:/etc/aliases
--

And that worked great!  Using the suggested initial 'mailman' list
I was able to add subscribers and send/receive, etc.  Perfect.

I ran into a permissions problem with apache and the private archives,
so I thought I would stop at that point, purge the installation, and
carefully recreate the configuration from scratch so that I could
document the exact steps for mailman installation on my site properly.

So I do (leaving the postfix previously working main.cf untouched):

$ apt-get remove --purge mailman
$ /bin/rm -rf /var/lib/mailman /usr/lib/mailman
$ cp [my-saved-working-copy-of-mm_cfg.py] /etc/mailman


There seems to be something missing here.


$ newlist mailman
  [exact same stuff as before]
$ /etc/init.d/mailman start
$ /var/lib/mailman/bin/genaliases
$ /var/lib/mailman/bin/check_perms -f

and I notice that:

$  ls -lt /var/lib/mailman/data
total 36
-rw-rw 1 root list  1132 Jan 26 18:06 aliases
-rw-r- 1 root list 12288 Jan 26 18:06 aliases.db
-rw-rw-r-- 1 root list10 Jan 26 18:04 last_mailman_version
-rw-r--r-- 1 root list 14100 Oct 21 22:40 sitelist.cfg

Ok, first problem.  Where's virtual-mailman (and virtual-mailman.db)?


How did you re-install Mailman. apt-get? Source install? ???

In order to get a virtual-mailman, you first need an mm_cfg.py in the
place Mailman is looking for it. This is only /etc/mailman in Debian
and certain other packages, not a source install.


I go to the web interface http://lists.pinyon.org, but there is
no 'mailman' list.  I try to create the 'mailman' list in the web
interface, and I get:

Error: List already exists: mailman

So... what should I do?


The list exists, but it's not in the lists.pinyon.org domain. This
means that DEFAULT_URL_HOST and DEFAULT_EMAIL_HOST are not
'lists.pinyon.org', at least not in the mm_cfg.py that Mailman is
looking at. This could also explain why no virtual-mailman assuming
there is

POSTFIX_STYLE_VIRTUAL_DOMAINS = ['lists.pinyon.org']

in mm_cfg.py.


Which of the following are you using. The changes in mm_cfg.py.works
look OK except the domains in
DEFAULT_EMAIL_HOST = 'lists.Pinyon.ORG'
and
DEFAULT_URL_HOST   = 'lists.Pinyon.ORG'
should be all lower case.

And, I have no idea what lines 74-93 are.

Also, see the FAQ at http://wiki.list.org/x/lYA9.


--- mm_cfg.py   2011-01-26 18:30:08.0 -0700
+++ mm_cfg.py.works 2011-01-26 18:30:28.0 -0700
@@ -57,16 +57,16 @@
 #-
 # If you change these, you have to configure your http server
 # accordingly (Alias and ScriptAlias directives in most httpds)
-DEFAULT_URL_PATTERN = 'http://%s/cgi-bin/mailman/'
+DEFAULT_URL_PATTERN = 'http://%s/'
 PRIVATE_ARCHIVE_URL = '/cgi-bin/mailman/private'
 IMAGE_LOGOS = '/images/mailman/'

 #-
 # Default domain for email addresses of newly created MLs
-DEFAULT_EMAIL_HOST = 'quine.gb.Pinyon.ORG'
+DEFAULT_EMAIL_HOST = 'lists.Pinyon.ORG'
 #-
 # Default host for web interface of newly created MLs
-DEFAULT_URL_HOST   = 'quine.gb.Pinyon.ORG'
+DEFAULT_URL_HOST   = 'lists.Pinyon.ORG'
 #-
 # Required when setting any of its arguments.
 add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST)
@@ -94,8 +94,10 @@
 # Uncomment if you use Postfix virtual domains (but not
 # postfix-to-mailman.py), but be sure to see
 # /usr/share/doc/mailman/README.Debian first.
-# MTA='Postfix'
-
+# RLC: follows /etc/mailman/postfix-to-mailman.py exactly:
+MTA='Postfix'
+POSTFIX_STYLE_VIRTUAL_DOMAINS = ['lists.pinyon.org']
+DEB_LISTMASTER = 'postmas...@pinyon.org'
 #-
 # Uncomment if you want to filter mail with SpamAssassin. For
 # more information please visit this website:


-- 
Mark Sapiro m...@msapiro.netThe highway is for 

[Mailman-Users] Configuration problem - virtual domains URL

2007-11-25 Thread Marc Perkel
I'm trying to figure out how to do a slightly unusual configuration. 
Normally mailman wants to use URLs like http://www.domain.com/mailman . 
But what I want to do is have url's that look like 
http://mailman.domain.com.

So - in my config file I have:

DEFAULT_EMAIL_HOST = 'ctyme.com'
DEFAULT_URL_HOST = 'ctyme.com'
DEFAULT_URL_PATTERN = 'http://mailman.%s/'

Seems to work for managing the list but when I try to use /create or 
/listinfo instead of http://mailman.ctyme.com I get 
http://mailman.mailman.ctyme.com

What I don't understand is why the double mailman and how do I fix it?

Thanks in advance.

--
Mailman-Users mailing list
Mailman-Users@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/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


Re: [Mailman-Users] Configuration problem - virtual domains URL

2007-11-25 Thread Mark Sapiro
Marc Perkel wrote:

I'm trying to figure out how to do a slightly unusual configuration. 
Normally mailman wants to use URLs like http://www.domain.com/mailman . 
But what I want to do is have url's that look like 
http://mailman.domain.com.

So - in my config file I have:

DEFAULT_EMAIL_HOST = 'ctyme.com'
DEFAULT_URL_HOST = 'ctyme.com'
DEFAULT_URL_PATTERN = 'http://mailman.%s/'

Seems to work for managing the list but when I try to use /create or 
/listinfo instead of http://mailman.ctyme.com I get 
http://mailman.mailman.ctyme.com

What I don't understand is why the double mailman and how do I fix it?


It is somewhat complicated, but the bottom line is it will work the way
you expect if you set

VIRTUAL_HOST_OVERVIEW = Off

in mm_cfg.py.

In a Mailman virtual host environment (the default), the host name that
is plugged into DEFAULT_URL_PATTERN is in some cases obtained from the
host portion of the URL that invoked the CGI. This clearly doesn't
work if DEFAULT_URL_PATTERN has more than just %s in the host portion.

If VIRTUAL_HOST_OVERVIEW = Off, the host name used is DEFAULT_URL_HOST.

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

--
Mailman-Users mailing list
Mailman-Users@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/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


Re: [Mailman-Users] Configuration problem - virtual domains URL

2007-11-25 Thread Marc Perkel


Mark Sapiro wrote:
 Marc Perkel wrote:

   
 I'm trying to figure out how to do a slightly unusual configuration. 
 Normally mailman wants to use URLs like http://www.domain.com/mailman . 
 But what I want to do is have url's that look like 
 http://mailman.domain.com.

 So - in my config file I have:

 DEFAULT_EMAIL_HOST = 'ctyme.com'
 DEFAULT_URL_HOST = 'ctyme.com'
 DEFAULT_URL_PATTERN = 'http://mailman.%s/'

 Seems to work for managing the list but when I try to use /create or 
 /listinfo instead of http://mailman.ctyme.com I get 
 http://mailman.mailman.ctyme.com

 What I don't understand is why the double mailman and how do I fix it?
 


 It is somewhat complicated, but the bottom line is it will work the way
 you expect if you set

 VIRTUAL_HOST_OVERVIEW = Off

 in mm_cfg.py.

 In a Mailman virtual host environment (the default), the host name that
 is plugged into DEFAULT_URL_PATTERN is in some cases obtained from the
 host portion of the URL that invoked the CGI. This clearly doesn't
 work if DEFAULT_URL_PATTERN has more than just %s in the host portion.

 If VIRTUAL_HOST_OVERVIEW = Off, the host name used is DEFAULT_URL_HOST.

   
Thanks - that gets me a lot closer. listinfo works now. Create is 
broken, but it's not as broken as it was. It used to go to an invalid 
url. Now it just doesn't work. But I'll look into that. Thanks for your 
help.

--
Mailman-Users mailing list
Mailman-Users@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/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


[Mailman-Users] Configuration problem...

2003-09-04 Thread Anders Norrbring
Hi everybody,

I hope somebody can help me out with a small problem, when accessing the
'listinfo' page, the admin address line gets wrong, it shows 'Send questions
or comments to [EMAIL PROTECTED]' where the correct address of
course should be the domain name WITHOUT the leading 'www'.  I can't seem to
find the point to adjust..

My mm_cfg.py looks like this:

def _(s):
 return s
add_language('en',   _('English (USA)'),   'iso-8859-1')
del _
DEFAULT_HOST_NAME = 'the-server.net'
DEFAULT_URL = 'http://www.the-server.net/mailman/'
MAILMAN_OWNER = '[EMAIL PROTECTED]' % DEFAULT_HOST_NAME

Anders Norrbring
Norrbring Consulting



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

This message was sent to: [EMAIL PROTECTED]
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


RE: [Mailman-Users] Configuration problem

2001-11-18 Thread Larry Chuon

Ah, there you go.  Here's the problem.  

Nov 14 10:35:01 2001 (20621) post to news from mailman-owner@, size=1256, 1
fail
ures
Nov 15 10:01:09 2001 (1387) post to news from [EMAIL PROTECTED],
size=1
175, 1 failures
Nov 15 10:01:09 2001 (1387) post to news from mailman-owner@, size=65, 1
failure
s

How can I fix this please?

Larry

-Original Message-
From: Jon Carnes [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 15, 2001 6:51 PM
To: Larry Chuon; [EMAIL PROTECTED]
Subject: Re: [Mailman-Users] Configuration problem


So it ran the Mailman wrapper successfully... The next step is your Mailman
logs in ~mailman/logs/...
If it posted then you'll see an entry in the post log file (then the next
step would be back to your MTA logs to see what happened to the post...)

Jon Carnes
- Original Message -
From: Larry Chuon [EMAIL PROTECTED]
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Thursday, November 15, 2001 9:36 AM
Subject: RE: [Mailman-Users] Configuration problem


 I triple checked already.  I did have cron setup as mailman.  I deleted it
 and redo it again.  When I type crontab -l, it shows the mailman job.

 Below is what it shows in /var/log/maillog:
 Nov 15 10:18:06 www sendmail[1459]: fAFFI6d01459:
 from=[EMAIL PROTECTED],
 size=475, class=0, nrcpts=1,
 msgid=86713EAB93BD5F40B94A0C8E604C7C913F7C7C@index
 -exchange.indexstock.com, proto=ESMTP, daemon=MTA, relay=[209.130.207.33]
 Nov 15 10:18:07 www sendmail[1460]: fAFFI6d01459:
 to=|/usr/local/mailman/mail/w
 rapper post news, ctladdr=[EMAIL PROTECTED] (8/0), delay=00:00:01,
 xdelay=00
 :00:00, mailer=prog, pri=30017, dsn=2.0.0, stat=Sent

 Where else can I check for status?

 Thanks in advance folks.

 Larry

 -Original Message-
 From: Jon Carnes [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, November 14, 2001 11:18 PM
 To: Larry Chuon; [EMAIL PROTECTED]
 Subject: Re: [Mailman-Users] Configuration problem


 cron?

 
  1. First, I subscribe to the list from the web. Then, I receive a
  confirmation email.  When I reply, nothing happens.  My subscribe log
  shows a pending.
  2. I try to send a test email to the list.  Nothing happen either.
Then,
  I did a little test.  I added myself to the list via admin tool.  After
I
  I receive a welcome message.  Follow that, I send another test email.
  Nothing happens again.
 

--
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users



RE: [Mailman-Users] Configuration problem

2001-11-18 Thread Larry Chuon

I triple checked already.  I did have cron setup as mailman.  I deleted it
and redo it again.  When I type crontab -l, it shows the mailman job.

Below is what it shows in /var/log/maillog:
Nov 15 10:18:06 www sendmail[1459]: fAFFI6d01459:
from=[EMAIL PROTECTED],
size=475, class=0, nrcpts=1,
msgid=86713EAB93BD5F40B94A0C8E604C7C913F7C7C@index
-exchange.indexstock.com, proto=ESMTP, daemon=MTA, relay=[209.130.207.33]
Nov 15 10:18:07 www sendmail[1460]: fAFFI6d01459:
to=|/usr/local/mailman/mail/w
rapper post news, ctladdr=[EMAIL PROTECTED] (8/0), delay=00:00:01,
xdelay=00
:00:00, mailer=prog, pri=30017, dsn=2.0.0, stat=Sent

Where else can I check for status?

Thanks in advance folks.

Larry

-Original Message-
From: Jon Carnes [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 14, 2001 11:18 PM
To: Larry Chuon; [EMAIL PROTECTED]
Subject: Re: [Mailman-Users] Configuration problem


cron?


 1. First, I subscribe to the list from the web. Then, I receive a
 confirmation email.  When I reply, nothing happens.  My subscribe log
 shows a pending.
 2. I try to send a test email to the list.  Nothing happen either.  Then,
 I did a little test.  I added myself to the list via admin tool.  After I
 I receive a welcome message.  Follow that, I send another test email. 
 Nothing happens again.


--
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users



Re: [Mailman-Users] Configuration problem

2001-11-15 Thread Jon Carnes

So it ran the Mailman wrapper successfully... The next step is your Mailman
logs in ~mailman/logs/...
If it posted then you'll see an entry in the post log file (then the next
step would be back to your MTA logs to see what happened to the post...)

Jon Carnes
- Original Message -
From: Larry Chuon [EMAIL PROTECTED]
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Thursday, November 15, 2001 9:36 AM
Subject: RE: [Mailman-Users] Configuration problem


 I triple checked already.  I did have cron setup as mailman.  I deleted it
 and redo it again.  When I type crontab -l, it shows the mailman job.

 Below is what it shows in /var/log/maillog:
 Nov 15 10:18:06 www sendmail[1459]: fAFFI6d01459:
 from=[EMAIL PROTECTED],
 size=475, class=0, nrcpts=1,
 msgid=86713EAB93BD5F40B94A0C8E604C7C913F7C7C@index
 -exchange.indexstock.com, proto=ESMTP, daemon=MTA, relay=[209.130.207.33]
 Nov 15 10:18:07 www sendmail[1460]: fAFFI6d01459:
 to=|/usr/local/mailman/mail/w
 rapper post news, ctladdr=[EMAIL PROTECTED] (8/0), delay=00:00:01,
 xdelay=00
 :00:00, mailer=prog, pri=30017, dsn=2.0.0, stat=Sent

 Where else can I check for status?

 Thanks in advance folks.

 Larry

 -Original Message-
 From: Jon Carnes [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, November 14, 2001 11:18 PM
 To: Larry Chuon; [EMAIL PROTECTED]
 Subject: Re: [Mailman-Users] Configuration problem


 cron?

 
  1. First, I subscribe to the list from the web. Then, I receive a
  confirmation email.  When I reply, nothing happens.  My subscribe log
  shows a pending.
  2. I try to send a test email to the list.  Nothing happen either.
Then,
  I did a little test.  I added myself to the list via admin tool.  After
I
  I receive a welcome message.  Follow that, I send another test email.
  Nothing happens again.
 


--
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users



[Mailman-Users] Configuration problem

2001-11-14 Thread Larry Chuon

Hi everyone,

Yesterday, I posted a message stating that I had problem with configuring
mailman.  I finally resolved a pice of the puzzle.  Basically, it had to do
with my Sendmail configuration.  When I do a netstat, I show the following
now:
tcp0  0 0.0.0.0:25  0.0.0.0:*   LISTEN

Where as before, 0.0.0.0 was my IP address instead.  Now everything seems to
work, EXCEPT for one thing: I can't send anything to the list.  This problem
is two folds.

1. First, I subscribe to the list from the web. Then, I receive a
confirmation email.  When I reply, nothing happens.  My subscribe log shows
a pending.
2. I try to send a test email to the list.  Nothing happen either.  Then, I
did a little test.  I added myself to the list via admin tool.  After I I
receive a welcome message.  Follow that, I send another test email.  Nothing
happens again.

FYI, I ran newaliases after I added the list info in the aliases file.

Since I have a local account on the box, I am able to send and receive
email.  First thing in my mind was, it got to be Sendmail again.
Unfortunately, I  exhausted my rehaust.  Can someone help me please?

Larry



--
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users



Re: [Mailman-Users] Configuration problem

2001-11-14 Thread Jon Carnes

cron?


 1. First, I subscribe to the list from the web. Then, I receive a
 confirmation email.  When I reply, nothing happens.  My subscribe log
 shows a pending.
 2. I try to send a test email to the list.  Nothing happen either.  Then,
 I did a little test.  I added myself to the list via admin tool.  After I
 I receive a welcome message.  Follow that, I send another test email. 
 Nothing happens again.


--
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users



Re: [Mailman-Users] configuration problem

2001-05-14 Thread vijay


Hello joe,

webserver is unable to resolve your hostname or domainname, by 
default Mailman takes system configuration like hostname etc. Check you 
DEFAULT_URL in Mailman/Defaults.py. change it to your 
http://IPADDRESS/mailman.

Regards
Vijay

-Original Message-
From: Joe Copeland [EMAIL PROTECTED]
To: Mailman Users Group [EMAIL PROTECTED]
Date: Sun, 13 May 2001 14:58:51 -0700
Subject: [Mailman-Users] configuration problem

 Hi,
 
 I'm trying to set up mailman but I'm not getting something right.
 
 When I go to my mailman site's admin page,
 http://www.deangeuls.com/mailman/admin, I can see a list of links that
 I
 have set up with the ./newlist command.  But when I click on one of the
 links to administer the list, I get nowhere.
 
 I'm Running RH7.1 and Apache.  Any ideas what's wrong?  I tried
 installing
 off the tarball and the RPM from Red Hat, but I can't get over this big
 hump.
 
 Joe
 
 
 --
 Mailman-Users maillist  -  [EMAIL PROTECTED]
 http://mail.python.org/mailman/listinfo/mailman-users
 



--
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users



Re: [Mailman-Users] configuration problem

2001-05-14 Thread Joe Copeland

I am able to access the admin and listinfo page fine.  The error comes when
I try to delve deeper into modifying the list information itself.

For instance I (and you) can accesst the page
http://www.deangelus.com/mailman/admin. But when I click on the link to
access the test2 list, the webserver times out.

I think that the ScriptAlias directive in apache is doing it's job fine.

ScriptAlias /mailman/ /var/mailman/cgi-bin/

It must be since I am able to access the page
http://www.deangelus.com/mailman/admin and
http://www.deangelus.com/mailman/listinfo.

The breakdown appears when I try to administer the individual list or try to
subscribe to the individual list.  That is the information contained in
/var/mailman/lists/test2

Is there any way I can get some more information that may help resolve this
problem?  The error logs show nothing helpful.

What is interesting is if I go to try to administer a nonexistent list such
as http://www.deangelus.com/mailman/admin/no_such_list, I get a proper reply
from Mailman saying that the list does not exist and an error in the
../mailman/logs/error file.  But when I try to administer an existing list,
Mailman hangs on me.

Thanks for you help,

Joe

- Original Message -
From: vijay [EMAIL PROTECTED]
To: Joe Copeland [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Monday, May 14, 2001 1:39 AM
Subject: Re: [Mailman-Users] configuration problem



 Hello joe,

 webserver is unable to resolve your hostname or domainname, by
 default Mailman takes system configuration like hostname etc. Check you
 DEFAULT_URL in Mailman/Defaults.py. change it to your
 http://IPADDRESS/mailman.

 Regards
 Vijay

 -Original Message-
 From: Joe Copeland [EMAIL PROTECTED]
 To: Mailman Users Group [EMAIL PROTECTED]
 Date: Sun, 13 May 2001 14:58:51 -0700
 Subject: [Mailman-Users] configuration problem

  Hi,
 
  I'm trying to set up mailman but I'm not getting something right.
 
  When I go to my mailman site's admin page,
  http://www.deangeuls.com/mailman/admin, I can see a list of links that
  I
  have set up with the ./newlist command.  But when I click on one of the
  links to administer the list, I get nowhere.
 
  I'm Running RH7.1 and Apache.  Any ideas what's wrong?  I tried
  installing
  off the tarball and the RPM from Red Hat, but I can't get over this big
  hump.
 
  Joe
 
 
  --
  Mailman-Users maillist  -  [EMAIL PROTECTED]
  http://mail.python.org/mailman/listinfo/mailman-users
 



 --
 Mailman-Users maillist  -  [EMAIL PROTECTED]
 http://mail.python.org/mailman/listinfo/mailman-users


--
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users



Re: [Mailman-Users] configuration problem

2001-05-14 Thread Joe Copeland

Ok, now I'm getting somewhere with this mailman installation.

I intstalled the mailman RPM on my laptop which has RH7.0 installed.  I can
now peruse the ../admin/testlist page.  I couldn't do that with the RH7.1.
So there's something about RH7.1 that prohibits mailman from working
properly.  One of the differences between RH7.1 and RH7.0 are some security
tweaks.

Figuring this one out is going to be a challenge for me since I'm no expert.
If anyone gets mailman working on RH7.1 please let me, and the list know how
you did it.

Thanks,

Joe


- Original Message -
From: arif [EMAIL PROTECTED]
To: Joe Copeland [EMAIL PROTECTED]
Sent: Monday, May 14, 2001 1:26 PM
Subject: RE: [Mailman-Users] configuration problem


 Just out of curiosity, does the list itself work?  I ask because I'm
 wondering if this is a problem with mailman, or with apache and hence only
 the web-interface to mailman.

 -arif

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Joe Copeland
 Sent: Monday, May 14, 2001 1:50 PM
 To: vijay
 Cc: [EMAIL PROTECTED]
 Subject: Re: [Mailman-Users] configuration problem


 I am able to access the admin and listinfo page fine.  The error comes
when
 I try to delve deeper into modifying the list information itself.

 For instance I (and you) can accesst the page
 http://www.deangelus.com/mailman/admin. But when I click on the link to
 access the test2 list, the webserver times out.

 I think that the ScriptAlias directive in apache is doing it's job fine.

 ScriptAlias /mailman/ /var/mailman/cgi-bin/

 It must be since I am able to access the page
 http://www.deangelus.com/mailman/admin and
 http://www.deangelus.com/mailman/listinfo.

 The breakdown appears when I try to administer the individual list or try
to
 subscribe to the individual list.  That is the information contained in
 /var/mailman/lists/test2

 Is there any way I can get some more information that may help resolve
this
 problem?  The error logs show nothing helpful.

 What is interesting is if I go to try to administer a nonexistent list
such
 as http://www.deangelus.com/mailman/admin/no_such_list, I get a proper
reply
 from Mailman saying that the list does not exist and an error in the
 ../mailman/logs/error file.  But when I try to administer an existing
list,
 Mailman hangs on me.

 Thanks for you help,

 Joe

 - Original Message -
 From: vijay [EMAIL PROTECTED]
 To: Joe Copeland [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]
 Sent: Monday, May 14, 2001 1:39 AM
 Subject: Re: [Mailman-Users] configuration problem


 
  Hello joe,
 
  webserver is unable to resolve your hostname or domainname, by
  default Mailman takes system configuration like hostname etc. Check you
  DEFAULT_URL in Mailman/Defaults.py. change it to your
  http://IPADDRESS/mailman.
 
  Regards
  Vijay
 
  -Original Message-
  From: Joe Copeland [EMAIL PROTECTED]
  To: Mailman Users Group [EMAIL PROTECTED]
  Date: Sun, 13 May 2001 14:58:51 -0700
  Subject: [Mailman-Users] configuration problem
 
   Hi,
  
   I'm trying to set up mailman but I'm not getting something right.
  
   When I go to my mailman site's admin page,
   http://www.deangeuls.com/mailman/admin, I can see a list of links that
   I
   have set up with the ./newlist command.  But when I click on one of
the
   links to administer the list, I get nowhere.
  
   I'm Running RH7.1 and Apache.  Any ideas what's wrong?  I tried
   installing
   off the tarball and the RPM from Red Hat, but I can't get over this
big
   hump.
  
   Joe
  
  
   --
   Mailman-Users maillist  -  [EMAIL PROTECTED]
   http://mail.python.org/mailman/listinfo/mailman-users
  
 
 
 
  --
  Mailman-Users maillist  -  [EMAIL PROTECTED]
  http://mail.python.org/mailman/listinfo/mailman-users


 --
 Mailman-Users maillist  -  [EMAIL PROTECTED]
 http://mail.python.org/mailman/listinfo/mailman-users


--
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users



[Mailman-Users] configuration problem

2001-05-13 Thread Joe Copeland

Hi,

I'm trying to set up mailman but I'm not getting something right.

When I go to my mailman site's admin page,
http://www.deangeuls.com/mailman/admin, I can see a list of links that I
have set up with the ./newlist command.  But when I click on one of the
links to administer the list, I get nowhere.

I'm Running RH7.1 and Apache.  Any ideas what's wrong?  I tried installing
off the tarball and the RPM from Red Hat, but I can't get over this big
hump.

Joe


--
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users