示例#1
0
def all_email_sync():
    for g in Group.objects.all():
        robotic_mailman.deleteList(g.mailingListName)
        robotic_mailman.newList(g.mailingListName, '*****@*****.**', 'password')
        print [m.athena + domainSuffix for m in g.members.all()]
        robotic_mailman.addMembers(g.mailingListName, [m.athena + domainSuffix for m in g.members.all()])
        ownerSet = list(recursive_get_group_owners(g, []))
        print 'set list owner ' + g.mailingListName + ' -> ' + str(list(ownerSet))
        robotic_mailman.resetModerators(g.mailingListName, list(ownerSet))
        print 'finished adding list ' + g.mailingListName
示例#2
0
def mailsync(group):
    '''Returns True if group sync succeeded; False otherwise.'''
    robotic_mailman.deleteList(group.mailingListName)
    # TODO, adjust admin email and password
    robotic_mailman.newList(group.mailingListName, '*****@*****.**', 'password')
    emails = [m.athena + domainSuffix for m in group.members.all() \
                  if GroupMember.objects.get(group = group, member = m).autoMembership]
    robotic_mailman.addMembers(group.mailingListName, emails)

    result = robotic_mailman.listMembers(group.mailingListName)
    print result

    if set(result.split('\n')) != set(emails):
        return False
    return True
示例#3
0
def mailsync(group):
    '''Returns True if group sync succeeded; False otherwise.'''
    robotic_mailman.deleteList(group.mailingListName)
    # TODO, adjust admin email and password
    robotic_mailman.newList(group.mailingListName, '*****@*****.**', 'password')
    emails = [m.athena + domainSuffix for m in group.members.all() \
                  if GroupMember.objects.get(group = group, member = m).autoMembership]
    robotic_mailman.addMembers(group.mailingListName, emails)

    result = robotic_mailman.listMembers(group.mailingListName)
    print result

    if set(result.split('\n')) != set(emails):
        return False
    return True
示例#4
0
def all_email_sync():
    for g in Group.objects.all():
        robotic_mailman.deleteList(g.mailingListName)
        robotic_mailman.newList(g.mailingListName, '*****@*****.**', 'password')
        print [m.athena + domainSuffix for m in g.members.all()]