>* Paul Reilly <[EMAIL PROTECTED]> [20020901 01:20]: wrote:
>> 1) when i create a new list with 'newlist -q mylist [EMAIL PROTECTED] 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


------------------------------------------------------
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/

Reply via email to