RE: [Mailman-Users] New Mailman user on RedHat 9.0

2003-09-22 Thread Michael D. Hensley
I asked:

 I'm attempting to use Mailman on RedHat Linux 9.0. I installed it as 
 part of the initial installation of RedHat, via the RPM that came on 
 the CD.
[additional details deleted]

John Carnes responded (thanks!):

 Did you startup the Mailman daemon: /var/mailman/bin/mailmanctl start
 
 Your log trace shows that your mail is being delivered to 
 Mailman. So your aliases are setup properly and working.

Attempts to start the Mailman daemon give the following error messages:

[EMAIL PROTECTED] root]#  /var/mailman/bin/mailmanctl start
Traceback (most recent call last):
  File /var/mailman/bin/mailmanctl, line 524, in ?
main()
  File /var/mailman/bin/mailmanctl, line 319, in main
check_privs()
  File /var/mailman/bin/mailmanctl, line 274, in check_privs
gid = grp.getgrnam(mm_cfg.MAILMAN_GROUP)[2]
KeyError: getgrnam(): name not found
[EMAIL PROTECTED] root]#

...which is the same error I get when I try /bin/check_perms.

I don't know python (a situation which I intend to remedy soon), but
this appears to be doing a getgrnam to make sure the MAILMAN_GROUP is
(I'm guessing) in /etc/group? There is a line in /etc/group that
contains 
mailnam:x:41:

 The mailman entry in /etc/passwd look like this:

mailman:x:41:41:GNU Mailing List Manager:/var/mailman:/bin/false

Any further suggestions?

Thanks!

---
Michael D. Hensley
IT Supervisor
Fremont Community Church



--
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] New Mailman user on RedHat 9.0

2003-09-22 Thread Richard Barrett
On Monday, September 22, 2003, at 08:35  pm, Michael D. Hensley wrote:

I asked:

I'm attempting to use Mailman on RedHat Linux 9.0. I installed it as
part of the initial installation of RedHat, via the RPM that came on
the CD.
[additional details deleted]

John Carnes responded (thanks!):

Did you startup the Mailman daemon: /var/mailman/bin/mailmanctl start

Your log trace shows that your mail is being delivered to
Mailman. So your aliases are setup properly and working.
Attempts to start the Mailman daemon give the following error messages:

[EMAIL PROTECTED] root]#  /var/mailman/bin/mailmanctl start
Traceback (most recent call last):
  File /var/mailman/bin/mailmanctl, line 524, in ?
main()
  File /var/mailman/bin/mailmanctl, line 319, in main
check_privs()
  File /var/mailman/bin/mailmanctl, line 274, in check_privs
gid = grp.getgrnam(mm_cfg.MAILMAN_GROUP)[2]
KeyError: getgrnam(): name not found
[EMAIL PROTECTED] root]#
...which is the same error I get when I try /bin/check_perms.

I don't know python (a situation which I intend to remedy soon), but
this appears to be doing a getgrnam to make sure the MAILMAN_GROUP is
(I'm guessing) in /etc/group? There is a line in /etc/group that
contains
mailnam:x:41:
 The mailman entry in /etc/passwd look like this:

mailman:x:41:41:GNU Mailing List Manager:/var/mailman:/bin/false

Any further suggestions?

http://www.mail-archive.com/[EMAIL PROTECTED]/msg18532.html

may be relevant

Thanks!

---
Michael D. Hensley
IT Supervisor
Fremont Community Church
---
Richard Barrett   http://www.openinfo.co.uk
--
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] New Mailman user on RedHat 9.0

2003-09-22 Thread Jon Carnes
Here is a repost of my So you want to use the Default Mailman install
that comes with RH9... post:

Note: my server's name is list.anncons.org so I use that for the host
definitions below.  You should use your hosts name.

Put the following in your /var/mailman/Mailman/mm_cfg.py file:
MAILMAN_USER = 'mailman'
MAILMAN_GROUP = 'mailman'

Also you will need to put in your hosts real domain name:
#DEFAULT_EMAIL_HOST = 'porky.devel.redhat.com'
#DEFAULT_URL_HOST = 'porky.devel.redhat.com'
DEFAULT_EMAIL_HOST = 'list.anncons.org'
DEFAULT_URL_HOST = 'list.anncons.org'
DEFAULT_URL_PATTERN = 'http://%s/mailman/'

Lord knows what the Mailman packager for RedHat was smoking the day he
did this RPM...

To set Mailmanctl to start on reboot, use the chkconfig utility (or you
could use the Services gui that comes in the System Settings/Server
Settings menu).

chkconfig --list mailman
mailman 0:off   1:off   2:off   3:off   4:off   5:off   6:off

chkconfig --level 345 mailman on
# this will turn the mailman daemon on automatically when the server is
booted.

Good luck - Jon Carnes

On Mon, 2003-09-22 at 15:35, Michael D. Hensley wrote:
 I asked:
 
  I'm attempting to use Mailman on RedHat Linux 9.0. I installed it as 
  part of the initial installation of RedHat, via the RPM that came on 
  the CD.
 [additional details deleted]
 
 John Carnes responded (thanks!):
 
  Did you startup the Mailman daemon: /var/mailman/bin/mailmanctl start
  
  Your log trace shows that your mail is being delivered to 
  Mailman. So your aliases are setup properly and working.
 
 Attempts to start the Mailman daemon give the following error messages:
 
 [EMAIL PROTECTED] root]#  /var/mailman/bin/mailmanctl start
 Traceback (most recent call last):
   File /var/mailman/bin/mailmanctl, line 524, in ?
 main()
   File /var/mailman/bin/mailmanctl, line 319, in main
 check_privs()
   File /var/mailman/bin/mailmanctl, line 274, in check_privs
 gid = grp.getgrnam(mm_cfg.MAILMAN_GROUP)[2]
 KeyError: getgrnam(): name not found
 [EMAIL PROTECTED] root]#
 
 ...which is the same error I get when I try /bin/check_perms.
 
 I don't know python (a situation which I intend to remedy soon), but
 this appears to be doing a getgrnam to make sure the MAILMAN_GROUP is
 (I'm guessing) in /etc/group? There is a line in /etc/group that
 contains 
 mailnam:x:41:
 
  The mailman entry in /etc/passwd look like this:
 
 mailman:x:41:41:GNU Mailing List Manager:/var/mailman:/bin/false
 
 Any further suggestions?
 
 Thanks!
 
 ---
 Michael D. Hensley
 IT Supervisor
 Fremont Community Church
 
 


--
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] New Mailman user on RedHat 9.0

2003-09-19 Thread Jon Carnes
Did you startup the Mailman daemon: /var/mailman/bin/mailmanctl start

Your log trace shows that your mail is being delivered to Mailman. So
your aliases are setup properly and working.

Jon Carnes

On Fri, 2003-09-19 at 19:54, Michael D. Hensley wrote:
 Greetings!
 
 I'm attempting to use Mailman on RedHat Linux 9.0. I installed it as
 part of the initial installation of RedHat, via the RPM that came on the
 CD.
 
 I set up a list using the newlist command, and added three email
 accounts via the add_user command. I added the aliases to
 /etc/aliases, and ran the newaliases command. I then sent a message to
 the list, but haven't received it anywhere, nor has it bounced.
 
 (The list is named analog-news, on server intranet.gofcc.org.
 
 Following the FAQ, I ran the following command with the results shows:
 
 [EMAIL PROTECTED] mailman]# bin/check_perms
 Traceback (most recent call last):
   File bin/check_perms, line 51, in ?
 MAILMAN_GID = grp.getgrnam(MAILMAN_GROUP)[2]
 KeyError: getgrnam(): name not found
 [EMAIL PROTECTED] mailman]#
 
 Here is the tail of my /var/log/maillog file:
 
 Sep 19 15:18:36 sl101 sendmail[20711]: /etc/aliases: 73 aliases, longest
 52 bytes, 1278 bytes total
 Sep 19 15:20:21 sl101 sendmail[20723]: h8JMKKtq020723:
 from=[EMAIL PROTECTED], size=285, class=0, nrcpts=1,
 msgid=[EMAIL PROTECTED],
 proto=ESMTP, [EMAIL PROTECTED]
 Sep 19 15:20:21 sl101 sendmail[20727]: h8JMKLbW020727:
 from=[EMAIL PROTECTED], size=464, class=0, nrcpts=1,
 msgid=[EMAIL PROTECTED],
 proto=ESMTP, daemon=MTA, relay=sl101 [127.0.0.1]
 Sep 19 15:20:21 sl101 sendmail[20726]: h8JMKKtq020723:
 to=[EMAIL PROTECTED], ctladdr=[EMAIL PROTECTED] (0/0),
 delay=00:00:00, xdelay=00:00:00, mailer=relay, pri=30274,
 relay=[127.0.0.1] [127.0.0.1], dsn=2.0.0, stat=Sent (h8JMKLbW020727
 Message accepted for delivery)
 Sep 19 15:20:21 sl101 sendmail[20729]: h8JMKLbW020727:
 to=[EMAIL PROTECTED], ctladdr=[EMAIL PROTECTED] (0/0),
 delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=30453,
 relay=fccmail.gofcc.org. [192.168.1.4], dsn=2.0.0, stat=Sent (
 [EMAIL PROTECTED] Queued
 mail for delivery)
 Sep 19 16:37:04 sl101 sendmail[20904]: h8JNb4eG020904:
 from=[EMAIL PROTECTED], size=312, class=0, nrcpts=1,
 msgid=[EMAIL PROTECTED],
 proto=ESMTP, [EMAIL PROTECTED]
 Sep 19 16:37:04 sl101 sendmail[20908]: h8JNb4bW020908:
 from=[EMAIL PROTECTED], size=506, class=0, nrcpts=1,
 msgid=[EMAIL PROTECTED],
 proto=ESMTP, daemon=MTA, relay=sl101 [127.0.0.1]
 Sep 19 16:37:04 sl101 sendmail[20907]: h8JNb4eG020904:
 to=[EMAIL PROTECTED],
 ctladdr=[EMAIL PROTECTED] (0/0), delay=00:00:00,
 xdelay=00:00:00, mailer=relay, pri=30294, relay=[127.0.0.1] [127.0.0.1],
 dsn=2.0.0, stat=Sent (h8JNb4bW020908 Message accepted for delivery)
 Sep 19 16:37:05 sl101 sendmail[20909]: h8JNb4bW020908:
 to=|/var/mailman/mail/mailman post analog-news,
 ctladdr=[EMAIL PROTECTED] (8/0), delay=00:00:01,
 xdelay=00:00:01, mailer=prog, pri=30732, dsn=2.0.0, stat=Sent
 
 Any help or suggestions would be greatly appreciated!
 
 Thanks in advance!
 
 ---
 Michael D. Hensley
 IT Supervisor
 Fremont Community Church
 
 --
 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: [EMAIL PROTECTED]
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org