Re: [Mailman-Users] ERROR: "You must supply a valid email address."?

2008-01-22 Thread Chris Penn
That was it.
I took the redirects out apache conf and things are fine now.

Thanks,
chris penn

> Chris Penn wrote:
>> I have googled this question and there is only one suggestion on WLUG on
>> the web:
>> http://www.wlug.org.nz/MailManNotes
>
>
> That may be relevant, but I'm not sure about the 'fix'. See
> <http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq04.045.htp>
>
>
>> This issue seems to be the only thing not working at the moment and it
>> does not show up in the FAQs.  What does it mean when I subscribe
>> someone
>> through the webpage and get this:
>>
>> "You must supply a valid email address."
>>
>> Also, none of the changes made over the site work, but I am able to
>> change
>> things via terminal.
>
>
> This is the same issue. Due to a redirect or something else, probably in
> your web server configuration, you are losing the POST data from all
> your web transactions.
>
> --
> Mark Sapiro <[EMAIL PROTECTED]>The highway is for gamblers,
> San Francisco Bay Area, Californiabetter use your sense - B. Dylan
>


-- 
Sourthern Regional Climate Center
Louisiana State University
Howe-Russell Geoscience Complex
Office E330
Office:225.590.5847
Cell:949.300.3094

" A Mathematician is a machine for turning coffee into theorems." -Erdös,
Paul
Nov. 1992

--
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=show&file=faq01.027.htp


Re: [Mailman-Users] ERROR: "You must supply a valid email address."?

2008-01-21 Thread Chris Penn
I have googled this question and there is only one suggestion on WLUG on
the web:
http://www.wlug.org.nz/MailManNotes

This issue seems to be the only thing not working at the moment and it
does not show up in the FAQs.  What does it mean when I subscribe someone
through the webpage and get this:

"You must supply a valid email address."

Also, none of the changes made over the site work, but I am able to change
things via terminal.

Thanks,

Chris Penn.


> I have setup a qmailtoaster that is very similar to this setup
> http://wiki.qmailtoaster.com/index.p...oaster_Install
> I have compiled and installed Mailman on the machine into
> /home/mailman/mydomain/
>
> My mailserver is mail.mydomain.com.  The mailman url path is
> mail.mydomain.com/mailman.
> I have a virtual domain mail server setup running on a mysql backend.
> I have mailman setup recieve and sending email for mydomain.com.  The
> problem I am having is with the Subscriptions.  I can use add_member for a
> list, but when i try a subscription with the webpage I get this error:
> "You must supply a valid email address."
>
> Im not sure what I am doing wrong here.
>
> Thanks,
>
> Chris Penn...
>
> --
> Sourthern Regional Climate Center
> Louisiana State University
> Howe-Russell Geoscience Complex
> Office E330
> Office:225.590.5847
>
> " A Mathematician is a machine for turning coffee into theorems." -Erdös,
> Paul
> Nov. 1992
>
> --
> 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/cpenn%40srcc.lsu.edu
>
> Security Policy:
> http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq01.027.htp
>


-- 
Sourthern Regional Climate Center
Louisiana State University
Howe-Russell Geoscience Complex
Office E330
Office:225.590.5847
Cell:949.300.3094

" A Mathematician is a machine for turning coffee into theorems." -Erdös,
Paul
Nov. 1992

--
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=show&file=faq01.027.htp


Re: [Mailman-Users] Different web interface and email address domains with POSTFIX_STYLE_VIRTUAL_DOMAINS

2008-01-21 Thread Chris Penn
I put this into the apache conf file(/etc/httpd/conf/httpd.conf or you can
create /etc/httpd/conf.d/mailman.conf and restart apache)

#
#  httpd configuration settings for use with mailman.
#

ScriptAlias /mailman/ /home/mailman/domain/cgi-bin/

AllowOverride None
Options ExecCGI
AuthType Basic
Order allow,deny
Allow from all



Alias /pipermail/ /home/mailman/domain/archives/public/

Options Indexes MultiViews FollowSymLinks
AllowOverride None
AuthType Basic
Order allow,deny
Allow from all


# Uncomment the following line, replacing www.example.com with your server's
# name, to redirect queries to /mailman to the listinfo page (recommended).

 RedirectMatch ^/mailman[/]*$ http://sub.domain.com/mailman/listinfo
#


Also, in mm_cfg.py I used this for virtual domains...

DEFAULT_EMAIL_HOST = 'domain.com'
DEFAULT_URL_HOST = 'sub.domain.com'
add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST)

Note: I am not able to subscribe via the web page at the moment, so this
might not be perfect. I am still waiting for an email about my
subscription problem.  But everything else seems to work with virtual
domains.

Chris...

> I'm trying to set up a list "[EMAIL PROTECTED]", but I want the web
> interface to appear at http://sub.domain.com/mailman/ I have set
> POSTFIX_STYLE_VIRTUAL_DOMAINS = ["domain.com"] in my mm_cfg.py, but I
> can't spot a way to set the web interface location.
>
> With the current setup http://sub.domain.com/mailman/... does show the
> interface, but all the links in it point to http://domain.com/mailman/
>
> Any ideas would be appreciated.
>
> As a side note, the mailman guide doesn't seem to say that the
> virtual-mailman file isn't created until you have a list set up, which
> was somewhat confusing.
>
> Cheers,
>   Andrew Oakley
> --
> 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/cpenn%40srcc.lsu.edu
>
> Security Policy:
> http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq01.027.htp
>


-- 
Sourthern Regional Climate Center
Louisiana State University
Howe-Russell Geoscience Complex
Office E330
Office:225.590.5847
Cell:949.300.3094

" A Mathematician is a machine for turning coffee into theorems." -Erdös,
Paul
Nov. 1992

--
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=show&file=faq01.027.htp


[Mailman-Users] ERROR: "You must supply a valid email address."?

2008-01-20 Thread Chris Penn
I have setup a qmailtoaster that is very similar to this setup
http://wiki.qmailtoaster.com/index.p...oaster_Install
I have compiled and installed Mailman on the machine into
/home/mailman/mydomain/

My mailserver is mail.mydomain.com.  The mailman url path is
mail.mydomain.com/mailman.
I have a virtual domain mail server setup running on a mysql backend.
I have mailman setup recieve and sending email for mydomain.com.  The
problem I am having is with the Subscriptions.  I can use add_member for a
list, but when i try a subscription with the webpage I get this error:
"You must supply a valid email address."

Im not sure what I am doing wrong here.

Thanks,

Chris Penn...

-- 
Sourthern Regional Climate Center
Louisiana State University
Howe-Russell Geoscience Complex
Office E330
Office:225.590.5847

" A Mathematician is a machine for turning coffee into theorems." -Erdös,
Paul
Nov. 1992

--
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=show&file=faq01.027.htp


[Mailman-Users] Virtual Hosts

2008-01-18 Thread Chris Penn
Hi,

I have a mailserver at mail.mydomain.com.  The mailman url path is
mail.mydomain.com.
I have virtual domain mail server setup running on a mysql backend.
I have mailman setup and I am attempting to setup the mm_cfg.py
I am having a little trouble with the way I am suppose to setup the "Put
YOUR site-specific settings below this line" part. I know that I want
something like this:


DEFAULT_EMAIL_HOST = 'mail.mydomain.com'
DEFAULT_URL_HOST = 'mail.mydomain.com'
add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST)


I think I want to replace the default_url_host and default_email_hosts.
in the add_virtualhost().  I dont think it should be the default.  When
people mail the list is should be [EMAIL PROTECTED]

Thanks,

Chris Penn...

-- 
Sourthern Regional Climate Center
Louisiana State University
Howe-Russell Geoscience Complex
Office E330
Office:225.590.5847
Cell:949.300.3094

" A Mathematician is a machine for turning coffee into theorems." -Erdös,
Paul
Nov. 1992

--
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=show&file=faq01.027.htp


[Mailman-Users] Howto find Users for a list?

2008-01-17 Thread Chris Penn

I need to create a list of users for a particular list.  is there a way I
can find out who is subscribed to a list in mailman?

Thanks,

Chris...

-- 
Sourthern Regional Climate Center
Louisiana State University
Howe-Russell Geoscience Complex
Office E330
Office:225.590.5847
Cell:949.300.3094

" A Mathematician is a machine for turning coffee into theorems." -Erdös,
Paul
Nov. 1992

--
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=show&file=faq01.027.htp


[Mailman-Users] Mailman and Qmail

2008-01-16 Thread Chris Penn

I have setup a qmailtoaster that is very similar to this setup
http://wiki.qmailtoaster.com/index.p...oaster_Install

I have compiled and installed Mailman on the machine into
/home/mailman/mydomain/

Does anyone know howto setup Qmail and Mailman to work together. The
mailman site has not been very helpful. I am attempting to do this on
Centos 5 using Mailman 2.1.9.

-- 
Sourthern Regional Climate Center
Louisiana State University
Howe-Russell Geoscience Complex
Office E330
Office:225.590.5847
Cell:949.300.3094

" A Mathematician is a machine for turning coffee into theorems." -Erdös,
Paul
Nov. 1992

--
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=show&file=faq01.027.htp