[Mailman-Developers] small suggestion

Kent Mein mein at cs.umn.edu
Fri Jun 25 22:54:32 CEST 2010


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@%s' % (mm_cfg.MAILMAN_SITE_LIST, hostname)
    return '%s-%s@%s' % (mm_cfg.MAILMAN_SITE_LIST, extra, hostname)
to this:
        return '%s@%s' % (mm_cfg.MAILMAN_SITE_LIST, mm_cfg.DEFAULT_EMAIL_HOST)
    return '%s-%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
-- 
mein at cs.umn.edu
http://www.cs.umn.edu/~mein


More information about the Mailman-Developers mailing list