28 Jul
2020
28 Jul
'20
1:22 a.m.
On 7/27/20 3:38 PM, Brian Carpenter wrote:
I recently imported a number of MM2 lists into MM3. Unfortunately, the person had emergency moderation turned on for these lists. Since EM is not exposed to Postorius what can be done to reverse this?
To do one list:
mailman shell -l <list-id> m.emergency = False commit()
To do several lists:
mailman shell from mailman.models.mailinglist import MailingList mlist = MailingList('first.list.id') mlist.emergency = False commit() mlist = MailingList('second.list.id') mlist.emergency = False commit()
And so on for more lists.
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan