[Mailman-Users] Changing hostname of active list server

2007-12-05 Thread Charles Marcus
According to 4.29 of the FAQ:

-

4.29. Where can I change a list or the default URL used for the web 
interface?
For MM 2.1.2:

  Changing hostnames
  --

These changes should be made $prefix/Mailman/mm_cfg.py. The applicable 
MM config variables are described in $prefix/Mailman/Defaults.py. 
Typically something like what follows, at the end of your mm_cfg.py, 
will do the trick:

  DEFAULT_EMAIL_HOST = 'your.mailhostname.tld'
  DEFAULT_URL_HOST = 'your.webhostname.tld'
  VIRTUAL_HOSTS.clear()
  add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST)

and some more add_virtualhost(URL_FQDN, EMAIL_FQDN) if you are using 
virtual hosts.

DEFAULT_URL_HOST should be a fully qualified host name, not an actual 
URL, e.g. 'mailman.example.com' not 'http://mailman.example.com'.

-

Currently, notices with URL references to cancel a posting are of the 
form .y.com, and I want to change it to ..com.

Is this as simple as setting the DEFAULT_URL_HOST in mm_cfg.py, then 
running:

$prefix/bin/withlist -l -a -r fix_url ?

I am running postfix in virtual domains mode, but I only have one domain 
right now, if that matters...

I'm just a little nervous about 'fixing something that ain't broke'... ;)

-- 

Best regards,

Charles
--
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] Changing hostname of active list server

2007-12-05 Thread Mark Sapiro
Charles Marcus wrote:

Currently, notices with URL references to cancel a posting are of the 
form .y.com, and I want to change it to ..com.

Is this as simple as setting the DEFAULT_URL_HOST in mm_cfg.py, then 
running:

$prefix/bin/withlist -l -a -r fix_url ?


Yes., but you also want to add the

VIRTUAL_HOSTS.clear()
add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST)

lines to mm_cfg,py following the reassignment of DEFAULT_URL_HOST


I am running postfix in virtual domains mode, but I only have one domain 
right now, if that matters...


As long as you aren't changing the email host, this shouldn't have any effect
on Postfix or your Postfix settings.

-- 
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] changing hostname of web interface page

2006-06-20 Thread Mark Sapiro
Will Twomeywrote:

Is there a way to only allow some users to send messages to the list?
So the rest can only receive (seems like this would be useful for an
announcement list).


See
http://www.python.org/cgi-bin/faqw-mm.py?req=showfile=faq03.011.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


[Mailman-Users] changing hostname of web interface page

2006-06-19 Thread Will Twomey
My website and email (postfix + mailman) are hosted on two different servers.

I'd really like to be able to use the mailman web interface, but it
goes to the http server instead of the web server.

Instead of 'hostname.com/cgi-bin/mailman/admin/list' I'd like it to be
'list.hostname.com/cgi-bin/mailman/admin/list/general'

Does anyone know how I can do this without changing the mailman email
address from [EMAIL PROTECTED] to [EMAIL PROTECTED]

I added the IP of my mail server to /etc/hosts, in order to use the
admin page, and I changed the Host name this list prefers for email.
part. This didn't seem to change anything, though. :(

Thanks!

-Will
--
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] changing hostname of web interface page

2006-06-19 Thread Will Twomey
Thank you, that fixed it.  :)

A second question, if I may.

Is there a way to only allow some users to send messages to the list?
So the rest can only receive (seems like this would be useful for an
announcement list).

Hope that's not a stupid question.

Thanks for the quick reply. =)

-Will

On 6/19/06, Mark Sapiro [EMAIL PROTECTED] wrote:
 Will Twomey wrote:
 
 Instead of 'hostname.com/cgi-bin/mailman/admin/list' I'd like it to be
 'list.hostname.com/cgi-bin/mailman/admin/list/general'
 
 Does anyone know how I can do this without changing the mailman email
 address from [EMAIL PROTECTED] to [EMAIL PROTECTED]


 Put the following in mm_cfg.py

 DEFAULT_URL_HOST = 'list.hostname.com'
 DEFAULT_EMAIL_HOST = 'hostname.com'
 VIRTUAL_HOSTS.clear()
 add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST)

 restart mailman and run fix_url.

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

 After all this is working OK, you may want to rebuild the archives with
 'bin/arch --wipe listname' in order to fix the absolute links to the
 listinfo page in the prior monthly index files.

 Of course you will have to have an appropriately configured web server
 on list.hostname.com.

 --
 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] changing hostname of web interface page

2006-06-19 Thread Oliver Schulze L.
It is possible.
Look at the config pages(web) for setting the list as moderated or 
config that only
1 user has post permissions.

HTH
Oliver

Will Twomey wrote:
 Thank you, that fixed it.  :)

 A second question, if I may.

 Is there a way to only allow some users to send messages to the list?
 So the rest can only receive (seems like this would be useful for an
 announcement list).

 Hope that's not a stupid question.

 Thanks for the quick reply. =)

 -Will

 On 6/19/06, Mark Sapiro [EMAIL PROTECTED] wrote:
   
 Will Twomey wrote:
 
 Instead of 'hostname.com/cgi-bin/mailman/admin/list' I'd like it to be
 'list.hostname.com/cgi-bin/mailman/admin/list/general'

 Does anyone know how I can do this without changing the mailman email
 address from [EMAIL PROTECTED] to [EMAIL PROTECTED]
   
 Put the following in mm_cfg.py

 DEFAULT_URL_HOST = 'list.hostname.com'
 DEFAULT_EMAIL_HOST = 'hostname.com'
 VIRTUAL_HOSTS.clear()
 add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST)

 restart mailman and run fix_url.

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

 After all this is working OK, you may want to rebuild the archives with
 'bin/arch --wipe listname' in order to fix the absolute links to the
 listinfo page in the prior monthly index files.

 Of course you will have to have an appropriately configured web server
 on list.hostname.com.

 --
 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/oliver%40samera.com.py

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

-- 
Oliver Schulze L.
[EMAIL PROTECTED]

--
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] changing hostname

2006-05-23 Thread Anne Ramey
I changed my hostname from the time I first installed mailman.  For the 
most part, the transition went smoothly, but we still have a few traces 
I'd like to get rid of.  The host name this list prefers for email has 
taken care of most of it, just not the web interface:
To see the list of lists, the lists made on the old hostname are at 
http://oldhost.name/mailman/admin/ and the new ones are at 
http://newhost.name/mailman/admin/ 
Now, the individual lists can all be reached at 
http://newhost.name/mailman/admin/listname ...it's just the  admin 
listing and the server's main http://oldhost.name/mailman/listinfo that 
I can't seem to get to switch over.  Is there a way to do this?

Anne
--
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] changing hostname

2006-05-23 Thread Todd Zullinger
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Anne Ramey wrote:
 I changed my hostname from the time I first installed mailman.  For the 
 most part, the transition went smoothly, but we still have a few traces 
 I'd like to get rid of.  The host name this list prefers for email has 
 taken care of most of it, just not the web interface:
 To see the list of lists, the lists made on the old hostname are at 
 http://oldhost.name/mailman/admin/ and the new ones are at 
 http://newhost.name/mailman/admin/ 
 Now, the individual lists can all be reached at 
 http://newhost.name/mailman/admin/listname ...it's just the  admin 
 listing and the server's main http://oldhost.name/mailman/listinfo that 
 I can't seem to get to switch over.  Is there a way to do this?

Have you run ~mailman/bin/fix_url.py?

- -- 
ToddOpenPGP - KeyID: 0xD654075A | URL: www.pobox.com/~tmz/pgp
==
When I think about all the crap I learned in high school ... it's a
wonder I can think at all.
-- Paul Simon

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.3 (GNU/Linux)
Comment: When crypto is outlawed bayl bhgynjf jvyy unir cevinpl.

iG0EARECAC0FAkRzVrMmGGh0dHA6Ly93d3cucG9ib3guY29tL350bXovcGdwL3Rt
ei5hc2MACgkQuv+09NZUB1qELACgjg7Je4B1i0kaKh3Zfy1jWS32KbUAoLnYHY2/
UguKte7CEKiaD7pmam2w
=21tY
-END PGP SIGNATURE-
--
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] Changing hostname for a list: solved!

2004-08-23 Thread Luis Fernando C. Talora
Fellows,

The list archives helped me solving the problem. The following link holds
the answer I was looking for:

http://mail.python.org/pipermail/mailman-users/2004-January/034073.html

Hope it helps somebody else in the future.

Regards,

Talora





= 
Esta mensagem pode conter informação confidencial e/ou privilegiada. Se você

não for o destinatário ou a pessoa autorizada a receber esta mensagem, não
deverá 
utilizar, copiar, alterar, divulgar a informação nela contida ou tomar
qualquer ação 
baseada nessas informações. Se você recebeu esta mensagem por engano, por
favor 
avise imediatamente o remetente, respondendo o e-mail e em seguida apague-o.

Agradecemos sua cooperação. 

This message may contain confidential and/or privileged information. If you 
are not the addressee or authorized to receive this for the addressee, you 
must not use, copy, disclose, change, take any action based on this message 
or any information herein. If you have received this message in error, 
please advise the sender immediately by reply e-mail and delete this 
message. Thank you for your cooperation. 
=
--
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/