[Mailman-Users] bounce issue

2006-01-06 Thread Sean Roe
Hi All,

I think I am on the down hill slide of this adventure but I am still 
stuck on a couple of things.  for a little back story:  I have two 
mailman installs on one machine, due primarily to one using the mysql 
connector and one being a vanilla install.  I am in the process of 
trying to figure out why my mysql based list isn't working. the test 
list on it sends out list mail but it shows as coming from the bounce 
address.  the From field shows correctly, but the sender field shows 
[EMAIL PROTECTED]  Im looking in the logs and I see that:

Jan 06 11:03:09 2006 (19833) post to test_emag from 
[EMAIL PROTECTED], size=52564, 
message-id=[EMAIL PROTECTED], success

it was posted successfully.  What else can I check?

Thanks,
Sean Roe
 
--
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] bounce issue

2006-01-06 Thread Sean Roe
Mark Sapiro wrote:
 Sean Roe wrote:
   
 I am in the process of 
 trying to figure out why my mysql based list isn't working. the test 
 list on it sends out list mail but it shows as coming from the bounce 
 address.  the From field shows correctly, but the sender field shows 
 [EMAIL PROTECTED]
 

 This is exactly what it's supposed to be. The envelope is from the
 -bounces address so that bounces will be returned to the -bounces
 address for automated bounce processing.

 The -bounces address is also placed in Sender: and Errors-To: headers
 for the benefit of non-compliant MTAs.

   
Ooops my bad.  Sorry I misunderstood what the field is for.  So it is 
working as promised.  I guess I'll try sending out the big list now 
~120k users.

Thanks,
Sean
--
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] virtual domains problem

2006-01-03 Thread Sean Roe
Hi All,

I am setting up a mailman server running Debian sarge, exim4, and 
mailman 2.1.6 that supports several domains, and have run into a bit of 
a problem.  I have set up the virtual domains per the documentation but 
I am running into an issue when I test the installations.  Here is the 
output from the mainlog in exim4:

2006-01-03 09:42:52 1EtpFL-0003iz-RY == [EMAIL PROTECTED] 
R=mailman_router T=mailman_transport defer (2): No such file or 
directory: failed to chdir to /data/mailman/:adoptionweek.com


I believe the problem is the colon at the begining of sub directory 
name.  I cant seem to find where that is coming from.  Below are the 
changes I made to exim to deal with the virt domains:

in 01_exim4-config_listmacrosdefs:

MM_HOME=/data/mailman/${lc::$domain}
MM_UID=mailman
MM_GID=mailman
domainlist 
mm_domains=adoptionweek.com:lists.adoptionweek.com:e-magazine.adoption.com:lists.adoption.com:adoption.c
om:adoptionlists.com
MM_WRAP=MM_HOME/mail/mailman
MM_LISTCHK=MM_HOME/lists/${lc::$local_part}/config.pck

in 099_exim4-config_mailman:

mailman_router:
driver = accept
domains = +mm_domains
require_files = MM_LISTCHK
local_part_suffix_optional
local_part_suffix = -admin : \
-bounces   : -bounces+* : \
-confirm   : -confirm+* : \
-join  : -leave : \
-owner: -request   : \
-subscribe : -unsubscribe
transport = mailman_transport


in 30_exim4-config_mailman:
  mailman_transport:
driver = pipe
command = MM_WRAP \
  '${if def:local_part_suffix \
{${sg{$local_part_suffix}{-(\\w+)(\\+.*)?}{\$1}}} \
{post}}' \
  $local_part
current_directory = MM_HOME
home_directory = MM_HOME
user = MM_UID
group = MM_GID

--
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] virtual domains problem

2006-01-03 Thread Sean Roe
Hi All,

The changes I made were to exim's list_macrodefs:
from:
MM_LISTCHK=MM_HOME/lists/${lc::$local_part}/config.pck
to:
MM_LISTCHK=MM_HOME/lists/${lc:$local_part}/config.pck

and mailman_router:
from:
require_files = MM_LISTCHK
to:
require_files = ; MM_LISTCHK

I made the changes above, but now exim4 says the addresses are unroutable:
#exim4 -bt [EMAIL PROTECTED]
R: system_aliases for [EMAIL PROTECTED]
[EMAIL PROTECTED] is undeliverable:
  Unrouteable address

I reverted the changes and get this:
#exim4 -bt [EMAIL PROTECTED]
[EMAIL PROTECTED]
  router = mailman_router, transport = mailman_transport

Is there anything else I need to do to make this work?  I didn't see any 
other reference to MM_LISTCHK

Thanks,
Sean

John W. Baxter wrote:
 On 1/3/06 9:29 AM, Sean Roe [EMAIL PROTECTED] wrote:

 The macro
   
 MM_LISTCHK=MM_HOME/lists/${lc::$local_part}/config.pck
 
 is later used in a list context
   
 require_files = MM_LISTCHK
 

 So I to would expect the : in $(lc:$local_part) to have to be doubled.  But
 what seems to be happening is that the second of the pair of colons is being
 picked up as part of the string to be lower-cased.

 You could make certain that the colon *doesn't* need to be doubled by
 changing the list separator character in the require_files option:
 require_files = ; MM_LISTCHK

 If you do that, then for sure you only need a single : in the MM_LISTCHK
 macro.  (You need to do the same magic other places the macro is used in
 list context.)

   --John

   

--
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] virtual domains problem

2006-01-03 Thread Sean Roe
Mark Sapiro wrote:
 Sean Roe wrote:
   
 2006-01-03 09:42:52 1EtpFL-0003iz-RY == [EMAIL PROTECTED] 
 R=mailman_router T=mailman_transport defer (2): No such file or 
 directory: failed to chdir to /data/mailman/:adoptionweek.com


 I believe the problem is the colon at the begining of sub directory 
 name.  I cant seem to find where that is coming from.  Below are the 
 changes I made to exim to deal with the virt domains:

 in 01_exim4-config_listmacrosdefs:

 MM_HOME=/data/mailman/${lc::$domain}
 

 Where does this come from? Normally it would just be something like

 MM_HOME=/data/mailman/

 and not include any reference to $domain. It is the path to but not
 including the lists/ directory in the Mailman installation.

   
this is a virtual domain installation.  /data/mailman/{domain} refers 
different mailman installations:

/data/mailman/adoptionlists.com
/data/mailman/adoptionweek.com
ect.

Sean
--
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] virtual domains problem

2006-01-03 Thread Sean Roe
Mark Sapiro wrote:
 Sean Roe wrote:

   
 this is a virtual domain installation.  /data/mailman/{domain} refers 
 different mailman installations:

 /data/mailman/adoptionlists.com
 /data/mailman/adoptionweek.com
 ect.
 


 Sorry, I misunderstood. I thought you were using Mailman virtual
 domains, not separate Mailman instances.

   
Unfortunately, I have to do it this way, with multiple instances, as one 
group of lists are using the mysql adapter and one group isn't.  Getting 
back to the original posting, do you know why I am picking up that colon 
on the beguining of the domainname?

Sean
--
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] issues after conversion

2005-10-13 Thread Sean Roe
Hi All,

I am in the process of transfering over my lists to a new machine and 
converting them to mysql.  I have got the lists created, copied the old 
lists directory over and started to create the aliases for exim4.  But 
whenever I run genaliases, I Iget the following output:

#./bin/genaliases
Traceback (most recent call last):
  File ./bin/genaliases, line 116, in ?
main()
  File ./bin/genaliases, line 94, in main
mlist = MailList.MailList(listname, lock=False)
  File /var/lib/mailman/Mailman/MailList.py, line 105, in __init__
self._memberadaptor = MysqlMemberships(self)
  File /var/lib/mailman/Mailman/MysqlMemberships.py, line 118, in __init__
self.cursor.execute (CREATE TABLE IF NOT EXISTS %s (
  File /usr/lib/python2.3/site-packages/MySQLdb/cursors.py, line 137, 
in execute
self.errorhandler(self, exc, value)
  File /usr/lib/python2.3/site-packages/MySQLdb/connections.py, line 
33, in defaulterrorhandler
raise errorclass, errorvalue
_mysql_exceptions.ProgrammingError: (1064, You have an error in your 
SQL syntax; check the manual that corresponds to your MySQL server 
version for the right syntax to use near '-child (\n  address 
varchar(255) NOT NULL,\n  hide enum('Y','N') N)
Exception exceptions.AttributeError: MysqlMemberships instance has no 
attribute 'conn' in bound method MysqlMemberships.__del__ of 
Mailman.MysqlMemberships.MysqlMemberships instance at 0x406250ec ignored

I checked the tables on the mysql server and they all appear to be 
there, so I am confused.  Any guidance would be helpful.

Thanks,
Sean
--
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] new and improved stupid error

2005-09-23 Thread Sean Roe
Hi All,

I am getting the following error now when I start up mailman:

[client 192.168.4.199] Exception exceptions.A
ttributeError: MysqlMemberships instance has no attribute 'cursor' in 
bound m
ethod MysqlMemberships.__del__ of 
Mailman.MysqlMemberships.MysqlMemberships ins
tance at 0x40221a8c ignored


I think the other sysadmin may of removed something by accident (or on 
purpose)  :)
Again, I am not a python guy at all, so be gentle.

Thanks,
Sean
--
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] combining mailman servers and virt domains and converting to mysql

2005-09-02 Thread Sean Roe
Hi all,

I was am in the process of converting an old maillist server over to my 
new maillist server.  It currentl has a couple of lists on one domain  
running with the mysql patch.  What I want to do is combine this  server 
with the old lists that are non mysql based to the new server that is 
mysql based.  I have read the mail archive and the docs and I am not 
really sure how in what order to do stuff.  I think I can just copy over 
the lists directory and archive directory.  I should then run the mysql 
convert script.  Verify that all the lists got on the mysql server then 
move the IP to point to the new server? Am I in the right ballpark?

Sean
--
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] startup error in mailman

2005-08-31 Thread Sean Roe
Hi All,

I am getting the following error whenever I start up mailman:

mailman01:/var/lib/mailman/Mailman# ../bin/mailmanctl start
Traceback (most recent call last):
  File ../bin/mailmanctl, line 547, in ?
main()
  File ../bin/mailmanctl, line 366, in main
check_for_site_list()
  File ../bin/mailmanctl, line 276, in check_for_site_list
sitelist = MailList(sitelistname, lock=0)
  File /var/lib/mailman/Mailman/MailList.py, line 104, in __init__
self._memberadaptor = MysqlMemberships(self)
  File /var/lib/mailman/Mailman/MysqlMemberships.py, line 118, in __init__
self.cursor.execute (CREATE TABLE IF NOT EXISTS %s (
  File /usr/lib/python2.3/site-packages/MySQLdb/cursors.py, line 137, 
in execute
self.errorhandler(self, exc, value)
  File /usr/lib/python2.3/site-packages/MySQLdb/connections.py, line 
33, in defaulterrorhandler
raise errorclass, errorvalue
_mysql_exceptions.OperationalError: (1044, Access denied for user 
'web_site'@'192.168.%' to database 'mailman')
Exception exceptions.AttributeError: MysqlMemberships instance has no 
attribute 'conn' in bound method MysqlMemberships.__del__ of 
Mailman.MysqlMemberships.MysqlMemberships instance at 0x404645ec ignored

Mailman no longer starts at this point.

Nothing has changed that I am aware of, I have connected from the 
mailman server to the database server with the mysql client using the 
same username and password and was successful, so I am at a loss.  Any 
suggestions would be helpful.

Thanks,
Sean

--
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] startup error in mailman

2005-08-31 Thread Sean Roe
Figured it out.  The user connecting to the mysql database did not have 
create rights, so it was failing to create the default table.

Thanks,
Sean

Sean Roe wrote:

Hi All,

I am getting the following error whenever I start up mailman:

mailman01:/var/lib/mailman/Mailman# ../bin/mailmanctl start
Traceback (most recent call last):
  File ../bin/mailmanctl, line 547, in ?
main()
  File ../bin/mailmanctl, line 366, in main
check_for_site_list()
  File ../bin/mailmanctl, line 276, in check_for_site_list
sitelist = MailList(sitelistname, lock=0)
  File /var/lib/mailman/Mailman/MailList.py, line 104, in __init__
self._memberadaptor = MysqlMemberships(self)
  File /var/lib/mailman/Mailman/MysqlMemberships.py, line 118, in __init__
self.cursor.execute (CREATE TABLE IF NOT EXISTS %s (
  File /usr/lib/python2.3/site-packages/MySQLdb/cursors.py, line 137, 
in execute
self.errorhandler(self, exc, value)
  File /usr/lib/python2.3/site-packages/MySQLdb/connections.py, line 
33, in defaulterrorhandler
raise errorclass, errorvalue
_mysql_exceptions.OperationalError: (1044, Access denied for user 
'web_site'@'192.168.%' to database 'mailman')
Exception exceptions.AttributeError: MysqlMemberships instance has no 
attribute 'conn' in bound method MysqlMemberships.__del__ of 
Mailman.MysqlMemberships.MysqlMemberships instance at 0x404645ec ignored

Mailman no longer starts at this point.

Nothing has changed that I am aware of, I have connected from the 
mailman server to the database server with the mysql client using the 
same username and password and was successful, so I am at a loss.  Any 
suggestions would be helpful.

Thanks,
Sean

--
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/sean%40adoptionmedia.com

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


--
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] Error during mailman runs

2005-08-30 Thread Sean Roe
Mark Sapiro wrote:

Sean Roe wrote:
  

I am getting the following errors durring mailman runs:

mailman01:/var/lib/mailman/qfiles/out# Traceback (most recent call last):
 File /var/lib/mailman/bin/qrunner, line 270, in ?
   main()
 File /var/lib/mailman/bin/qrunner, line 230, in main
   qrunner.run()
 File /var/lib/mailman/Mailman/Queue/Runner.py, line 87, in run
   self._cleanup()
 File /var/lib/mailman/Mailman/Queue/BounceRunner.py, line 220, in 
_cleanup
   BounceMixin._cleanup(self)
 File /var/lib/mailman/Mailman/Queue/BounceRunner.py, line 132, in 
_cleanup
   self._register_bounces()
 File /var/lib/mailman/Mailman/Queue/BounceRunner.py, line 120, in 
_register_bounces
   mlist.registerBounce(addr, msg, day=day)
 File /var/lib/mailman/Mailman/Bouncer.py, line 108, in registerBounce
   info = self.getBounceInfo(member)
 File /var/lib/mailman/Mailman/MysqlMemberships.py, line 530, in 
getBounceInfo
   row[2], row[0])
TypeError: __init__() takes exactly 5 arguments (6 given)


What does this mean?




It appears to be saying that the MysqlMemberships.py member adaptor
that you have installed is not compatible with your version of Mailman.

What Mailman version do you have?

What version of MysqlMemberships.py do you have (latest is 1.61,
2005-07-27)? See
http://sourceforge.net/tracker/index.php?func=detailaid=839386group_id=103atid=300103
and/or http://www.orenet.co.uk/opensource/

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

I am using 1.61 per the revision number on the file:
Kev Green, oRe Net (http://www.orenet.co.uk/), 2003/11/04
$Revision: 1.61 $

and the mailman version is via version in bin:
mailman01:/var/lib/mailman/bin# ./version
Using Mailman version: 2.1.6


Is there some sort of issue with spammers?  It doesn't happen all the 
time.  There appears to be no rhyme or reason for it.

Thanks,
Sean Roe
--
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] Error during mailman runs

2005-08-29 Thread Sean Roe
Hi All,

I am getting the following errors durring mailman runs:

mailman01:/var/lib/mailman/qfiles/out# Traceback (most recent call last):
  File /var/lib/mailman/bin/qrunner, line 270, in ?
main()
  File /var/lib/mailman/bin/qrunner, line 230, in main
qrunner.run()
  File /var/lib/mailman/Mailman/Queue/Runner.py, line 87, in run
self._cleanup()
  File /var/lib/mailman/Mailman/Queue/BounceRunner.py, line 220, in 
_cleanup
BounceMixin._cleanup(self)
  File /var/lib/mailman/Mailman/Queue/BounceRunner.py, line 132, in 
_cleanup
self._register_bounces()
  File /var/lib/mailman/Mailman/Queue/BounceRunner.py, line 120, in 
_register_bounces
mlist.registerBounce(addr, msg, day=day)
  File /var/lib/mailman/Mailman/Bouncer.py, line 108, in registerBounce
info = self.getBounceInfo(member)
  File /var/lib/mailman/Mailman/MysqlMemberships.py, line 530, in 
getBounceInfo
row[2], row[0])
TypeError: __init__() takes exactly 5 arguments (6 given)


What does this mean?

Thanks,
Sean
--
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] Bounce list weirdness

2005-08-23 Thread Sean Roe
Hi All,

I am having a very strange problem with my mailman install, I keep 
getting these emails and I have no idea how to stop them.  I have exim4 
turned off as well as mailman unti I can figure this out we send out a 
newsletter once a week to people interested in adoption and only one 
user can send to the list but it seems that all the users are getting 
this mail:

The headers are:
 From [EMAIL PROTECTED]  Mon Aug 22 16:24:07 2005
Return-Path: [EMAIL PROTECTED]
Received: from mailman01.adoptionweek.com ([EMAIL PROTECTED])
by mail.adoptionmedia.com (8.13.1/8.13.1) with ESMTP id 
j7MNO515014228
(version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NO)
for [EMAIL PROTECTED]; Mon, 22 Aug 2005 16:24:05 
-0700
Received: from [127.0.0.1] (helo=mailman01.adoptionweek.com ident=mailman)
by mailman01.adoptionweek.com with esmtp (Exim 4.50)
id 1E7LPW-00034t-FM; Mon, 22 Aug 2005 16:08:58 -0700
Received: from [70.84.169.194] (helo=aac.dropspam.com)
by mailman01.adoptionweek.com with smtp (Exim 4.50)
id 1E5HGE-0004p3-57
for [EMAIL PROTECTED]; Tue, 16 Aug 2005 23:18:50 -0700
Received: (qmail 30295 invoked by uid 500); 17 Aug 2005 07:17:39 -
Date: 17 Aug 2005 07:17:39 -
Message-ID: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: [URGENT] - URGENT RESPONSE REQUIRED
Content-type: text/plain
From: [EMAIL PROTECTED]
X-BeenThere: [EMAIL PROTECTED]
X-Mailman-Version: 2.1.6
Precedence: list
Reply-To: [EMAIL PROTECTED]
List-Id: emag.mail.adoptionweek.com
List-Unsubscribe: http://lists.adoptionweek.com/mailman/listinfo/emag,
mailto:[EMAIL PROTECTED]
List-Archive: http://lists.adoptionweek.com/mailman/private/emag
List-Post: mailto:[EMAIL PROTECTED]
List-Help: mailto:[EMAIL PROTECTED]
List-Subscribe: http://lists.adoptionweek.com/mailman/listinfo/emag,
mailto:[EMAIL PROTECTED]
Sender: [EMAIL PROTECTED]
Errors-To: [EMAIL PROTECTED]
X-mail.adoptionmedia.com-MailScanner-Information: Please contact the ISP 
for mor
e information
X-mail.adoptionmedia.com-MailScanner: Found to be clean
X-MailScanner-From: [EMAIL PROTECTED]
Status: RO
X-Status:
X-Keywords:
X-UID: 62598



Here is a sample of the email:

Dear [EMAIL PROTECTED],

- URGENT RESPONSE REQUIRED -

Please note, an immediate response is required to prevent your messages 
from being automatically deleted.

Your e-mail to [EMAIL PROTECTED] was NOT delievered.

[EMAIL PROTECTED] is protected against viruses and spam by 
www.dropspam.com, and all new senders are required to be authenticated 
by clicking on the link below.

Please follow this link to add yourself to the approved sender list of 
[EMAIL PROTECTED]

http://verify.dropspam.com/verify.cgi?key=3209/emag%40mail.adoptionweek.com/aac02160/1
 




Thank you!


Dropspam.com

Block 100% of viruses and spam.
http://www.dropspam.com
--
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] mysql and mailman part 2

2005-07-29 Thread Sean Roe
Hi All,

here is some more information about my issue from yesturday.  On my 
default 'mailman' list I can add users and delete users no problem via 
the web interface, however our 'emagazine' database which is set up the 
same way, does not work.  the only real difference is the 'emagazine' 
database has over 123000 addresses in it.  Did I hit some sort of 
limitation?

Thanks,
Sean
--
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] web stuff for mailman

2005-07-29 Thread Sean Roe
Hi All,

I think I am on the last issue I have setting this up.  I'll got to the 
website:

http://lists.adoption.com/mailman/admin and it will only show one list 
test_mag.

When I click on it, it goes to:

http://lists.adoption.com/cgi-bin/mailman/admin/test_mag

which doesn't work.it keeps sticking /cgi-bin/ in front of all the 
links it generates.  I have tried different iterations of mm_cfg.py

DEFAULT_URL_PATTERN = 'http://%s/mailman'

and it still doesn't work.  So how do I fix this?

Thanks,
Sean
--
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] mailman and mysql

2005-07-28 Thread Sean Roe
Hi All,

I am having some trouble with integration of mailman and mysql.  We have 
a mysql server that has the mailman databases on it and I can connect to 
it from the mailman server and can send emails out from it but the 
subscribe function appears to not work.  I get the confirmation email 
and I get all the correct responses from the mailman server but the user 
does not show up in the mailman database on the mysql server.  I am a 
little confused as the logs all say that the user has subscribbed 
successfully.  Where do I start to troubleshoot this?

Thanks,
Sean Roe
--
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] debian sarge and mailman

2005-07-27 Thread Sean Roe
Hi All,

I am sure this has been addressed before but I am cant find it in the 
Archives.  I am setting up a mailman server on a new debian sarge 
install with exim4.  I installed the debian packages and am now geting 
bounce notices about gid:

The following text was generated during the delivery attempt:

-- pipe to |/var/lib/mailman/mail/mailman post mailman
   generated by [EMAIL PROTECTED] --

Group mismatch error.  Mailman expected the mail
wrapper script to be executed as group daemon, but
the system's mail server executed the mail script as
group Debian-exim.  Try tweaking the mail server to run the
script as group daemon, or re-run configure, 
providing the command line option `--with-mail-gid=Debian-exim'.

What is the correct 'debian' way to to fix this?

Thanks,
Sean
--
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