Re: [Mailman-Users] password reminders with an invalid sender domain (and thus bouncing)

2004-02-08 Thread Rejo Zenger
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

++ 07/02/04 20:16 -0500 - Jon Carnes:
If your running 2.1.x (and from the problem I think you are) then you
need to use the ~mailman/bin/withlist command to reset the host names
inside the configuration database.

I see, the problem is however that I don't have a clue on how to issue
those Python commands. I have no idea what I have to look for and how to
get there. Prefereably I would like to see a complete list of variables
that I could grep. 

Any idea where to start - a pointer to an introduction in working with
this withlist, apart from the --help contents, is also welcome.


[problem:]
 No problems, except for one list - all other list have no problems. This
 one list has it's password reminders send out with the wrong domain (a
 local domain, the one from the former box). As a result, most of these
 reminders get bounced because of sender verify tests.

- -- 
Rejo Zenger [EMAIL PROTECTED] - http://rejo.zenger.nl - PGP 0x75FC50F3
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.3.1 (GNU/Linux)

iD8DBQFAJhd6Ha9Q5nX8UPMRAs4AAJ0YPjsrOEydQUDXDQvXekhx3NsHPgCgrSWm
qOIXThSkyW1xngtV9z/UCcw=
=/gbh
-END 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


Re: [Mailman-Users] password reminders with an invalid sender domain (and thus bouncing)

2004-02-08 Thread Jon Carnes
On Sun, 2004-02-08 at 06:03, Rejo Zenger wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 ++ 07/02/04 20:16 -0500 - Jon Carnes:
 If your running 2.1.x (and from the problem I think you are) then you
 need to use the ~mailman/bin/withlist command to reset the host names
 inside the configuration database.
 
 I see, the problem is however that I don't have a clue on how to issue
 those Python commands. I have no idea what I have to look for and how to
 get there. Prefereably I would like to see a complete list of variables
 that I could grep. 
 
 Any idea where to start - a pointer to an introduction in working with
 this withlist, apart from the --help contents, is also welcome.
 
 
 [problem:]
  No problems, except for one list - all other list have no problems. This
  one list has it's password reminders send out with the wrong domain (a
  local domain, the one from the former box). As a result, most of these
  reminders get bounced because of sender verify tests.
 

Make sure the hosts are defined properly (as virtual host sets: URL and
Mailhost), then run withlist using the fix_url.py module on your list.
You might want to backup the list config file first.

Here is a message lifted from the archives... perhaps it will help:

On Tuesday, September 23, 2003, at 03:33  am, Wayne Spivak wrote: 
 I runnng mailman on a box with currently four domains.
 
 I've added four groups of these lines:
 
 VIRTUAL_HOSTS = {'list.foo.com': 'list.foo.com'} -- notice bracket
 add_virtualhost ('list.foo.com', 'list.foo.com') -- notice paren
 
 I've tried to run withlist -r fix_url -l foo-list and then mailmanctl
 restart and I still get this error.
 
 On some of the lists I get the in-addr-arpa name for the url.  Not
 even
 the box url.  The mailman list is set to the box url.
 
 I hope I've explained this, its been a long tedious day.
 
 Any ideas?


If you are supporting four virtual domains then  you probably want to 
say the following in your mm_cfg.py, before restarting mailmanctl and 
using fix_url

DEFAULT_EMAIL_HOST = 'box.mailhostname.tld'
DEFAULT_URL_HOST = 'box.webhostname.tld'
VIRTUAL_HOSTS.clear()
add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST)
add_virtualhost('your.webhostname-1.tld', 'your.mailhostname-1.tld')
add_virtualhost('your.webhostname-2.tld', 'your.mailhostname-2.tld')
add_virtualhost('your.webhostname-3.tld', 'your.mailhostname-3.tld')
add_virtualhost('your.webhostname-4.tld', 'your.mailhostname-4.tld')

You could also check out the FAQ page:

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

---
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] password reminders with an invalid sender domain (and thus bouncing)

2004-02-07 Thread Jon Carnes
If your running 2.1.x (and from the problem I think you are) then you
need to use the ~mailman/bin/withlist command to reset the host names
inside the configuration database.

If you more withlist you'll see some nice examples of how to use it in
the comments.

Good Luck - Jon Carnes
On Sat, 2004-02-07 at 09:15, Rejo Zenger wrote:
 Hello,
 
 I have a small problem: I have migrated mailman (and mailserver, etc) a
 month ago from one box to another.
 
 No problems, except for one list - all other list have no problems. This
 one list has it's password reminders send out with the wrong domain (a
 local domain, the one from the former box). As a result, most of these
 reminders get bounced because of sender verify tests.
 
 I have tried to find out which file I have to adjust, but I can't find
 out what is causing the problen. Any idea where to look?
 
 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/

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