Hi I just have a small suggestion/patch.
In Mailman/Utils.py in the function get_site_email
I think it makes more sense to change these two lines:
        return '%...@%s' % (mm_cfg.MAILMAN_SITE_LIST, hostname)
    return '%s...@%s' % (mm_cfg.MAILMAN_SITE_LIST, extra, hostname)
to this:
        return '%...@%s' % (mm_cfg.MAILMAN_SITE_LIST, mm_cfg.DEFAULT_EMAIL_HOST)
    return '%s...@%s' % (mm_cfg.MAILMAN_SITE_LIST, extra, 
mm_cfg.DEFAULT_EMAIL_HOST)

chances are more likely you have the MAILMAN_SITE_LIST setup on your
        emailserver not on your webhost.  (We've had to tweak it here so
        things work)

Anyway thanks for the great work you all do.  We have been using mailman
here at the University of Minnesota for quite awhile and its great.

Kent Mein
-- 
[email protected]
http://www.cs.umn.edu/~mein
_______________________________________________
Mailman-Developers mailing list
[email protected]
http://mail.python.org/mailman/listinfo/mailman-developers
Mailman FAQ: http://wiki.list.org/x/AgA3
Searchable Archives: 
http://www.mail-archive.com/mailman-developers%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-developers/archive%40jab.org

Security Policy: http://wiki.list.org/x/QIA9

Reply via email to