Changes

Jump to navigation Jump to search
416 bytes added ,  18:21, 16 October 2010
no edit summary
Line 33: Line 33:  
  for l  in `bin/list_lists  -b`; do  bin/config_list -i bar  -v $l ; done
 
  for l  in `bin/list_lists  -b`; do  bin/config_list -i bar  -v $l ; done
 
  rm bar
 
  rm bar
 +
 +
=== Disabling digests for all users ===
 +
 +
Create a nodigests.py with this content:
 +
 +
from Mailman import mm_cfg
 +
 +
def nodigests(m):
 +
    for addr in m.getMembers():
 +
        if m.getMemberOption(addr, mm_cfg.Digests) == True:
 +
            print "turning off digests for " + addr
 +
            m.setMemberOption(addr, mm_cfg.Digests, 0)
 +
    m.Save()
 +
    m.Unlock()
 +
 +
Then, execute:
 +
 +
bin/withlist -l -r nodigests -a
    
=== Migrating lists from one host to another ===
 
=== Migrating lists from one host to another ===

Navigation menu