[Mailman-Users] public listname case? + system pass?

Bob Weissman rlw at rlw.best.vwh.net
Sun Sep 1 19:12:43 CEST 2002


>* Paul Reilly <pareilly at tcd.ie> [20020901 01:20]: wrote:
>> 1) when i create a new list with 'newlist -q mylist paul at paul.com mypass'
>>    it creates the list fine, but it always changes the case of the
>>    listname to uppercase. ie "mylist" becomes "Mylist".
>> 
>>    This means I need to go in to the web interface to change it back to
>>    lower case every time. How do I stop this from happening? What code
>>    needs to be edited ? I'm using mailman 2.0.13


Edit Mailman/MailList.py, changing the lines
        self.real_name = '%s%s' % (string.upper(self._internal_name[0]),
                                   self._internal_name[1:])
to
        self.real_name = self._internal_name

- Bob





More information about the Mailman-Users mailing list