[Mailman-Users] list member address parsing question

2009-06-01 Thread admin2

Hi list,

Somebody suggested me ask the mailman folks this question.

My google official account username is b...@domain.com but I have 
verified and activated another email address sam...@domain2.com .  I 
am able to originate email with sam...@domain2.com in the from email 
but mailman still rejects the message claiming Sorry, only subscribers 
may post.  Mailman thinks I am not a member of the list and is 
considering me b...@domain.com even though I can see in the bounce 
that sam...@domain2.com is in the From portion of the header.  The 
SMTP header of the bounce claims Received-SPF: pass, Return-Path: 
b...@domain.com, and Sender: b...@domain.com


When I send the same mail through a domain I administer the email 
sam...@domain2.com is properly identified.


Is there anything more I can configure to appease mailman's legitimacy 
checking?


Cheers,

noah
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
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://wiki.list.org/x/QIA9


[Mailman-Users] question about postfix aliases file and postfix virtual file and local delivery

2009-05-30 Thread admin2

Hi there,

I have a question about changing the default behavior of postfix.  As 
current configuration stands I need to add a mailman maillist hosted by 
virtual hosts/domains I need to add the to list entries to the /var/lib/ 
mailman/data/aliases file and also the /etc/postfix/virtual file


Is there any way to get postfix to deliver mail to a virutal 
domain/hosted email, such as a mailman maillist, if it is found in the 
/var/lib/ mailman/data/aliases file but does not appear in the 
/etc/postfix/virtual file?


What about allowing postfix to deliver Incoming mail if an user and/or 
maillist address is a local user but does not appear in the 
/etc/postfix/virtual file?


Cheers,

Noah
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
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://wiki.list.org/x/QIA9


[Mailman-Users] migrating from sendmail site to postfix site

2009-05-28 Thread admin2

Hi there,

I am migrating mailman from a freebsd server running sendmail to an 
ubuntu server running postfix.  Could somebody please send me a decent 
link that explains the postfix/mailman configuration?


I am getting relaying denied messages on the postfix side.

Cheers,

Noah
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
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://wiki.list.org/x/QIA9


Re: [Mailman-Users] migrating from sendmail site to postfix site

2009-05-28 Thread admin2

Mark Sapiro wrote:

admin2 wrote:
I am migrating mailman from a freebsd server running sendmail to an 
ubuntu server running postfix.  Could somebody please send me a decent 
link that explains the postfix/mailman configuration?


I am getting relaying denied messages on the postfix side.


Outgoing or incoming?

Is your sending IP in my_networks?

For Mailman specific information see
http://www.list.org/mailman-install/node12.html.

For the rest see http://www.postfix.org/documentation.html.



Mark,

I am getting mail loops with postfix. here is my configuration.  I dont 
have @domain.com @mail.domain.com configured in my /etc/postfix/virtual 
file.  what do I do in the case of the configuration below?



myorigin = /etc/mailname
myhostname = domain.com
mydomain = domain.com
mydestination = $myhostname, localhost.$mydomain $mydomain

r...@domain:/etc/postfix# cat /etc/mailname
domain.com

# cat /etc/hosts
127.0.0.1 localhost localhost.localdomain
128.110.253.66 domain.com

# hostname
domain.com



--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
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://wiki.list.org/x/QIA9


[Mailman-Users] icons not seen

2009-05-28 Thread admin2

Okay I give up.  how can I figure out why my icons are not seen via apache.

# ls -l /var/lib/mailman/icons/
total 24
-rw-r--r-- 1 root root  945 Mar  6  2008 PythonPowered.png
-rw-r--r-- 1 root root 3049 Mar  6  2008 gnu-head-tiny.jpg
-rw-r--r-- 1 root root 6150 Mar  6  2008 mailman-large.jpg
-rw-r--r-- 1 root root 2022 Mar  6  2008 mailman.jpg
-rw-r--r-- 1 root root  281 Mar  6  2008 mm-icon.png


Here is the config:

VirtualHost *:80
ServerAdmin webmas...@domain.com
ServerName lists.domain.com
ServerAlias www.lists.domain.com w.lists.domain.com
ServerAlias ww.lists.domain.com .lists.domain.com

DocumentRoot /var/www

ScriptAlias /mailman /var/lib/mailman/cgi-bin/
Alias /pipermail /var/lib/mailman/archives/public/
Alias /icons /var/lib/mailman/icons/

Redirect permanent /index.html 
http://lists.domain.com/mailman/listinfo/


RewriteEngine on
RewriteCond %{REQUEST_METHOD} !^(GET|POST|HEAD)$
RewriteRule .* - [F]

ErrorLog /var/log/apache2/error.log

# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn

CustomLog /var/log/apache2/access.log combined
ServerSignature On

Alias /doc/ /usr/share/doc/
Directory /usr/share/doc/
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
/Directory

/VirtualHost
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
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://wiki.list.org/x/QIA9


[Mailman-Users] admin link wrong when migrating to new server

2009-05-28 Thread admin2

Hi there,

I am migrating from a freeBSD machine to an ubuntu machine and the ports 
have different default locations and so on.


on the ubuntu machine I find that mailman resides in

/var/lib/mailman

the cgi-bin is /var/lib/mailman/cgi-bin

the link from the main page to the admin page is messed up for every 
virtual site.  Is there a configuration place to fix this or what is the 
appropriate way to fix the problem?


so if I place the URL  http://lists.domain.com
in my browser I am redirected to http://lists.domain.com/mailman/listinfo/

then I click the the list admin overview page and get sent to the 
wrong link that results in a page not found error:

http://lists.domain.com/cgi-bin/mailman/admin

when the link should be:
http://lists.domain.com/mailman/admin

help please.

Cheers,

Noah
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
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://wiki.list.org/x/QIA9


[Mailman-Users] correcting archive URLs

2009-05-26 Thread admin2

Hi there,

I have Migrating a mail list from one Host to another host.  I see that
the archives have URL pointers to domain1.com .  I no longer own
domain1.com and would like to replace domain1.com with domain2.com

is there an application already written to do that?


Here is what I see in the archives.

--- snip ---

An HTML attachment was scrubbed...
URL:
http://lists.domain1.com/pipermail/listname/attachments/20060928/79676479/attachment.htm 






--- snip 


Cheers,

Noah
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
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://wiki.list.org/x/QIA9


[Mailman-Users] check_perms does not fix permissions

2009-05-25 Thread admin2

Hi,


okay I am running check_perms with the -f switch and find that the same 
Problems occur over and over.  Why are they not getting fixed?  I am 
running check_perms as root.



Problems found: 1283
Re-run as list (or root) with -f flag to fix
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
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://wiki.list.org/x/QIA9


[Mailman-Users] correcting archive URLs

2009-05-25 Thread admin2

Hi there,

I have Migrating a mail list from one Host to another host.  I see that 
the archives have URL pointers to domain1.com .  I no longer own 
domain1.com and would like to replace domain1.com with domain2.com


is there an application already written to do that?


Here is what I see in the archives.

--- snip ---

An HTML attachment was scrubbed...
URL: 
http://lists.domain1.com/pipermail/listname/attachments/20060928/79676479/attachment.htm 





--- snip 


Cheers,

Noah
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
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://wiki.list.org/x/QIA9


[Mailman-Users] check_perms failing: No such file or directory: '/var/lib/mailman/archives/public/maillist'

2009-05-24 Thread admin2

Hi there,

I am not clear why check_perms are failing.  The error claims 
'/var/lib/mailman/archives/public/maillist' directory does not exist. 
but an 'ls' reveals it does.




/var/lib/mailman/archives/public/maillist bad group (has: mailman, 
expected list) (fixing)

Traceback (most recent call last):
  File ./check_perms, line 380, in module
checkall()
  File ./check_perms, line 196, in checkall
os.path.walk(d, checkwalk, STATE)
  File /usr/lib/python2.5/posixpath.py, line 298, in walk
walk(name, func, arg)
  File /usr/lib/python2.5/posixpath.py, line 298, in walk
walk(name, func, arg)
  File /usr/lib/python2.5/posixpath.py, line 290, in walk
func(arg, top, names)
  File ./check_perms, line 124, in checkwalk
os.chown(path, -1, MAILMAN_GID)
OSError: [Errno 2] No such file or directory: 
'/var/lib/mailman/archives/public/maillist'
r...@enabled:/var/lib/mailman/bin# ls -l 
/var/lib/mailman/archives/public/maillist
lrwxrwxrwx 1 80 mailman 44 Dec 13  2005 
/var/lib/mailman/archives/public/maillist - 
/usr/local/mailman/archives/private/maillist
r...@enabled:/var/lib/mailman/bin# ls -l 
/var/lib/mailman/archives/private/maillist

total 456
drwxrwsr-x  2 mailman list   4096 Jan  1  2006 2005-December
-rw-r--r--  1 mailman list  27928 Jan  1  2006 2005-December.txt
-rw-r--r--  1 mailman list  10038 Jan  2  2006 2005-December.txt.gz
drwxrwsr-x  2 mailman list   4096 Apr  5  2006 2006-April
-rw-r--r--  1 mailman list604 Apr  5  2006 2006-April.txt
-rw-r--r--  1 mailman list464 Apr  6  2006 2006-April.txt.gz
drwxrwsr-x  2 mailman list   4096 Aug  8  2006 2006-August
-rw-r--r--  1 mailman list   4084 Aug  8  2006 2006-August.txt
-rw-r--r--  1 mailman list   2218 Aug  9  2006 2006-August.txt.gz
drwxrwsr-x  2 mailman list   4096 Feb 28  2006 2006-February
-rw-r--r--  1 mailman list 160434 Feb 28  2006 2006-February.txt
-rw-r--r--  1 mailman list  48348 Mar  1  2006 2006-February.txt.gz
drwxrwsr-x  2 mailman list   4096 Jan 18  2006 2006-January
-rw-r--r--  1 mailman list  55258 Jan 18  2006 2006-January.txt
-rw-r--r--  1 mailman list  19536 Jan 19  2006 2006-January.txt.gz
drwxrwsr-x  2 mailman list   4096 Jun 26  2006 2006-June
-rw-r--r--  1 mailman list   7472 Jun 26  2006 2006-June.txt
-rw-r--r--  1 mailman list   3327 Jun 27  2006 2006-June.txt.gz
drwxrwsr-x  2 mailman list   4096 Mar 20  2006 2006-March
-rw-r--r--  1 mailman list  27910 Mar 20  2006 2006-March.txt
-rw-r--r--  1 mailman list   7689 Mar 21  2006 2006-March.txt.gz
drwxrwsr-x  2 mailman list   4096 May  2  2006 2006-May
-rw-r--r--  1 mailman list   6626 May  2  2006 2006-May.txt
-rw-r--r--  1 mailman list   3241 May  3  2006 2006-May.txt.gz
drwxrwsr-x 34 mailman list   4096 Jun 26  2006 attachments
drwxrws---  2 mailman list   4096 Aug  8  2006 database
-rw-r--r--  1 mailman list   4013 Aug  8  2006 index.html
-rw-r-  1 mailman list992 Aug  8  2006 pipermail.pck

# python -V
Python 2.5.2
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
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://wiki.list.org/x/QIA9