newlist always creates lists with a capital letter

Hello mailman-users,
can anyone tell me how prevent "newlist" from creating lists with the first letter capitalized?
TIA Timo

Timo Veith wrote:
can anyone tell me how prevent "newlist" from creating lists with the first letter capitalized?
Look at the definition of InitVars() in Mailman/MailList.py and change
self.real_name = internalname[0].upper() + internalname[1:]
to
self.real_name = internalname
or just go to the list's General Options page after creating the list and make whatever case changes you want to real_name.
-- Mark Sapiro msapiro@value.net The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan

Mark Sapiro wrote:
Look at the definition of InitVars() in Mailman/MailList.py and change
self.real_name = internalname[0].upper() + internalname[1:]
to
self.real_name = internalname
or just go to the list's General Options page after creating the list and make whatever case changes you want to real_name.
-- Mark Sapiro msapiro@value.net The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan
Thanks, that was a fast reply :)
Timo
PS: my next question is about to come :)
participants (2)
-
Mark Sapiro
-
Timo Veith