Re: [Mailman-Users] Mailman problem after upgrade

2017-11-03 Thread Mark Sapiro
On 11/02/2017 04:30 PM, Chris Schwehm wrote:
> 
> I upgraded our mail server to the Fedora 26 and mailman stopped working.  
> Here 
> is the error that I get:


Please see .


...
> : Command died with status 1:
> "/usr/local/mailman/mail/mailman post test_l". Command output: Traceback
> (most recent call last):   File "/usr/local/mailman/scripts/post", line 
> 69,
> in  main()   File "/usr/local/mailman/scripts/post", line 64,
> in main tolist=1, _plaintext=1)   File
> "/usr/local/mailman/Mailman/Queue/Switchboard.py", line 136, in enqueue
> fp = open(tmpfile, 'w') IOError: [Errno 30] Read-only file system:
> 
> '/usr/local/mailman/qfiles/in/1509664135.848898+d09e53601a3985b45331c31a2f49a5f7
> 0eb7462c.pck.tmp'
> 
> --
> 
> If checked all of the ownership and permissions on that folder 
> (/usr/local/mailman/qfiles/in) both with the tool and manually and can't find 
> out of the ordinary. 
> 
> Any ideas what may be causing this issue?


The error seems self explanitory. The file system containing
/usr/local/mailman/qfiles/ is mounted read-only.

If for some reason that isn't the answer, I suspect some kind of SELinux
or other security manager issue.

-- 
Mark Sapiro The highway is for gamblers,
San Francisco Bay Area, Californiabetter use your sense - B. Dylan
--
Mailman-Users mailing list Mailman-Users@python.org
https://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: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org


[Mailman-Users] Mailman problem after upgrade

2017-11-03 Thread Chris Schwehm
Hi,

I upgraded our mail server to the Fedora 26 and mailman stopped working.  Here 
is the error that I get:

-
This is the mail system at host mail.eng.lsu.edu.

I'm sorry to have to inform you that your message could not
be delivered to one or more recipients. It's attached below.

For further assistance, please send mail to postmaster.

If you do so, please include this problem report. You can
delete your own text from the attached returned message.

   The mail system

: Command died with status 1:
"/usr/local/mailman/mail/mailman post test_l". Command output: Traceback
(most recent call last):   File "/usr/local/mailman/scripts/post", line 69,
in  main()   File "/usr/local/mailman/scripts/post", line 64,
in main tolist=1, _plaintext=1)   File
"/usr/local/mailman/Mailman/Queue/Switchboard.py", line 136, in enqueue
fp = open(tmpfile, 'w') IOError: [Errno 30] Read-only file system:

'/usr/local/mailman/qfiles/in/1509664135.848898+d09e53601a3985b45331c31a2f49a5f7
0eb7462c.pck.tmp'

--

If checked all of the ownership and permissions on that folder 
(/usr/local/mailman/qfiles/in) both with the tool and manually and can't find 
out of the ordinary. 

Any ideas what may be causing this issue?

Regards,

Chris

===
Chris Schwehm, Director
Office of Engineering Technology Services - 3324A Patrick F. Taylor Hall (CEBA)
Louisiana State University  Internet:  ch...@rsip.lsu.edu  
Baton Rouge, LA  70803  (225) 578-5262  
WWW Home Page:  http://www.rsip.lsu.edu/chris
===

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


Re: [Mailman-Users] mailman problem with exim

2011-08-01 Thread Lorenzo Coronati

On 30/07/2011 15:57, Mark Sapiro wrote:

Note that if you installed Mailman from a RedHat/CentOS rpm, most
examples on the web won't work because the mail wrapper mail/mailman
and the lists/ directory are not in the same MM_HOME directory. I.e.
the wrapper is /usr/lib/mailman/mail/mailman and the list directory is
/var/lib/mailman/lists/.


You got it Mark!
I didn't think to check those paths, and in fact they were wrong.
The error in the log was misleading me, nothing to do with virtual users 
and mysql...

I should have started with the simplest things...
Thanks a lot, I hope this thread can be useful to CentOS users.
Lorenzo

--
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] mailman problem with exim

2011-07-30 Thread Lorenzo Coronati

On 29/07/2011 23:42, Mark Sapiro wrote:


Check your exim logs. If your list mail is not using the
mailman_router router, you need to move that router closer to the
front of the routers section, at least ahead of the router it is
using. The mailman_router router uses the mailman_transport
transport, not the address_pipe transport in the messages in your OP.


Hi Mark,
the router is the first of the list; I paste it here:

mailman_router:
  driver = accept
  domains = +mm_domains
  require_files = MAILMAN_LISTCHK
  local_part_suffix_optional
  local_part_suffix = -bounces : -bounces+* : \
  -confirm+* : -join : -leave : \
  -owner : -request : -admin
  headers_remove = X-Spam-Score:X-Spam-Report
  transport = mailman_transport


and the transport follows:

mailman_transport:
  driver = pipe
  command = MAILMAN_WRAP \
'${if def:local_part_suffix \
  {${sg{$local_part_suffix}{-(\\w+)(\\+.*)?}{\$1}}} \
  {post}}' \
$local_part
  current_directory = MAILMAN_HOME
  home_directory = MAILMAN_HOME
  user = MAILMAN_USER
  group = MAILMAN_GROUP


I copied both from one of the many tutorials on the web, and adjusted 
only the variables in capitals...


Thanks again for your support
Lorenzo

--
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] mailman problem with exim

2011-07-30 Thread Mark Sapiro
Lorenzo Coronati wrote:

mailman_router:
   driver = accept
   domains = +mm_domains

What is your definition of mm_domains?


   require_files = MAILMAN_LISTCHK


What are your defininitions of MAILMAN_LISTCHK, MAILMAN_HOME,
MAILMAN_USER and MAILMAN_GROUP


   local_part_suffix_optional
   local_part_suffix = -bounces : -bounces+* : \
   -confirm+* : -join : -leave : \
   -owner : -request : -admin


The list above should probably also include -confirm, -subscribe and
-unsubscribe.


   headers_remove = X-Spam-Score:X-Spam-Report
   transport = mailman_transport


and the transport follows:

mailman_transport:
   driver = pipe
   command = MAILMAN_WRAP \
 '${if def:local_part_suffix \
   {${sg{$local_part_suffix}{-(\\w+)(\\+.*)?}{\$1}}} \
   {post}}' \
 $local_part
   current_directory = MAILMAN_HOME
   home_directory = MAILMAN_HOME
   user = MAILMAN_USER
   group = MAILMAN_GROUP


I copied both from one of the many tutorials on the web, and adjusted 
only the variables in capitals...


There should be

domainlist mm_domains=aips.it

or maybe

domainlist mm_domains=aips.it:other.list.domain:...

in your configuration. Your OP showed your list mail was using the
transport 'address_pipe', not 'mailman_transport'. If your
mailman_router is first and you are still seeing the same errors with
the address_pipe transport, some condition in your mailman_router is
not being met. Either, your mm_domains domain list does not include
your list domain(s) or your MAILMAN_LISTCHK macro doesn't expand to
the correct /path/to/lists/LISTNAME/config.pck.

Note that if you installed Mailman from a RedHat/CentOS rpm, most
examples on the web won't work because the mail wrapper mail/mailman
and the lists/ directory are not in the same MM_HOME directory. I.e.
the wrapper is /usr/lib/mailman/mail/mailman and the list directory is
/var/lib/mailman/lists/.

-- 
Mark Sapiro m...@msapiro.netThe 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://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


[Mailman-Users] mailman problem with exim

2011-07-29 Thread Lorenzo Coronati

hi all
I'm trying to make mailman work with exim (on a centos server) but I'm 
facing a problem:
when a subscriber posts a message, it isn't forwarded to the other 
subscribers, and no error message is sent back to the sender

this is what I find in the /var/log/exim/main.log:

2011-07-28 09:01:50 1QmKbO-0004h7-NS = lore...@coronati.com 
H=adsl-ull-193-191.49-151.net24.it ([192.168.0.207]) [151.49.191.193] 
P=esmtpa A=plain_login:lore...@coronati.com S=644 
id=4e310960.6050...@coronati.com T=provo io
2011-07-28 09:01:50 1QmKbO-0004h7-NS Failed to find group  from 
expanded string ${lookup mysql{select users.gid from users,domains 
where localpart = '${quote_mysql:$local_part}' and domain = 
'${quote_mysql:$domain}' and users.domain_id = domains.domain_id}} for 
the address_pipe transport
2011-07-28 09:01:50 1QmKbO-0004h7-NS == |/usr/local/mailman/mail/mailman 
post mailinglistaips mailinglista...@aips.it R=system_aliases 
T=address_pipe defer (-28): Failed to find group  from expanded string 
${lookup mysql{select users.gid from users,domains where localpart = 
'${quote_mysql:$local_part}' and domain = '${quote_mysql:$domain}' and 
users.domain_id = domains.domain_id}} for the address_pipe transport


what I understand is that exim (which is configured to manage the email 
addresses stored in a mysql database) tries to expand the mailing list 
looking for subscribers via sql, instead of letting mailman to do this

am I right?
and then, what do I have to do to fix this?

thanks in advance
lorenzo

--
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] mailman problem with exim

2011-07-29 Thread Mark Sapiro
Lorenzo Coronati wrote:

what I understand is that exim (which is configured to manage the email 
addresses stored in a mysql database) tries to expand the mailing list 
looking for subscribers via sql, instead of letting mailman to do this
am I right?
and then, what do I have to do to fix this?


See http://www.exim.org/howto/mailman21.html for the recommended way
to configure Exim with Mailman.

-- 
Mark Sapiro m...@msapiro.netThe 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://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] mailman problem with exim

2011-07-29 Thread Adam McGreggor
On Fri, Jul 29, 2011 at 07:29:50AM -0700, Mark Sapiro wrote:
 Lorenzo Coronati wrote:
 
 what I understand is that exim (which is configured to manage the email 
 addresses stored in a mysql database) tries to expand the mailing list 
 looking for subscribers via sql, instead of letting mailman to do this
 am I right?
 and then, what do I have to do to fix this?
 
 
 See http://www.exim.org/howto/mailman21.html for the recommended way
 to configure Exim with Mailman.

And make sure your routers are ordered the way you wish them to have
precedence (read from the top)


-- 
Bernard: It's another of those irregular verbs. I hold
  confidential briefings, you leak, he's been charged
  under section 2A of the Official Secrets Act.
--
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] mailman problem with exim

2011-07-29 Thread Lorenzo Coronati

On 29/07/2011 16:29, Mark Sapiro wrote:

Lorenzo Coronati wrote:

what I understand is that exim (which is configured to manage the email
addresses stored in a mysql database) tries to expand the mailing list
looking for subscribers via sql, instead of letting mailman to do this
am I right?
and then, what do I have to do to fix this?


Seehttp://www.exim.org/howto/mailman21.html  for the recommended way
to configure Exim with Mailman.



Thanks Mark,
I've read that page and followed the examples, but still I can't make 
things work.
I wonder if all instructions I've found are based on the assumption that 
exim works with real unix users...

Lorenzo

--
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] mailman problem with exim

2011-07-29 Thread Mark Sapiro
Lorenzo Coronati wrote:

Thanks Mark,
I've read that page and followed the examples, but still I can't make 
things work.
I wonder if all instructions I've found are based on the assumption that 
exim works with real unix users...
Lorenzo


Check your exim logs. If your list mail is not using the
mailman_router router, you need to move that router closer to the
front of the routers section, at least ahead of the router it is
using. The mailman_router router uses the mailman_transport
transport, not the address_pipe transport in the messages in your OP.

-- 
Mark Sapiro m...@msapiro.netThe 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://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


[Mailman-Users] Mailman Problem: Some URLs are wrong

2010-04-22 Thread Ralf Hildebrandt
Today I created a new list, and all over a sudden, some (not all!)
links are wrong.

E.g. the archive link on the admin page points to 
http://charite.de/mailman/private/gyn-online-tumorkonferenz/
instead of
http://mailman.charite.de/mailman/private/gyn-online-tumorkonferenz/

Same for the held message:
http://charite.de/mailman/admindb/gyn-online-tumorkonferenz?sender=dza%40alcedis.de
instead of
http://mailman.charite.de/mailman/admindb/gyn-online-tumorkonferenz?sender=dza%40alcedis.de

Why is that? There were NO mailman updates or changes at all... Which
setting (global or list specific) is responsible for these?

-- 
Ralf Hildebrandt
  Geschäftsbereich IT | Abteilung Netzwerk
  Charité - Universitätsmedizin Berlin
  Campus Benjamin Franklin
  Hindenburgdamm 30 | D-12203 Berlin
  Tel. +49 30 450 570 155 | Fax: +49 30 450 570 962
  ralf.hildebra...@charite.de | http://www.charite.de

--
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] Mailman Problem: Some URLs are wrong

2010-04-22 Thread Ralf Hildebrandt
* Ralf Hildebrandt ralf.hildebra...@charite.de:
 Today I created a new list, and all over a sudden, some (not all!)
 links are wrong.
 
 E.g. the archive link on the admin page points to 
 http://charite.de/mailman/private/gyn-online-tumorkonferenz/
 instead of
 http://mailman.charite.de/mailman/private/gyn-online-tumorkonferenz/
 
 Same for the held message:
 http://charite.de/mailman/admindb/gyn-online-tumorkonferenz?sender=dza%40alcedis.de
 instead of
 http://mailman.charite.de/mailman/admindb/gyn-online-tumorkonferenz?sender=dza%40alcedis.de
 
 Why is that? There were NO mailman updates or changes at all... Which
 setting (global or list specific) is responsible for these?

I created the list using:

newlist gyn-online-tumorkonfer...@charite.de
instead of
newlist gyn-online-tumorkonferenz

*facepalm*

-- 
Ralf Hildebrandt
  Geschäftsbereich IT | Abteilung Netzwerk
  Charité - Universitätsmedizin Berlin
  Campus Benjamin Franklin
  Hindenburgdamm 30 | D-12203 Berlin
  Tel. +49 30 450 570 155 | Fax: +49 30 450 570 962
  ralf.hildebra...@charite.de | http://www.charite.de

--
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] Mailman Problem: Some URLs are wrong

2010-04-22 Thread Stephen J. Turnbull
Ralf Hildebrandt writes:

  I created the list using:
  
  newlist gyn-online-tumorkonfer...@charite.de
  instead of
  newlist gyn-online-tumorkonferenz
  
  *facepalm*

For Mailman 2, I suppose so ;-), but virtual hosting is proposed as a
feature of Mailman 3.  If the admin has already configured charite.de
as a virtual domain, I would think

newlist gyn-online-tumorkonfer...@charite.de

is a very natural way to specify list and virtual host at the same
time.
--
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


[Mailman-Users] Mailman Problem

2008-09-08 Thread d3v1ous
[EMAIL PROTECTED]:~# cat /etc/passwd | grep mailman
[EMAIL PROTECTED]:~#

I not have mailman user.

[EMAIL PROTECTED]:~# cat /etc/mailman/mm_cfg.py | grep MAILMAN
MAILMAN_UID = 'list'
MAILMAN_GID = 'daemon'
MAILMAN_SITE_LIST = 'mailman'
[EMAIL PROTECTED]:~#

I try to run mailman with postfix owned aliases but same problem.

[EMAIL PROTECTED]:~# cd /var/lib/mailman/data
[EMAIL PROTECTED]:/var/lib/mailman/data# ls -l
total 36
-rw-r--r-- 1 postfix postfix 0 2008-09-04 10:40 aliases
-rw-r--r-- 1 postfix postfix 12288 2008-09-04 10:40 aliases.db
-rw-r--r-- 1 postfix postfix89 2008-09-05 09:56 chown
-rw-r--r-- 1 postfix postfix10 2008-09-03 15:46 last_mailman_version
-rw-r--r-- 1 postfix postfix 14114 2007-02-28 23:35 sitelist.cfg
[EMAIL PROTECTED]:/var/lib/mailman/data#

Howto see mailman run group, and howto change it? I dont want to change 
workgroup on postfix cuz i installed spamassassin and clamav, and if i make 
some changes on postfix the lastest software will not work.
--
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] Mailman Problem

2008-09-08 Thread Mark Sapiro
[EMAIL PROTECTED] wrote:

[EMAIL PROTECTED]:~# cat /etc/passwd | grep mailman
[EMAIL PROTECTED]:~#

I not have mailman user.

[EMAIL PROTECTED]:~# cat /etc/mailman/mm_cfg.py | grep MAILMAN
MAILMAN_UID = 'list'
MAILMAN_GID = 'daemon'
MAILMAN_SITE_LIST = 'mailman'
[EMAIL PROTECTED]:~#

I try to run mailman with postfix owned aliases but same problem.


What same problem? Why can't you post a coherent, self contained
question instead of making me search the archives for your prior post
and my reply at
http://mail.python.org/pipermail/mailman-users/2008-September/063198.html.



[EMAIL PROTECTED]:~# cd /var/lib/mailman/data
[EMAIL PROTECTED]:/var/lib/mailman/data# ls -l
total 36
-rw-r--r-- 1 postfix postfix 0 2008-09-04 10:40 aliases
-rw-r--r-- 1 postfix postfix 12288 2008-09-04 10:40 aliases.db
-rw-r--r-- 1 postfix postfix89 2008-09-05 09:56 chown
-rw-r--r-- 1 postfix postfix10 2008-09-03 15:46 last_mailman_version
-rw-r--r-- 1 postfix postfix 14114 2007-02-28 23:35 sitelist.cfg
[EMAIL PROTECTED]:/var/lib/mailman/data#

Howto see mailman run group, and howto change it? I dont want to change 
workgroup on postfix cuz i installed spamassassin and clamav, and if i make 
some changes on postfix the lastest software will not work.


Your original group mismatch error in the original post said the
expected group was 'daemon' and the actual group was 'nobody'.

It looks like there are no actual aliases in /var/lib/mailman/data/ so
where is Postfix getting your list aliases?

Also, you should probably do

  cd /var/lib/mailman/data
  chown list:daemon *

also, it's not clear what the file named 'chown' is. Its name is
clearly a mistake, but whether it's a spurious creation or a spurious
renaming of something else, I don't know.
  
Now if Postfix were actually getting it's aliases from
/var/lib/mailman/data/aliases.db, and if
/var/lib/mailman/data/aliases.db were user:group list:daemon, one fix
for your original group mismatch error would be to make the primary
group of the 'list' user the 'daemon' group.

-- 
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://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] mailman problem group

2008-09-05 Thread d3v1ous
Hello, i want to start mailman with postfix, everything is ok but when i post 
new topic on mail list the mail not recive and i see this error on mail.log

Command died with status 2:
/var/lib/mailman/mail/mailman post sheet. Command output: 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
nobody.  Try tweaking the mail server to run the script as group
daemon, or re-run configure,  providing the command line option
`--with-mail-gid=nobody'.

How to fix this?
--
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] mailman problem group

2008-09-05 Thread Mark Sapiro
[EMAIL PROTECTED] wrote:

Hello, i want to start mailman with postfix, everything is ok but when i post 
new topic on mail list the mail not recive and i see this error on mail.log

Command died with status 2:
/var/lib/mailman/mail/mailman post sheet. Command output: 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
nobody.  Try tweaking the mail server to run the script as group
daemon, or re-run configure,  providing the command line option
`--with-mail-gid=nobody'.

How to fix this?


Do one of the two things it says in the error message.

Note that Postfix will run the pipe as the user:group of the owner of
the aliases.db file in which it found the pipe alias. Note also, that
the group is the primary group of the owner of the file, not the group
of the file.

See http://wiki.list.org/x/tYA9 for more information.

-- 
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://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] Mailman Problem

2008-01-09 Thread Murat Ugur EMİNOĞLU
how can i write every user name and surname whose the mail has sent, when i
send a mail to a list?

Thanks.
mailman-users@python.org
--
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] Mailman Problem

2008-01-09 Thread Mark Sapiro
Murat Ugur EM0NOLU wrote:
 how can i write every user name and surname whose the mail has sent, when i
 send a mail to a list?

Write them where?

If you mean put the individual recipient's name in the To: header or the
msg_header or msg_footer of that recipient's email, see
http://www.python.org/cgi-bin/faqw-mm.py?req=showfile=faq03.015.htp.

If you mean something else, I don't understand.

-- 
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


[Mailman-Users] Mailman (?) problem

2007-09-11 Thread Alexandros G. Fragkiadakis
hi all,

the last few days i get hundreds of warnings like the following:

Transcript of session follows.

 Out: 220 xxx.xxx.xxx.xx ESMTP Postfix
 In:  ehlo xxx.xxx.xxx.xx
 Out: 250-xxx.xxx.xxx.xx
 Out: 250-PIPELINING
 Out: 250-SIZE 2048
 Out: 250-VRFY
 Out: 250-ETRN
 Out: 250-AUTH PLAIN LOGIN
 Out: 250-AUTH=PLAIN LOGIN
 Out: 250-ENHANCEDSTATUSCODES
 Out: 250-8BITMIME
 Out: 250 DSN
 In:  mail FROM:[EMAIL PROTECTED] size=1059
 Out: 250 2.1.0 Ok
 In:  rcpt TO:megan
 Out: 451 4.3.0 megan: Temporary lookup failure
 In:  rset
 Out: 250 2.0.0 Ok
 In:  quit
 Out: 221 2.0.0 Bye


For some reason mailman tries to send email to users like megan. This
user does not even exist.

Do you have any ideas what can be wrong?

Thanks in advance,

Alex



-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

--
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 problem

2006-06-19 Thread Uthra Rao
I have configured mailman on a linux (fedora core 4) machine and set up a 
mailing list. I have 4 users subscribed to this mailing list. I am the 
owner of this list and when I send a test messages to this list, the users 
are not getting the test email but I am getting one. As list admin my email 
is different from the email I have as a subscriber. It is working for me 
but not for others?

I also I noticed that /usr/lib/mailman/archives/public directory is empty.

I think I have two cron jobs running one  in /var/spool/cron/mailman and 
another one in /etc/cron.d/mailman

Please let me know how I can troubleshoot this problem.

Thank You.

--
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] mailman problem

2006-06-19 Thread Mark Sapiro
Uthra Rao wrote:

I have configured mailman on a linux (fedora core 4) machine and set up a 
mailing list. I have 4 users subscribed to this mailing list. I am the 
owner of this list and when I send a test messages to this list, the users 
are not getting the test email but I am getting one. As list admin my email 
is different from the email I have as a subscriber. It is working for me 
but not for others?


Are you getting the post as a subscriber or an owner notification at
the owner address?


I also I noticed that /usr/lib/mailman/archives/public directory is empty.



Does your list have public archives? If not, the directory should be
empty. In any case, it contains only symlinks to things in the
archives/private/ directory.


I think I have two cron jobs running one  in /var/spool/cron/mailman and 
another one in /etc/cron.d/mailman


You should have only one. Our standard install instructions tell you to
install cron/crontab.in using crontab as the mailman user. This puts
it in /var/spool/cron/mailman. RedHat rpms install a slightly
different crontab (contatining userid) in /etc/cron.d/mailman. You
want one ot the other, not both.

See
http://www.python.org/cgi-bin/faqw-mm.py?req=showfile=faq03.014.htp.

-- 
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] mailman problem after 2.1.5 - 2.1.7 update

2006-01-27 Thread Hauke Fath
Am 26.01.2006 um 19:06 Uhr +0100 schrieb Brad Knowles:
At 6:46 PM +0100 2006-01-26, Hauke Fath wrote:

  I haven't found a way of tweaking this and assume that the list URLs
  are made up dynamically by the cgi script (rather, binary).

  Does anybody else see this? Any pointers?

   The URLs are probably messed up in your mm_cfg.py (mailman 
configuration) file.  Try posting the contents of that file.

[...]

###
# Here's where we get the distributed defaults.

from Defaults import *

##
# Put YOUR site-specific settings below this line.

# IMPORTANT: Edit the following two definitions to provide the domain
# name of your mail lists, and host name of the Web server.
# (Leave the add_virtualhost line alone.)
#
DEFAULT_EMAIL_HOST = 'spg.tu-darmstadt.de'
DEFAULT_URL_HOST = 'www.spg.tu-darmstadt.de'
add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST)

DEFAULT_URL_PATTERN = 'https://%s/mailman/'
PUBLIC_ARCHIVE_URL = 'https://%(hostname)s/pipermail/%(listname)s'


--  note that the file was not changed since before the update:

[EMAIL PROTECTED] /3mailman/Mailman  ls -l mm_cfg.py
-rw-rw-r--  1 root  mailman  2088 Oct  8  2004 mm_cfg.py

hauke

-- 
/~\  The ASCII Ribbon CampaignHauke Fath
\ /No HTML/RTF in email Institut für Nachrichtentechnik
  X No Word docs in email TU Darmstadt
/ \  Respect for open standards  Ruf +49-6151-16-3281
--
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 problem after 2.1.5 - 2.1.7 update

2006-01-26 Thread Hauke Fath
Hi,

I am seeing a problem with mail/mailman after updating an existing 
2.1.5 installation to 2.1.7nb1. This is a NetBSD pkgsrc setup; an 
update leaves changed config files and the lists database around and 
installs the new binaries, scripts etc., just like you'd do a manual 
update.

Basically, both the .../mailman/listinfo and .../mailman/admin pages 
have the URLs to the existing mailing lists wrong. They look like

a 
href=https://www.spg.tu-darmstadt.de/mailman/listinfo/rt2-praktikum;strongRT2-Praktikum/strong/a/td

-- note the extra pair of quotes between the base URL and the list 
name. Browsers ignore the part after the quote pair.

I haven't found a way of tweaking this and assume that the list URLs 
are made up dynamically by the cgi script (rather, binary).

Does anybody else see this? Any pointers?

hauke

-- 
/~\  The ASCII Ribbon CampaignHauke Fath
\ /No HTML/RTF in email Institut für Nachrichtentechnik
  X No Word docs in email TU Darmstadt
/ \  Respect for open standards  Ruf +49-6151-16-3281
--
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] mailman problem after 2.1.5 - 2.1.7 update

2006-01-26 Thread Brad Knowles
At 6:46 PM +0100 2006-01-26, Hauke Fath wrote:

  I haven't found a way of tweaking this and assume that the list URLs
  are made up dynamically by the cgi script (rather, binary).

  Does anybody else see this? Any pointers?

The URLs are probably messed up in your mm_cfg.py (mailman 
configuration) file.  Try posting the contents of that file.

-- 
Brad Knowles, [EMAIL PROTECTED]

Those who would give up essential Liberty, to purchase a little
temporary Safety, deserve neither Liberty nor Safety.

 -- Benjamin Franklin (1706-1790), reply of the Pennsylvania
 Assembly to the Governor, November 11, 1755

  LOPSA member since December 2005.  See http://www.lopsa.org/.
--
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] mailman problem after 2.1.5 - 2.1.7 update

2006-01-26 Thread Mark Sapiro
Hauke Fath wrote:

Basically, both the .../mailman/listinfo and .../mailman/admin pages
have the URLs to the existing mailing lists wrong. They look like

a 
href=https://www.spg.tu-darmstadt.de/mailman/listinfo/rt2-praktikum;strongRT2-Praktikum/strong/a/td

-- note the extra pair of quotes between the base URL and the list
name. Browsers ignore the part after the quote pair.

I haven't found a way of tweaking this and assume that the list URLs =

are made up dynamically by the cgi script (rather, binary).

The URLs are made dynamically, but not by the binary wrapper. They are
made by the scripts Mailman/Cgi/admin.py and Mailman/Cgi/listinfo.py.

This doesn't seem to be a DEFAULT_URL_PATTERN or list web_page_url
attribute problem. If it were the extra quotes would be between
'mailman' and 'listinfo', not between 'listinfo' and the list name.

The code that makes the
https://www.spg.tu-darmstadt.de/mailman/listinfo part of the URL is
the ScriptURL() function in Mailman/Utils.py and the code that puts it
together with the list name is the GetScriptURL() method in
Mailman/MailList.py, and various methods in Mailman/htmlformat.py make
the actual link, but I don't see anything in this that would add
quotes other than the ones around the whole URL.

I'm puzzled, but perhaps you can look at the specific areas I mention
and see that there's something strange in your version.

-- 
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


[Mailman-Users] Mailman problem

2005-02-01 Thread Matthew R Anderson
Hey guys-

I don't mean to give you such a tough problem but I really need some expert
help here.  I've moved my mailman install across a few servers and as of
recent it's been exhibiting some strange behavior.

Key Problem - Monthly reminders aren't being sent out to some lists; I have
several configured to do so.  I've checked logs/smtp, logs/smtp-failure, and
logs/error and I can't even see an attempt to mail reminders, let alone any
errors to provide an explanation.  In all other regards, lists seem to be
working wonderfully, and I've really not begun to tackle this problem after
2 months because I've been so blessed.

The one thing I can see that seems to coincide with the trouble is that any
action on these lists isn't being properly logged in logs/smtp.  Whereas I
would properly see something logged like so:

Jan 31 00:47:35 2005 (1192) [EMAIL PROTECTED]
smtp for 538 recips, completed in 1.197 seconds

...when I see activity on the questionable lists, I see this:

Feb 01 02:01:36 2005 (1192) n/a smtp for 22 recips, completed in 2.479
seconds

n/a?  :)  I can't seem to locate any explanation for this.  Help!

Furthermore, is there a way to manually generate password reminders?  I'd
like to be able to manually kick out a reminder once I get this all fixed
up.

My configuration of Mailman is v2.1.5, upgraded a few minor revisions after
a more-or-less filewise rsync from the previous host.  It is talking and
receiving mail via some horrible qmail/vpopmail system, and mail is
delivered to the lists via .qmail-list-function aliases in my lists.iddx.net
virtual mail domain.  It works pretty nice, I guess, if it weren't qmail I'd
be happier. :P

Any information you can provide is warmly received and I appreciate the
effort.  Best regards,

-Matt



-
Matthew Anderson
Executor
Internet Distributed Data Exchange - IDDX.NET



--
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/


Re: [Mailman-Users] Mailman problem

2005-02-01 Thread Mark Sapiro
Matthew R Anderson wrote:

Key Problem - Monthly reminders aren't being sent out to some lists; I have
several configured to do so.  I've checked logs/smtp, logs/smtp-failure, and
logs/error and I can't even see an attempt to mail reminders, let alone any
errors to provide an explanation.  In all other regards, lists seem to be
working wonderfully, and I've really not begun to tackle this problem after
2 months because I've been so blessed.

The one thing I can see that seems to coincide with the trouble is that any
action on these lists isn't being properly logged in logs/smtp.  Whereas I
would properly see something logged like so:

Jan 31 00:47:35 2005 (1192) [EMAIL PROTECTED]
smtp for 538 recips, completed in 1.197 seconds

...when I see activity on the questionable lists, I see this:

Feb 01 02:01:36 2005 (1192) n/a smtp for 22 recips, completed in 2.479
seconds

n/a?  :)  I can't seem to locate any explanation for this.  Help!

The n/a means the message object has no message-id attribute. As to
why, I don't know. Is there a Message-Id: header in the posts received
from the list?


Furthermore, is there a way to manually generate password reminders?  I'd
like to be able to manually kick out a reminder once I get this all fixed
up.


Yes. Just run cron/mailpasswds. In fact, to try to diagnose this
further, what happens if you manually run

cron/mailpasswds --listname=list

where list is one of the problem lists?

--
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/


RE: [Mailman-Users] Mailman problem

2005-02-01 Thread Matthew R Anderson
Mark-  Thanks for the reply!

 -Original Message-
 The n/a means the message object has no message-id attribute. As to
 why, I don't know. Is there a Message-Id: header in the posts received
 from the list?

Yes, there's an ID on the outbound posts on the list.  I'm willing to ignore
this for now, though.

 Yes. Just run cron/mailpasswds. In fact, to try to diagnose this
 further, what happens if you manually run
 
 cron/mailpasswds --listname=list
 
 where list is one of the problem lists?

This led me to discover my crontab for user mailman was broken in a very odd
manner.  Wiping it out and installing from crontab.in fixed the problem.
I'm sorry for this being mundane, I half expected the crontab entries to be
managed from mailmanctl and didn't look deeper than seeing if crontab -l
looked as expected.

Big problem solved!  Everyone knows their password now.  Best regards,

-Matt 

--
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/


Re: [Mailman-Users] mailman problem in mandrake 10

2004-12-14 Thread Mark Sapiro
Aris  Santillan wrote:

when it try to send a request to the list this is what i got as a reply


snip

Command output: Groupmismatch error.  Mailman expected the mail
wrapper script to be executed asgroup mail, but the system's mail
server executed the mail script asgroup nogroup.
Try tweaking the mail server to run the script as groupmail,
or re-run configure,  providing the command line option
 `--with-mail-gid=nogroup'.

What more can we tell you?

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

--
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/


[Mailman-Users] mailman problem in mandrake 10

2004-12-14 Thread Aris Santillan

when it try to send a request to the list this is what i got as a reply




Your message did not reach some or all of the intended recipients.

  Subject:  subscribe
  Sent: 12/14/2004 4:23 PM

The following recipient(s) could not be reached:

  [EMAIL PROTECTED] on 12/14/2004 4:13 PM
The e-mail system was unable to deliver the message, but did not 
report a specific reason.  Check the address and try again.  If it still fails, 
contact your system administrator.
 lists2.summitmedia.com.ph #5.0.0 X-Postfix; Command died with 
status 2:/usr/lib/mailman/mail/mailman request mailman. Command output: 
Groupmismatch error.  Mailman expected the mail wrapper script to be 
executed asgroup mail, but the system's mail server executed the mail 
script asgroup nogroup.  Try tweaking the mail server to run the script 
as groupmail, or re-run configure,  providing the command line option
`--with-mail-gid=nogroup'.

--
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/


[Mailman-Users] Mailman Problem URGENT!

2004-09-09 Thread OneSunnyJem23
A client of mine (a PR agency) has Mailman for all of their media 
distrubution lists. Today there was a big problem and somehow people subscribed to a 
list 
somehow sent mail out to it, even though the list is set to only allow mail 
to be sent from 5 designated addresses. A lot of people were not happy, thus 
they kept replying and thus more mail was getting sent out through the list.

I went through and checked the list settings, and I'm 99% sure I have things 
right. I have 5 admin email addresses and set replies to go to the poster. Am 
I missing something?

I set-up a test list, using all of the same settings as the other lists, and 
was able to send mail to the test list from an address subscribed to it even 
though it is not an admin email address. I replied to it and that mail got 
through, too. When trying to send from an address not subscribed and not an admin, 
it was rejected - which is good.

Can someone tell me if I am missing something? I need to set the lists so 
ONLY the admin addresses can send to the lists and no one else.

Thanks!







--
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/


Re: [Mailman-Users] Mailman Problem URGENT!

2004-09-09 Thread Mark Sapiro
[EMAIL PROTECTED] wrote:

Can someone tell me if I am missing something? I need to set the lists so 
ONLY the admin addresses can send to the lists and no one else.


Visit the FAQ wizard at
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
and read article 3.11

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

--
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/


[Mailman-Users] Mailman problem. Please help!

2004-08-10 Thread Iavor Jelev
Hi,

I am really desperate. I have installed mailman on
SuSE 9.1 with postfix and I can create new mailing
lists with the web-interface. Then I can see on the 
listinfo-page the list I created, but I don't get
the Mailing list created confirm mail. when I try to
subscribe a mailing list I don't get  the subscription
confirm either. I thought it was because of postfix,
but I tried sendmail and exim and it still didn't
work. Besides I have a installed 
gforge, and when I create an account there I get a
confirm mail. So what do I do wrong? My machine isn't
connected directly to the internet, but I still 
should get the confirm e-mail at
[EMAIL PROTECTED], right? 
Anyone suggestions? Thanx!




___
Gesendet von Yahoo! Mail - Jetzt mit 100MB Speicher kostenlos - Hier anmelden: 
http://mail.yahoo.de
--
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/


[Mailman-Users] mailman problem

2004-08-08 Thread Christophe Mailhebuau
Hi have a problem with my mailman installation, can you help me ?


-- 
Cordialement,
Christophe Mailhebuauhttp://www.justlinux.org
   http://www.abul.org
GPG: 1024D/75B07F8D: BD18 2D01 D954 A339 E35B 9EA1 4240 0410 75B0 7F8D
--
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/


Re: [Mailman-Users] mailman problem

2004-08-08 Thread Brad Knowles
At 10:19 AM +0200 2004-08-07, Christophe Mailhebuau wrote:
 Hi have a problem with my mailman installation, can you help me ?
See http://www.python.org/cgi-bin/faqw-mm.py?req=showfile=faq01.022.htp.
--
Brad Knowles, [EMAIL PROTECTED]
Those who would give up essential Liberty, to purchase a little
temporary Safety, deserve neither Liberty nor Safety.
-- Benjamin Franklin (1706-1790), reply of the Pennsylvania
Assembly to the Governor, November 11, 1755
  SAGE member since 1995.  See http://www.sage.org/ for more info.
--
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/


[Mailman-Users] Mailman problem caused by machine crash. What's corrupt?

2004-08-05 Thread Garey Mills

Hi -

I've been running Mailman 2.1b2 for a year or so without a hitch;
but a couple of days ago the machine was literally inadvertently unplugged
from the wall (actually, they lost power to our whole data center with the
UPS offline). Since, the problem below has shown up. I'm sure that there
is some corrupt data, but I don't know where to start looking. Any
pointers?


Bug in Mailman version 2.1b2

We're sorry, we hit a bug!

If you would like to help us identify the problem, please email a copy of
this page to the webmaster for this site with a description of what
happened. Thanks!
Traceback:

Traceback (most recent call last):
  File /usr/local/mailman/scripts/driver, line 82, in run_main
main()
  File /usr/local/mailman/Mailman/Cgi/admindb.py, line 81, in main
mlist = MailList.MailList(listname, lock=0)
  File /usr/local/mailman/Mailman/MailList.py, line 101, in __init__
self.Load()
  File /usr/local/mailman/Mailman/MailList.py, line 545, in Load
dict, e = self.__load(file)
  File /usr/local/mailman/Mailman/MailList.py, line 518, in __load
dict = loadfunc(fp)
UnpicklingError: invalid load key, '`'.

=


Thanks in advance;

Garey Mills
Library Systems Office
UC Berkeley

The brain is not where you think


--
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/


[Mailman-Users] mailman problem

2004-05-18 Thread mehmood hasan
Hi
I configured the mailman, I am facing some problems like that,
Creation of new mail list is successfull and it also subscribe users added 
for that list and confirm their subscription through e-mail
but when I send e-mail [EMAIL PROTECTED] to the list cit created the 
following error occures


The original message was received at
Tue, 18 May 2004 17:47:36 +0600
from [192.168.1.228]
  - The following addresses had permanent fatal errors -
|/usr/local/mailman/mail/mailman post cit
   (reason: Service unavailable)
   (expanded from: [EMAIL PROTECTED])

I edit the  /usr/local/mailman/Mailman/mm_cfg.py like that
IMAGE_LOGOS = '/html/'
DEFAULT_EMAIL_HOST = 'uaar.edu.pk'
DEFAULT_URL_HOST = 'mail.uaar.edu.pk'
add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST)
and made the following enteries in /etc/httpd/conf/httpd.conf file
##Mailman Aliases
ScriptAlias /mailman/ /usr/local/mailman/cgi-bin/
Alias /pipermail/ /usr/local/mailman/archives/public/
Directory /usr/local/mailman/archives/public
 Options FollowSymLinks
/Directory
Is their any solution for my problem
_
MSN 8 with e-mail virus protection service: 2 months FREE* 
http://join.msn.com/?page=features/virus

--
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/


Re: [Mailman-Users] mailman problem

2004-05-18 Thread Brad Knowles
At 5:01 PM +0500 2004/05/18, mehmood hasan wrote:
 
 The original message was received at
 Tue, 18 May 2004 17:47:36 +0600
 from [192.168.1.228]
   - The following addresses had permanent fatal errors -
 |/usr/local/mailman/mail/mailman post cit
(reason: Service unavailable)
(expanded from: [EMAIL PROTECTED])
 
	This is a problem with your MTA.  You need to fix that, so that 
the aliases will now work.  Instructions for doing this sort of thing 
with various popular MTAs are included with Mailman, in the 
appropriate README.WHATEVER files.

--
Brad Knowles, [EMAIL PROTECTED]
They that can give up essential liberty to obtain a little temporary
safety deserve neither liberty nor safety.
-Benjamin Franklin, Historical Review of Pennsylvania.
  SAGE member since 1995.  See http://www.sage.org/ for more info.
--
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/


[Mailman-Users] mailman problem

2004-04-23 Thread training
I set up mailman and its web front, everything looks fine, except when I 
send a test email to my list alias, there
is no email in the pending list

mydomain is also my list name, and in my /etc/passwd I do have a user named
mydomain
qrunner log:
Apr 22 22:20:56 2004 (9731) post to mydomain from 
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED], 
size=1701, 
message-id=[EMAIL PROTECTED], 1 failures

smtp log:

Apr 22 22:20:56 2004 (9731) 
[EMAIL PROTECTED]
smtp for 1 recips, completed in 189.191 seconds

smtp-failure log:

Apr 22 22:20:56 2004 (9731) Low level smtp error: (110, 'Connection 
timed out'), msgid: [EMAIL PROTECTED]
Apr 22 22:20:56 2004 (9731) delivery to [EMAIL PROTECTED] failed with 
code -1: (110, 'Connection timed out')

What is the problem here?

Thx,HTM





--
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/


[Mailman-Users] Mailman problem on Debian

2004-01-05 Thread Trey Nolen
I had to do an update on one of our unstable machines today. It is (was)
running Mailman. Now, when I run Mailman, I get this:

--begin errors
mail2:/etc/mailman# /etc/init.d/mailman start
Traceback (most recent call last):
  File /var/lib/mailman/bin/list_lists, line 47, in ?
from Mailman import MailList
  File /var/lib/mailman/Mailman/MailList.py, line 49, in ?
from Mailman.Archiver import Archiver
  File /var/lib/mailman/Mailman/Archiver/__init__.py, line 17, in ?
from Archiver import *
  File /var/lib/mailman/Mailman/Archiver/Archiver.py, line 31, in ?
from Mailman import Mailbox
  File /var/lib/mailman/Mailman/Mailbox.py, line 25, in ?
from email.Generator import Generator
  File /usr/lib/python2.3/email/Generator.py, line 16, in ?
from email.Header import Header
  File /usr/lib/python2.3/email/Header.py, line 41, in ?
USASCII = Charset('us-ascii')
  File /usr/lib/python2.3/email/Charset.py, line 220, in __init__
input_charset = _ascii_lower()
TypeError: _ascii_lower() takes exactly 1 argument (0 given)
Site list for mailman (usually named mailman) missing
Please create it; until then, mailman will refuse to start

--end errors

This occurred after an update on Debian unstable.  There *IS* a sitewide
list named mailman, so I don't know why it says that it is missing.  This is
Mailman 2.1.3.  Any ideas?



Trey Nolen


--
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] Mailman problem on Debian

2004-01-05 Thread Erick Mechler
:: TypeError: _ascii_lower() takes exactly 1 argument (0 given)
:: Site list for mailman (usually named mailman) missing
:: Please create it; until then, mailman will refuse to start
:: 
:: --end errors
:: 
:: This occurred after an update on Debian unstable.  There *IS* a sitewide
:: list named mailman, so I don't know why it says that it is missing.  This is
:: Mailman 2.1.3.  Any ideas?

What is the value of MAILMAN_SITE_LIST in Defaults.py and mm_cfg.py?  Does 
it match the name of your MM Site List?

--
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


[Mailman-Users] Mailman problem on Debian

2004-01-04 Thread Trey Nolen
I had to do an update on one of our unstable machines today. It is (was)
running Mailman. Now, when I run Mailman, I get this:

--begin errors
mail2:/etc/mailman# /etc/init.d/mailman start
Traceback (most recent call last):
  File /var/lib/mailman/bin/list_lists, line 47, in ?
from Mailman import MailList
  File /var/lib/mailman/Mailman/MailList.py, line 49, in ?
from Mailman.Archiver import Archiver
  File /var/lib/mailman/Mailman/Archiver/__init__.py, line 17, in ?
from Archiver import *
  File /var/lib/mailman/Mailman/Archiver/Archiver.py, line 31, in ?
from Mailman import Mailbox
  File /var/lib/mailman/Mailman/Mailbox.py, line 25, in ?
from email.Generator import Generator
  File /usr/lib/python2.3/email/Generator.py, line 16, in ?
from email.Header import Header
  File /usr/lib/python2.3/email/Header.py, line 41, in ?
USASCII = Charset('us-ascii')
  File /usr/lib/python2.3/email/Charset.py, line 220, in __init__
input_charset = _ascii_lower()
TypeError: _ascii_lower() takes exactly 1 argument (0 given)
Site list for mailman (usually named mailman) missing
Please create it; until then, mailman will refuse to start

--end errors

This occurred after an update on Debian unstable.  There *IS* a sitewide
list named mailman, so I don't know why it says that it is missing.  This is
Mailman 2.1.3.  Any ideas?



Trey Nolen


--
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] Mailman problem on Debian

2004-01-04 Thread John A. Martin
 Trey == Trey Nolen
 [Mailman-Users] Mailman problem on Debian
  Sun, 4 Jan 2004 11:50:52 -0600

Trey I had to do an update on one of our unstable machines
Trey today. It is (was) running Mailman. Now, when I run Mailman,
Trey I get this:

Trey --begin errors mail2:/etc/mailman# /etc/init.d/mailman start
Trey Traceback (most recent call last):
Trey   File /var/lib/mailman/bin/list_lists, line 47, in ?
Trey from Mailman import MailList
Trey   File /var/lib/mailman/Mailman/MailList.py, line 49, in ?
Trey from Mailman.Archiver import Archiver
Trey   File /var/lib/mailman/Mailman/Archiver/__init__.py, line
Trey   17, in ?
Trey from Archiver import *
Trey   File /var/lib/mailman/Mailman/Archiver/Archiver.py, line
Trey   31, in ?
Trey from Mailman import Mailbox
Trey   File /var/lib/mailman/Mailman/Mailbox.py, line 25, in ?
Trey from email.Generator import Generator
Trey   File /usr/lib/python2.3/email/Generator.py, line 16, in
Trey   ?
Trey from email.Header import Header
Trey   File /usr/lib/python2.3/email/Header.py, line 41, in ?
Trey USASCII = Charset('us-ascii')
Trey   File /usr/lib/python2.3/email/Charset.py, line 220, in
Trey   __init__
Trey input_charset = _ascii_lower()
Trey TypeError: _ascii_lower() takes exactly 1 argument (0 given)
Trey Site list for mailman (usually named mailman) missing Please
Trey create it; until then, mailman will refuse to start

That looks the same as Debian Bug #226086

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=226086

I believe Debian users are better served by looking first at Debian
Bugs and bugging the Debian package before going upstream.  I am
under the impression that most Debian packagers prefer that and that
the Debian packagers will pass bugs upstream when appropriate.

In this case we have

,[ Message received at [EMAIL PROTECTED]: ]
Received: (at 226086) by bugs.debian.org; 4 Jan 2004 17:15:52 +
From [EMAIL PROTECTED] Sun Jan 04 11:15:50 2004
To: John A. Martin [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: Re: Bug#226086: mailman: dpkg-reconfigure mailman TypeError
From: Tollef Fog Heen [EMAIL PROTECTED]
Date: Sun, 04 Jan 2004 14:38:53 +0100

[snip bug report]

This is a bug in the newest python package; reassigning.
`

HTH

jam



pgp0.pgp
Description: PGP signature
--
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


[Mailman-Users] MailMan Problem -No template file found-

2003-12-28 Thread Carlos andres Becerra
Hi. I'm install RPM  mailman-2.1.2-9mdk.i586.rpm 
Next, i modify in the mm_cfg.py 

DEFAULT_EMAIL_HOST = 'ccasoft.org'
DEFAULT_URL_HOST = 'ccasoft.org'
add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST)
MTA = 'Postfix'

and create new mailman list, by have this error:

Bug in Mailman version 2.1.2

We're sorry, we hit a bug!

If you would like to help us identify the problem,
please email a copy of this page to the webmaster for
this site with a description of what happened. Thanks!

Traceback:


Traceback (most recent call last):
  File /usr/lib/mailman/scripts/driver, line 87, in
run_main
main()
  File /usr/lib/mailman/Mailman/Cgi/listinfo.py,
line 61, in main
list_listinfo(mlist, language)
  File /usr/lib/mailman/Mailman/Cgi/listinfo.py,
line 202, in list_listinfo
doc.AddItem(mlist.ParseTags('listinfo.html',
replacements, lang))
  File /usr/lib/mailman/Mailman/HTMLFormatter.py,
line 354, in ParseTags
text = Utils.maketext(template, raw=1, lang=lang,
mlist=self)
  File /usr/lib/mailman/Mailman/Utils.py, line 467,
in maketext
raise IOError(errno.ENOENT, 'No template file
found', templatefile)
IOError: [Errno 2] No template file found:
'listinfo.html'



The list is install in
http://xunilombia.ccasoft.org/mailman/listinfo

If you like look all errors

Thanks for your help


Carlos Andres
http://xunilombia.ccasoft.org 

___
Yahoo! Messenger - Nueva versión GRATIS
Super Webcam, voz, caritas animadas, y más...
http://messenger.yahoo.es

--
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


[Mailman-Users] Mailman problem

2003-08-14 Thread Ms E. Boshoff
Dear sir,

I have the following problem:  When I tried to creat a www.nied.edu.na mailing list 
the program told me that I am not authorized to create a new mailing list - what am I 
suppose to do?  Our organisation want to use this program and I will be the listowner.

Kind regards,
Ms. Elbe Boshoff
--
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


[Mailman-Users] Mailman problem - All lists post to MAILMANadministrative

2003-06-03 Thread Alessandro Luiz Petrocino
Hello, fellows !

First of all, sorry for my terrible english.
I'm a brazilian system analist, of State University of Campinas
(UNICAMP)

Well, let's rock ! :-)
I have Mailman v. 2.1.2 + Postfix installed in a server.
Well ... when someone post to a list, don't no why the same message is
posted to the
MAILMAN list (the administrative one, needed to install the Mailman
software)

Those users are not subscrived in this list, of couse!
And they receive administrative messages too.

Anyone can solve this ?!?

Tks a lot !
--
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] Mailman problem

2002-11-11 Thread Jon Carnes
On Sun, 2002-11-10 at 19:44, Johnathon B. Allread - East Coast Computers
wrote:

  FAQ entry 3.14 section 2
 
 Which web site is this from?  I am looking at: 
 
 http://www.gnu.org/software/mailman/faq.html  
 
 not sure what you are referring to.  I see a couple of website
 pertaining to mailman.  What is the offical website?

Look at the bottom of every email that comes from the list:
  http://www.python.org/cgi-bin/faqw-mm.py

 
  
  BTW: the FAQ is open source.  Feel free to adjust it so others who
  follow will have an easier time...
 
 Sounds great, I will.  However, I believe the developers should edit the
 new list script to tell the user to edit the aliases file so this list
 won't have so many posts about the same problem.  Since most new users
 to a mailing list such as myself, don't know how Mailman interacts with
 the MTA.  Now that I know, I will educate the other members of my Unix
 user group.  

RTFM... use: newlist -o /etc/aliases

Or substitute the newlist command with your own script:
  #! /bin/bash
  # newlst: script to run Mailman's newlist command
  # but automatically put the output into my aliases
  # file and then run newaliases
  # For this script to runs newaliases you must execute
  # it as root (or give mailman sudo access to newalaises)
  ~mailman/bin/newlist -o /etc/aliases $1 $2 $3
  newaliases

===
Here is the help information for the newlist command:
~mailman/bin/newlist -h

Create a new, unpopulated mailing list.

Usage: newlist [options] listname listadmin-addr admin-password

Options:

-q
--quiet
Normally the administrator is notified by email (after a prompt)
that
their list has been created.  This option suppresses that
notification and the prompting.

-o file
--output=file
Append the alias setting recommendations to file, in addition to
printing them to standard output.

-h/--help
Print this help text and exit.

You can specify as many of the arguments as you want on the command
line: you will be prompted for the missing ones.

Note that listnames are forced to lowercase.
===
 
 Thanks for the insight.
 
 Johnathon B. Allread
 East Coast Computers
 http://www.eastcoast-pc.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
 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/jonc%40nc.rr.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
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/

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



[Mailman-Users] Mailman problem

2002-11-10 Thread Johnathon B. Allread
Hello all,

I just subscribed to the list and I am in need of some help.  I just
installed Mailman off of the Mandrake 9.0 disc set and went to
/var/lib/mailman/bin/ and executed newlist and added a list called test1. 
As list owner, I received an email stating that the list has been created.
 I added a couple of users.  I tried sending an email to
[EMAIL PROTECTED] and my mail server sent a reply unknown user.  I am
using postfix for my mail server.  Any ideas why I got this message
instead of it going to the list?

Thanks for the help.



-- 
Johnathon B. Allread
A+, MCP, MCSA, Linux User
East Coast Computers
1902 Colley Avenue
Norfolk, VA 23517-1613
http://www.eastcoast-pc.com
PH   757-313-7582
FX   757-313-7587
Cell 757-235-5629
You don't need Windows to see the world




--
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: archive@jab.org
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org



Re: [Mailman-Users] Mailman problem

2002-11-10 Thread Jacek Wojaczynski
Sunday, 10 Nov 2002 at 11:33 Johnathon B. Allread wrote:

  I added a couple of users.  I tried sending an email to
 [EMAIL PROTECTED] and my mail server sent a reply unknown user.  I am
 using postfix for my mail server.  Any ideas why I got this message
 instead of it going to the list?

Have you added the appropriate aliases?

-- 
kocurek

--
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: archive@jab.org
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org



Re: [Mailman-Users] Mailman problem

2002-11-10 Thread Johnathon B. Allread -
On Sun, 2002-11-10 at 11:39, Jacek Wojaczynski wrote:
 Sunday, 10 Nov 2002 at 11:33 Johnathon B. Allread wrote:
 
   I added a couple of users.  I tried sending an email to
  [EMAIL PROTECTED] and my mail server sent a reply unknown user.  I am
  using postfix for my mail server.  Any ideas why I got this message
  instead of it going to the list?
 
 Have you added the appropriate aliases?
 
 -- 
 kocurek


Are you refering to aliases in the /etc/postfix/aliases file?  If so,
where should the alias for test1 point to?

Thanks for the help.

Johnathon B. Allread


--
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: archive@jab.org
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org



Re: [Mailman-Users] Mailman problem

2002-11-10 Thread Jacek Wojaczynski
Sunday, 10 Nov 2002 at 12:00 Johnathon B. Allread -  East Coast Computers wrote:
   [EMAIL PROTECTED] and my mail server sent a reply unknown user.  I am
   using postfix for my mail server.  Any ideas why I got this message
   instead of it going to the list?
  Have you added the appropriate aliases?
 Are you refering to aliases in the /etc/postfix/aliases file?  If so,
 where should the alias for test1 point to?

What version of Mailman do you use? 2.0 or 2.1?
I used to have some aliases for /etc/postfix/aliases - exactly 
those which Mailman told me to create. It's in the manual.

PS. Don't forget about newaliases command after adding aliases
to /etc/postfix/aliases.
-- 
kocurek

--
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: archive@jab.org
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org



Re: [Mailman-Users] Mailman problem

2002-11-10 Thread Johnathon B. Allread -
On Sun, 2002-11-10 at 12:16, Jacek Wojaczynski wrote:
 Sunday, 10 Nov 2002 at 12:00 Johnathon B. Allread -  East Coast Computers wrote:
[EMAIL PROTECTED] and my mail server sent a reply unknown user.  I am
using postfix for my mail server.  Any ideas why I got this message
instead of it going to the list?
   Have you added the appropriate aliases?
  Are you refering to aliases in the /etc/postfix/aliases file?  If so,
  where should the alias for test1 point to?
 
 What version of Mailman do you use? 2.0 or 2.1?
 I used to have some aliases for /etc/postfix/aliases - exactly 
 those which Mailman told me to create. It's in the manual.
 
 PS. Don't forget about newaliases command after adding aliases
 to /etc/postfix/aliases.
 -- 

I am using version 2.013.  I know the newaliases command.  You mention
manual, however, I can't seem to find it on the web.  A manual will help
a lot.

Thanks,

Johnathon 


--
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: archive@jab.org
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org



Re: [Mailman-Users] Mailman problem

2002-11-10 Thread Jacek Wojaczynski
Sunday, 10 Nov 2002 at 12:24 Johnathon B. Allread -  East Coast
Computers wrote:

  What version of Mailman do you use? 2.0 or 2.1?
  I used to have some aliases for /etc/postfix/aliases - exactly 
  those which Mailman told me to create. It's in the manual.
  PS. Don't forget about newaliases command after adding aliases
  to /etc/postfix/aliases.
 I am using version 2.013.  I know the newaliases command.  You mention
 manual, however, I can't seem to find it on the web.  A manual will help
 a lot.

Well... from the manual (the INSTALL file):

- Running newlist will generate a list of aliases that must be
  added to the system.  If you are running Sendmail, you may add
  the lines output directly to the file /etc/aliases.  You may
  need to run the command 'newaliases' (all as root).  Now the
  mailing address for your list as well as its administrative
  addresses will be set up.  If you are not running Sendmail,
  consult your MTA's documentation for information on adding
  aliases.
-- 
kocurek

--
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: archive@jab.org
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org



Re: [Mailman-Users] Mailman problem

2002-11-10 Thread Jeremy Portzer
On Sun, 2002-11-10 at 12:00, Johnathon B. Allread - East Coast Computers
wrote:
 On Sun, 2002-11-10 at 11:39, Jacek Wojaczynski wrote:
  Sunday, 10 Nov 2002 at 11:33 Johnathon B. Allread wrote:
  
I added a couple of users.  I tried sending an email to
   [EMAIL PROTECTED] and my mail server sent a reply unknown user.  I am
   using postfix for my mail server.  Any ideas why I got this message
   instead of it going to the list?
  
  Have you added the appropriate aliases?
  
 
 Are you refering to aliases in the /etc/postfix/aliases file?  If so,
 where should the alias for test1 point to?
 

When you ran the newlist command, it should have generated a list of
aliases, formatted exactly for the aliases file.  Did newlist generate
this output on your system?  If so, any particular reason why you
ignored it?  I'm not trying to be snide, I'm just wondering if there's
some way this step could be improved -- there are many many queries
every week with people who ignore the alias-creation step, and I'm
wondering why.  As far as I know, there's nothing in the output of
newlist that says alias-creation is optional. :-)

--Jeremy


--
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: archive@jab.org
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org



Re: [Mailman-Users] Mailman problem

2002-11-10 Thread Johnathon B. Allread -
 
 When you ran the newlist command, it should have generated a list of
 aliases, formatted exactly for the aliases file.  Did newlist generate
 this output on your system?

Now that you mention it:

Entry for aliases file:

## list2 mailing list
## created: 10-Nov-2002 root
list2:   |/var/lib/mailman/mail/wrapper post list2
list2-admin: |/var/lib/mailman/mail/wrapper mailowner
list2
list2-request:   |/var/lib/mailman/mail/wrapper mailcmd list2
list2-owner: list2-admin

 If so, any particular reason why you
 ignored it?

I didn't ignore it, it states Entry for aliases file  It should read
Ensure you add the following information to your Aliases file for
mailman to work

  I'm not trying to be snide, 

Well, your comment seems pretty snide...  Mailman seems to be a great
program since I figured out what I needed to do.  The documentation
seems lacking, but I can't complain since there is a mailing list
devoted to it.

I'm just wondering if there's
 some way this step could be improved -- there are many many queries
 every week with people who ignore the alias-creation step, and I'm
 wondering why.  

Well the reason would be that the alias-creation step doesn't tell you
to edit the aliases file (see comment above).  I mentioned how to
improve the wording.  What would be a great help is to add this
re-occurring problem to the FAQ.  I looked and didn't see it.


As far as I know, there's nothing in the output of
 newlist that says alias-creation is optional. :-)

Then again, nothing says to edit the file either.  It looks as if it
just states alias information.  I am sure there is a way to change the
script to edit the alias file automatically.  Nothing is impossible...

BTW, thanks for the info...  It is what I needed to get Mailman to work.

Johnathon B. Allread
East Coast Computers
1902 Colley Avenue
Norfolk, VA 23517
http://www.eastcoast-pc.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
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/

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



Re: [Mailman-Users] Mailman problem

2002-11-10 Thread Jon Carnes
On Sun, 2002-11-10 at 13:17, Johnathon B. Allread - East Coast Computers
wrote:

 
 Well, your comment seems pretty snide...  Mailman seems to be a great
 program since I figured out what I needed to do.  The documentation
 seems lacking, but I can't complain since there is a mailing list
 devoted to it.

Hmmm, Jeremy's mail seemed pretty nice to me - especially since he hit
the mark on your problem.  In light of that, your statement seems much
more snide.
 
 I'm just wondering if there's
  some way this step could be improved -- there are many many queries
  every week with people who ignore the alias-creation step, and I'm
  wondering why.  
 
 Well the reason would be that the alias-creation step doesn't tell you
 to edit the aliases file (see comment above).  I mentioned how to
 improve the wording.  What would be a great help is to add this
 re-occurring problem to the FAQ.  I looked and didn't see it.
 
FAQ entry 3.14 section 2

BTW: the FAQ is open source.  Feel free to adjust it so others who
follow will have an easier time...



--
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: archive@jab.org
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org



Re: [Mailman-Users] Mailman problem

2002-11-10 Thread Johnathon B. Allread -
On Sun, 2002-11-10 at 18:43, Jon Carnes wrote:
 
 Hmmm, Jeremy's mail seemed pretty nice to me - especially since he hit
 the mark on your problem.  In light of that, your statement seems much
 more snide.

Which comment seemed like that?  I explain the reason why I ignored
the alias creation step.  Nothing said to edit the aliases file.

  
 FAQ entry 3.14 section 2

Which web site is this from?  I am looking at: 

http://www.gnu.org/software/mailman/faq.html  

not sure what you are referring to.  I see a couple of website
pertaining to mailman.  What is the offical website?

 
 BTW: the FAQ is open source.  Feel free to adjust it so others who
 follow will have an easier time...

Sounds great, I will.  However, I believe the developers should edit the
new list script to tell the user to edit the aliases file so this list
won't have so many posts about the same problem.  Since most new users
to a mailing list such as myself, don't know how Mailman interacts with
the MTA.  Now that I know, I will educate the other members of my Unix
user group.  

Thanks for the insight.

Johnathon B. Allread
East Coast Computers
http://www.eastcoast-pc.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
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/

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



Re: [Mailman-Users] Mailman problem

2002-11-10 Thread Jeremy Portzer
On Sun, 2002-11-10 at 13:17, Johnathon B. Allread - East Coast Computers
wrote:
 [EMAIL PROTECTED] wrote:

 As far as I know, there's nothing in the output of
  newlist that says alias-creation is optional. :-)
 
 Then again, nothing says to edit the file either.  It looks as if it
 just states alias information.  

I understand your point.  It should say something like You must now add
these aliases to your alias file instead of just stating that they are
aliases.  Hopefully some developer-types are listening and could
consider rewording this in a future version?

 I am sure there is a way to change the
 script to edit the alias file automatically.  Nothing is impossible...

Given the multitudes of MTAs, locations of alias files, etc, I'm not
sure that's such a good idea.  But for sysadmin's who create a lot of
lists, it might be feasible to develop a script to do such on your own
system.  (The aliases are pretty formulaic anyway.)

Sorry for my snide-ness... but glad this got things fixed for you!

--Jeremy


--
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: archive@jab.org
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org



Re: [Mailman-Users] Mailman problem

2002-11-10 Thread Jeremy Portzer
On Sun, 2002-11-10 at 19:44, Johnathon B. Allread - East Coast Computers
wrote:
 On Sun, 2002-11-10 at 18:43, Jon Carnes wrote:
  
  FAQ entry 3.14 section 2
 
 Which web site is this from?  I am looking at: 
 
 http://www.gnu.org/software/mailman/faq.html  
 
 not sure what you are referring to.  I see a couple of website
 pertaining to mailman.  What is the offical website?

Look at the very top of that web page, just below the header.  You'll
see a link marked See also the Mailman FAQ Wizard for more
information. -- links to http://www.python.org/cgi-bin/faqw-mm.py where
you can lookup the 3.14 question Jon referred to.

I agree that mailman does seem to have multiple FAQs and multiple web
sites -- list.org, gnu.org/software/mailman, the sourceforge project,
and various things are on python.org like this mailing list and the FAQ
wizard.  I think it would be less confusing to consolidate everything,
preferably to list.org.  But this is a volunteer project and people
contribute when they can!

--Jeremy


--
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: archive@jab.org
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org



[Mailman-Users] Mailman problem with Python upgrade

2002-05-21 Thread Kory Wheatley

I've install mailman 2.0.11 on Red Hat 7.2 and it was working fine until
I upgrade to Python 2.1. Once I upgraded to this version everything
seemed fine for 5 hours. I was able to receive messages from my mailing
lists at our University. The Web Interface administrator options for the
lists all worked fine. Then messages started piling in qfiles and it
would not send anymore messages out. I moved them out of the queue and
started moving them back in one at a time and then again the messages
seemed to be sent properly, but then they started piling back up in the
qfiles directory again .   Here is the errors I received in the error
logfile. I'm not totally efficient on Python yet, so I would like some
help I would appreciate it. (Quite a few messages on CORRUPTED ARCHIVES
and module regex not found)

ERROR LOG FILE

May 21 10:20:01 2002 qrunner(31161): Traceback (most recent call last):
May 21 10:20:01 2002 qrunner(31161):   File
/home/mailman/Mailman/Archiver/Archiver.py, line 219, in ArchiveMail
May 21 10:20:01 2002 qrunner(31161): import HyperArch
May 21 10:20:01 2002 qrunner(31161):   File
/home/mailman/Mailman/Archiver/HyperArch.py, line 47, in ?
May 21 10:20:01 2002 qrunner(31161): from Mailman import EncWord
May 21 10:20:01 2002 qrunner(31161):   File
/home/mailman/Mailman/EncWord.py, line 21, in ?
May 21 10:20:01 2002 qrunner(31161): import base64
May 21 10:20:01 2002 qrunner(31161):   File
/tmp/32444-i386/install/usr/lib/python2.1/base64.py, line 7, in ?
May 21 10:20:01 2002 qrunner(31161): import binascii
May 21 10:20:01 2002 qrunner(31161): ImportError: No module named
binascii
May 21 10:20:01 2002 (31161) CORRUPT ARCHIVE FOR LIST: libstaff
May 21 10:20:02 2002 qrunner(31161): Traceback (most recent call last):
May 21 10:20:02 2002 qrunner(31161):   File
/home/mailman/Mailman/Archiver/Archiver.py, line 220, in ArchiveMail
May 21 10:20:02 2002 qrunner(31161): h =
HyperArch.HyperArchive(self)
May 21 10:20:02 2002 qrunner(31161): AttributeError:
'Mailman.Archiver.HyperArch' module has no attribute 'HyperArchive'
May 21 10:20:02 2002 (31161) CORRUPT ARCHIVE FOR LIST: relief
May 21 10:20:02 2002 qrunner(31161): Traceback (most recent call last):
May 21 10:20:02 2002 qrunner(31161):   File
/home/mailman/Mailman/Archiver/Archiver.py, line 220, in ArchiveMail
May 21 10:20:02 2002 qrunner(31161): h =
HyperArch.HyperArchive(self)
May 21 10:20:02 2002 qrunner(31161): AttributeError:
'Mailman.Archiver.HyperArch' module has no attribute 'HyperArchive'
May 21 10:20:02 2002 (31161) CORRUPT ARCHIVE FOR LIST: ultimate
May 21 10:22:01 2002 qrunner(31203): Traceback (most recent call last):
May 21 10:22:01 2002 qrunner(31203):   File
/home/mailman/Mailman/Archiver/Archiver.py, line 219, in ArchiveMail
May 21 10:22:01 2002 qrunner(31203): import HyperArch
May 21 10:22:01 2002 qrunner(31203):   File
/home/mailman/Mailman/Archiver/HyperArch.py, line 47, in ?
May 21 10:22:01 2002 qrunner(31203): from Mailman import EncWord
May 21 10:22:01 2002 qrunner(31203):   File
/home/mailman/Mailman/EncWord.py, line 21, in ?
May 21 10:22:01 2002 qrunner(31203): import base64
May 21 10:22:01 2002 qrunner(31203):   File
/tmp/32444-i386/install/usr/lib/python2.1/base64.py, line 7, in ?
May 21 10:22:01 2002 qrunner(31203): import binascii
May 21 10:22:01 2002 qrunner(31203): ImportError: No module named
binascii
May 21 10:22:01 2002 (31203) CORRUPT ARCHIVE FOR LIST: korymail
May 21 10:28:01 2002 qrunner(31258): Traceback (most recent call last):
May 21 10:28:01 2002 qrunner(31258):   File
/home/mailman/Mailman/Archiver/Archiver.py, line 219, in ArchiveMail
May 21 10:28:01 2002 qrunner(31258): import HyperArch
May 21 10:28:01 2002 qrunner(31258):   File
/home/mailman/Mailman/Archiver/HyperArch.py, line 47, in ?
May 21 10:28:01 2002 qrunner(31258): from Mailman import EncWord
May 21 10:28:01 2002 qrunner(31258):   File
/home/mailman/Mailman/EncWord.py, line 21, in ?
May 21 10:28:01 2002 qrunner(31258): import base64
May 21 10:28:01 2002 qrunner(31258):   File
/tmp/32444-i386/install/usr/lib/python2.1/base64.py, line 7, in ?
May 21 10:28:01 2002 qrunner(31258): import binascii
May 21 10:28:01 2002 qrunner(31258): ImportError: No module named
binascii
May 21 10:28:01 2002 (31258) CORRUPT ARCHIVE FOR LIST: ccaus
May 21 10:34:00 2002 qrunner(31303): Traceback (most recent call last):
May 21 10:34:00 2002 qrunner(31303):   File
/home/mailman/Mailman/Archiver/Archiver.py, line 219, in ArchiveMail
May 21 10:34:01 2002 qrunner(31303): import HyperArch
May 21 10:34:01 2002 qrunner(31303):   File
/home/mailman/Mailman/Archiver/HyperArch.py, line 47, in ?
May 21 10:34:01 2002 qrunner(31303): from Mailman import EncWord
May 21 10:34:01 2002 qrunner(31303):   File
/home/mailman/Mailman/EncWord.py, line 21, in ?
May 21 10:34:01 2002 qrunner(31303): import base64
May 21 10:34:01 2002 qrunner(31303):   File
/tmp/32444-i386/install/usr/lib/python2.1/base64.py, line 7, in ?
May 21 

[Mailman-Users] mailman problem

2002-05-10 Thread Graham Lillico

Hi,

I have just install mailman 2.0.10 on FreeBSD and I seem to be having a 
small problem.

I have managed to get in install OK and I can send and receive messages from 
the lists I have created, but when I goto http://server/mailman/listinfo/ is 
says There currently are no publicly-advertised mailman mailing lists 
however looking at the privacy options f the lists I have created the 
Advertise this list when people ask what lists are on this machine is set 
to Yes, but when I goto http://server/mailman/admin/ is shows me a list of 
the publicly advertised mailing lists.

Does anyone have any idea why I cannot display these lists on the listinfo 
page?

Regards

Graham Lillico


_
MSN Photos is the easiest way to share and print your photos: 
http://photos.msn.com/support/worldwide.aspx



--
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 problem - gid not find

2002-03-29 Thread Carfield Yim

On Thu, 28 Mar 2002, RUSSELL P JONES wrote:

 from the directory with the install files for mailman...
 
 %make clean
 %./configure --with-mail-gid=65534
 %make install
 
 see if that helps. this is a really common problem (getting the wrong
 group-id) and is addressed in the mailman faq
 
 
Thx for reply, and I have reat the FAQ first. However, the situation is
quit difference than the FAQ mention. The gid of mail is not 65535, but
the request one. 

Besides, I don't encounter the error before I upgrade msec to latest version.


--
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 problem - gid not find

2002-03-28 Thread Carfield Yim

I get the following problem in mailman when try to send mail to the list:


[ Part 2: 'Delivery error report' ]

Reporting-MTA: dns; desktop.carfield.com.hk
Arrival-Date: Wed, 27 Mar 2002 05:45:04 -0500 (EST)

Final-Recipient: rfc822; [EMAIL PROTECTED]
Action: failed
Status: 5.0.0
Diagnostic-Code: X-Postfix; Command died with status 2:
'/var/lib/mailman/mail/wrapper post smartcarpark'. Command output:
Failure
to exec script. WANTED gid 99, GOT gid 65534. (Reconfigure to take
65534?)



How can I fix it? 

\\\|///
\- - -//
   (  @ @  )
  ---oOOo-(_)-oOOo---
Visit my homepage at http://www.carfield.com.hk
  ---





--
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 problem...

2002-01-28 Thread Joseph M.



Hello,

  We are 
currently using Mailman for a few months now, and we were just wondering if 
there is a maximun number of subscriber that it can handle, because right now we 
have one list that was corrupted and we do not know the cause. It gave us 
this error:
 Jan 28 17:00:02 2002 (8965) 
sweet db file was corrupt, using fallback: 
/home/mailman/lists/sweet/config.db.last Jan 28 17:00:04 
2002 (8966) sweet db file was corrupt, using fallback: 
/home/mailman/lists/sweet/config.db.last Jan 28 17:00:05 
2002 (8965) sweet fallback was corrupt, giving up

  And another 
thing, one of our list was mirrored to the other list which overite the 
list. Is there any backup of the list that Mailman generated? If not is 
there a way to recover lost data?

  







 Thanks,
  







   Joseph 
M.


[Mailman-Users] Mailman problem

2002-01-28 Thread Joseph M.




Hello,

  We are 
currently using Mailman for a few months now, and we were just wondering if 
there is a maximun number of subscriber that it can handle, because right now we 
have one list that was corrupted and we do not know the cause. It gave us 
this error:
 Jan 28 17:00:02 2002 (8965) 
sweet db file was corrupt, using fallback: 
/home/mailman/lists/sweet/config.db.last Jan 28 17:00:04 
2002 (8966) sweet db file was corrupt, using fallback: 
/home/mailman/lists/sweet/config.db.last Jan 28 17:00:05 
2002 (8965) sweet fallback was corrupt, giving up

  And another 
thing, one of our list was mirrored to the other list which overite the 
list. Is there any backup of the list that Mailman generated? If not is 
there a way to recover lost data?

  







 Thanks,
  







   Joseph 
M.


[Mailman-Users] mailman problem

2002-01-28 Thread Joseph M.



Hello,


  We are 
currently using Mailman for a few months now, and we were just wondering if 
there is a maximun number of subscriber that it can handle, because right now we 
have one list that was corrupted and we do not know the cause. It gave us 
this error:
 Jan 28 17:00:02 2002 (8965) 
sweet db file was corrupt, using fallback: 
/home/mailman/lists/sweet/config.db.last Jan 28 17:00:04 
2002 (8966) sweet db file was corrupt, using fallback: 
/home/mailman/lists/sweet/config.db.last Jan 28 17:00:05 
2002 (8965) sweet fallback was corrupt, giving up

  And another 
thing, one of our list was mirrored to the other list which overite the 
list. Is there any backup of the list that Mailman generated? If not is 
there a way to recover lost data?

  







 Thanks,
  







   Joseph 
M.


[Mailman-Users] mailman problem

2002-01-28 Thread Joseph M.



Hello,


  We are 
currently using Mailman for a few months now, and we were just wondering if 
there is a maximun number of subscriber that it can handle, because right now we 
have one list that was corrupted and we do not know the cause. It gave us 
this error:
 Jan 28 17:00:02 2002 (8965) 
sweet db file was corrupt, using fallback: 
/home/mailman/lists/sweet/config.db.last Jan 28 17:00:04 
2002 (8966) sweet db file was corrupt, using fallback: 
/home/mailman/lists/sweet/config.db.last Jan 28 17:00:05 
2002 (8965) sweet fallback was corrupt, giving up

  And another 
thing, one of our list was mirrored to the other list which overite the 
list. Is there any backup of the list that Mailman generated? If not is 
there a way to recover lost data?

  







 Thanks,
  







   Joseph 
M.


Re: [Mailman-Users] mailman problem

2002-01-28 Thread Nigel Metheringham

On Mon, 2002-01-28 at 07:21, Joseph M. wrote:
[6 messages in 67 minutes, all basically asking the same thing, all in
MIME/alternative - please just ask questions once since the subscribers
end up being mailbombed by you and rather less inclined to be helpful]

 We are currently using Mailman for a few months now, and we were just 
wondering if there is a maximun number of subscriber that it can handle, because 
right now we have one list that was corrupted and we do not know the cause.  It gave 
us this error:
 Jan 28 17:00:02 2002 (8965) sweet db file was corrupt, using fallback: 
/home/mailman/lists/sweet/config.db.last
 Jan 28 17:00:04 2002 (8966) sweet db file was corrupt, using fallback: 
/home/mailman/lists/sweet/config.db.last
 Jan 28 17:00:05 2002 (8965) sweet fallback was corrupt, giving up

This does appear to happen occasionally - rarely - and when it does its
a pig.  You need to either scrub config.db and rebuild your list, or
restore config.db from backup.

 And another thing, one of our list was mirrored to the other list which 
overite the list.  Is there any backup of the list that Mailman generated? If not is 
there a way to recover lost data?

Don't understand the question here.

Nigel.
   
  Joseph M.



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



Re: [Mailman-Users] mailman problem

2002-01-28 Thread Jon Carnes

  And another thing, one of our list was mirrored to the other
list which overite the list.  Is there any backup of the list that Mailman
generated? If not is there a way to recover lost data?

 Don't understand the question here.

There may still be a config.db.last in the directory
~mailman/lists/listname/...  if so, you can copy it over the existing bad
config.db and you will once again be happy.  Though I do suspect that by now
you have made changes in the muggled list and saved them - thus overwriting
the config.db.last...

The moral - Backups are important.  How important?  Well, how important are
your lists?

Jon Carnes


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



Re: [Mailman-Users] Mailman Problem

2001-12-21 Thread Michael B. Weiner

Does anyone on the list have experience with the redhat mailman RPM 
install? I am having difficulty getting this working and was curious as 
to whether it was me or what?

I am running RedHat Release 7.2 Linux 2.4.9 with apache-1.3.22 
sendmail-8.11.6 mailman-2.0.8

Regards

-- 
Michael B. Weiner, Linux+, Linux+ SME
Systems Administrator/Partner
The UserFriendly Network (UFN)
--
Linux Registered User #94900Have you been counted? http://counter.li.org

PGP: 30 1D CC BA 30 30 63 35  CD 58 E0 89 A9 17 CC C0  8C 55 F7 72

.Escape the 'Gates' of Hell
  `:::'  ...  ..
   :::  *  `::.::'
   ::: .::  .:.::.  .:: .::  `::. :'
   :::  ::   ::  ::  ::  :::::.
   ::: .::. .::  ::.  `. .:'  ::.
...:::.::'   ...
--




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



Re: [Mailman-Users] Mailman Problem

2001-12-19 Thread Jon Carnes



You have an "I" (that's a capital letter i) in the 
aliases file where a "|" (that's the character for pipe) should be.

The actual line in your /etc/aliases file should 
read:
 testlist:"|/home/mailman/mail/wrapper 
post testlist"

The pipe character "|" tells sendmail to transfer 
control to a external program and send the email as data to that 
program.

If you have made an error this grave, you might 
want to look at hiring someone or bringing in a friend with a little more 
experience to help you out.

Jon Carnes

  - Original Message - 
  From: 
  Dipl.-Ing. Edith Kemeny 
  To: [EMAIL PROTECTED] 
  Sent: Monday, December 17, 2001 3:36 
  AM
  Subject: [Mailman-Users] Mailman 
  Problem
  Hi!I did not encount an error and 
  this is no error report.I have a following problem, can you help me, or 
  can you tell me, how can help me? I have a list created. 
  Listname: testlistIf I send a mail to '[EMAIL PROTECTED]' 
  or to '[EMAIL PROTECTED]' 
  with subject "help" or with body content "confirm xx"I always get the 
  following anser: - 
  The following addresses had permanent fatal errors 
  -"I/home/mailman/mail/wrapper mailcmd testlist" 
  (expanded from: 
  [EMAIL PROTECTED]) - 
  Transcript of session follows -550 "I/home/mailman/mail/wrapper 
  mailcmd testlist"... User unknownor the following 
  error:- The following addresses 
  had permanent fatal errors - "I/home/mailman/mail/wrapper post 
  testlist" (expanded from: 
  [EMAIL PROTECTED])- Transcript of session 
  follows - 550 "I/home/mailman/mail/wrapper post testlist"... User 
  unknown Reporting-MTA: dns; pcc101.mos.siemens.at Received-From-MTA: 
  DNS; scesie13.sie.siemens.at Arrival-Date: Fri, 14 Dec 2001 15:14:26 
  +0100What should I do, what 
  is wrong?Thank you for your help.Best RegardsDI Edith 
Kemeny


[Mailman-Users] Mailman Problem

2001-12-17 Thread Dipl.-Ing. Edith Kemeny

Hi!

I did not encount an error and this is no error report.
I have a following problem, can you help me, or can you tell me, how can
help me? 

I have a list created. Listname: testlist
If I send a mail to '[EMAIL PROTECTED]' or to
'[EMAIL PROTECTED]' with subject help or with
body content confirm xx
I always get the following anser:

 - The following
addresses had permanent fatal errors -
I/home/mailman/mail/wrapper mailcmd testlist
 (expanded from:
[EMAIL PROTECTED])

 - Transcript of session follows -
550 I/home/mailman/mail/wrapper mailcmd testlist... User
unknown

or the following error:

- The following addresses had
permanent fatal errors - 
I/home/mailman/mail/wrapper post testlist 
(expanded from: [EMAIL PROTECTED])

- Transcript of session follows - 
550 I/home/mailman/mail/wrapper post testlist... User unknown

Reporting-MTA: dns; pcc101.mos.siemens.at 
Received-From-MTA: DNS; scesie13.sie.siemens.at 
Arrival-Date: Fri, 14 Dec 2001 15:14:26 +0100

What should I do, what is wrong?
Thank you for your help.
Best Regards
DI Edith Kemeny



[Mailman-Users] Mailman problem? (Fw: Returned mail: unknown mailer error 126)

2001-05-16 Thread Marcel Loesberg

Hi,

Below is a returned mail I got when I tried to subscribe to
my own Mailman test list.
I use Mailman 2.0.4 on a RedHat 6.2 system with Sendmail 8.9.3
In /etc/aliases I have:

test-request:|/home/mailman/mail/wrapper mailcmd test

Any ideas where it goes wrong?

Regards,

Marcel

-Original Message-
From: Mail Delivery Subsystem [EMAIL PROTECTED]
To: [EMAIL PROTECTED] [EMAIL PROTECTED]
Date: Tuesday, May 15, 2001 8:38 PM
Subject: Returned mail: unknown mailer error 126


The original message was received at Tue, 15 May 2001 18:41:27 -0100
from mbox-01.soneraplaza.nl [195.66.15.137]

   - The following addresses had permanent fatal errors -
|/home/mailman/mail/wrapper mailcmd test
(expanded from: [EMAIL PROTECTED])

   - Transcript of session follows -
sh: /home/mailman/mail/wrapper.mailcmd.test: No such file or directory
554 |/home/mailman/mail/wrapper mailcmd test... unknown mailer error 126



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



Re: [Mailman-Users] Mailman problem? (Fw: Returned mail: unknown mailer error 126)

2001-05-16 Thread Geert Altena

Quoting Marcel Loesberg, [EMAIL PROTECTED]:
 Below is a returned mail I got when I tried to subscribe to
 my own Mailman test list.
 I use Mailman 2.0.4 on a RedHat 6.2 system with Sendmail 8.9.3
 In /etc/aliases I have:
 
 test-request:|/home/mailman/mail/wrapper mailcmd test
 
 Any ideas where it goes wrong?

try 

test-request:|/home/mailman/mail/wrapper mailcmd test

It might be that the Sendmail 'newaliases' is rather picky. IIRC
the '/path/to/mailman/bin/newlist listname' gives the aliases with
the double-quotes included...

- Transcript of session follows -
 sh: /home/mailman/mail/wrapper.mailcmd.test: No such file or directory
 554 |/home/mailman/mail/wrapper mailcmd test... unknown mailer error 126

HTH,
\Geert.
-- 
Geert Altena | [EMAIL PROTECTED] | Coffee, black, no sugar
  Finger for PGPkey : Diffie-Hellman 2048/0xC540C550 
Prediction is difficult, especially of the future. - Niels Bohr

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



[Mailman-Users] Mailman problem? (Fw: Returned mail: unknown mailer error 126)

2001-05-15 Thread Marcel Loesberg

Hi,

Below is a returned mail I got when I tried to subscribe to
my own Mailman test list.
I use Mailman 2.0.4 on a RedHat 6.2 system with Sendmail 8.9.3
In /etc/aliases I have:

test-request:|/home/mailman/mail/wrapper mailcmd test

Any ideas where it goes wrong?

Regards,

Marcel

-Original Message-
From: Mail Delivery Subsystem [EMAIL PROTECTED]
To: [EMAIL PROTECTED] [EMAIL PROTECTED]
Date: Tuesday, May 15, 2001 8:38 PM
Subject: Returned mail: unknown mailer error 126


The original message was received at Tue, 15 May 2001 18:41:27 -100
from mbox-01.soneraplaza.nl [195.66.15.137]

   - The following addresses had permanent fatal errors -
|/home/mailman/mail/wrapper mailcmd test
(expanded from: [EMAIL PROTECTED])

   - Transcript of session follows -
sh: /home/mailman/mail/wrapper.mailcmd.test: No such file or directory
554 |/home/mailman/mail/wrapper mailcmd test... unknown mailer error 126




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



Re: [Mailman-Users] Mailman problem? (Fw: Returned mail: unknown mailer error 126)

2001-05-15 Thread Gergo Soros

 In /etc/aliases I have:
 
 test-request:|/home/mailman/mail/wrapper mailcmd test

Try quoting the command:
test-request:|/home/mailman/mail/wrapper mailcmd test

Gergo


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


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



[Mailman-Users] Mailman problem

2001-03-19 Thread Scott Berkman

I've been using mailman for about a week, and it was working fine.  Now, all
of the sudden, all messages it receives for the lists get stuck in the queue
and never sent.  I'm running on Redhat Linux with sendmail.  Other sendmail
mail is delivered with no problems.
-Scott


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



[Mailman-Users] Mailman Problem

2001-03-05 Thread Manojit Saha



1.How can I show all the lists available in my 
serverto a user?
2.How the option under Privacy options "Advertise 
this list when people ask what lists are on this machine? (Details)" 
is implemented?