Re: [Mailman-Users] installation problems - newlist-issues

2006-02-25 Thread Stephen J. Turnbull
 Mark == Mark Sapiro [EMAIL PROTECTED] writes:

Mark Henrik wrote:

 On 2/24/06, Mark Sapiro [EMAIL PROTECTED] wrote:

 Then maybe someone put it in Defaults.py. Let's hope Mandrake
 is not distributing its package this way.

 They are, I'm afraid.

Mark   :-(

With all due respect to Henrik, if I were you, unless you find
something obvious pretty quickly, I'd send him right back to Mandriva.
Then add Mandriva to the cPanel FAQ.  I've been around this loop with
Mandriva, and they claim to see nothing wrong with such hacks as a
matter of policy.  :-(


-- 
School of Systems and Information Engineering http://turnbull.sk.tsukuba.ac.jp
University of TsukubaTennodai 1-1-1 Tsukuba 305-8573 JAPAN
   Ask not how you can do free software business;
  ask what your business can do for free software.
--
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] installation problems - newlist-issues

2006-02-24 Thread Mark Sapiro
Henrik wrote:

On 2/24/06, Mark Sapiro [EMAIL PROTECTED] wrote:

 Then maybe someone put it in Defaults.py. Let's hope Mandrake is not
 distributing its package this way.

They are, I'm afraid.


  :-(


 however I added mailman the good old
 fashion way.


 Which is?

configure
make install


Aaah, I misunderstood. I thought you meant the list, not the install.


Put in

ScriptAlias /mailman/   /usr/local/mailman/cgi-bin/

in my commonhttpd.conf - to no avail.


What happens when you go to e.g.
http:/www.example.com/mailman/listinfo? What's in the apache logs?

-- 
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] installation problems - newlist-issues

2006-02-23 Thread Henrik
Hello,


I'm trying to install mailman on a server running Mandriva 10.1

I typed urpmi mandrake and changed
/usr/lib/mailman/Mailman/mm_cfg.py to the desired subdomain to run
Mailman's webinterface and the desire subdomain for email.


Then, I am doing the newlist-command by using the following syntax:
./newlist  --language en mailman [EMAIL PROTECTED] mypassword

Doing so gives me the following error-message at the command-line:

-
Traceback (most recent call last):
  File ./newlist, line 219, in ?
main()
  File ./newlist, line 160, in main
mlist.Create(listname, owner_mail, pw)
  File /usr/lib/mailman/Mailman/MailList.py, line 457, in Create
self.InitVars(name, admin, crypted_password)
  File /usr/lib/mailman/Mailman/MailList.py, line 381, in InitVars
if Utils.GetCharSet(self.preferred_language) == 'us-ascii':
  File /usr/lib/mailman/Mailman/Utils.py, line 623, in GetCharSet
return mm_cfg.LC_DESCRIPTIONS[lang][1]
KeyError: 'en_US'
-

I've had this trouble every time I want to install Mailman, and it
doesn't seem to bend.


Can anyone help, please?


TIA



 / Henrik
--
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] installation problems - newlist-issues

2006-02-23 Thread Mark Sapiro
Henrik wrote:

Then, I am doing the newlist-command by using the following syntax:
./newlist  --language en mailman [EMAIL PROTECTED] mypassword

Doing so gives me the following error-message at the command-line:

-
Traceback (most recent call last):
  File ./newlist, line 219, in ?
main()
  File ./newlist, line 160, in main
mlist.Create(listname, owner_mail, pw)
  File /usr/lib/mailman/Mailman/MailList.py, line 457, in Create
self.InitVars(name, admin, crypted_password)
  File /usr/lib/mailman/Mailman/MailList.py, line 381, in InitVars
if Utils.GetCharSet(self.preferred_language) == 'us-ascii':
  File /usr/lib/mailman/Mailman/Utils.py, line 623, in GetCharSet
return mm_cfg.LC_DESCRIPTIONS[lang][1]
KeyError: 'en_US'
-

I've had this trouble every time I want to install Mailman, and it
doesn't seem to bend.


Do you have

DEFAULT_SERVER_LANGUAGE = 'en-US'

in mm_cfg.py? It seems that that is the problem. Mailman has no
language 'en-US'. Since the default setting in Defaults.py is

DEFAULT_SERVER_LANGUAGE = 'en'

you can just remove

DEFAULT_SERVER_LANGUAGE = 'en-US'

from mm_cfg.py, or if you want it for documentation, change it to

DEFAULT_SERVER_LANGUAGE = 'en'

-- 
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] installation problems - newlist-issues

2006-02-23 Thread Mark Sapiro
Henrik wrote:

 Do you have

 DEFAULT_SERVER_LANGUAGE = 'en-US'

 in mm_cfg.py?

No, I didn't have that setting,


Then maybe someone put it in Defaults.py. Let's hope Mandrake is not
distributing its package this way.


however I added mailman the good old
fashion way.


Which is?

I don't know how you can create a list any way except by copying som
other list's config.pck if you have an invalid value for
DEFAULT_SERVER_LANGUAGE. If nothing else, maybe you need to put

DEFAULT_SERVER_LANGUAGE = 'en'

in mm_cfg.py.


However, now I can't get it to interact with apache. I'm pretty sure
that it's rolling otherwise.


See http://www.list.org/mailman-install/node10.html.

-- 
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] Installation problems

2004-11-20 Thread Terry Allen
Hi all,
	I have been trying to get Mailman installed  have been 
attempting to post to the users list without success.
	I have an error installing Mailman after running check_perms 
-f which is as follows:

Traceback (most recent call last):
  File ./check_perms, line 46, in ?
from Mailman import mm_cfg
  File /usr/local/mailman/Mailman/mm_cfg.py, line 45, in ?
add_virtualhost (heard.com.au, heard.com.au)
NameError: name 'heard' is not defined
	I have looked in the FAQ, but nothing relates specifically to 
that error - I see entries relating to globalname, but not what I 
have listed.
	My system details are as follows:

Mac OSX 10.3.6 (client version)
Python 2.3
Mailman 2.1.5
Postfix 2.1.5
Apache 2.0.50
Can anyone point me in the right directiopn please.
--
	Bye for now, Terry Allen 
	___
hEARd

Postal Address:
hEARd, 26B Glenning Rd, Glenning Valley, NSW 2261, Australia
Internet -
WWW: http://heard.com.au http://itavservices.com
EMAIL: [EMAIL PROTECTED]
Phone: Australia - 02 4388 1400 / International - + 61 2 43881400
Mobile: Australia - 04 28881400 / International - 61 4 28881400
---
Non profit promotion for new music - since 1994
---
--
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] installation problems

2001-12-06 Thread John Murray

Have followed the installation instructions for mailman 2.1.  The website 
looks fine, and appears to work.  I can register for the test list (through 
the site) and it sends out the confirmation email.  When I respond to the 
confirmation email, I am able to see through the logs that it receives it and 
processes the mailcmd (line listed below); however, there is no response sent 
back to the list.  I have been unable to find any error condition, but it 
doesnt appear that mailcmd is sending the response.  I also notice that even 
though the confirmation message was sent, they dont show as a pendng user.


Dec  6 20:51:47 edmond sendmail[26492]: fB6Kpkp26491: 
to=|/opt/mailman/mail/wrapper mailcmd friends_test, 
ctladdr=[EMAIL PROTECTED] (2/0), delay=00:00:01, 
xdelay=00:00:01, mailer=prog, pri=31097, dsn=2.0.0, stat=Sent


Am running SuSE 7.1 on an intel box.  Using Apache and Sendmail.  Am fairly 
new to this, so sorry if I am not giving enough information.

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