{
# set users with privileges on all lists on ALL
my $ALLusers = $ezmlm{'ALL'} || "";
$ALLusers =~ s/[,:]/ /g;
$OUT = "ALL: admin $ALLusers\n";

# set allowed users on ALLOW_CREATE
# currently unecessary as we have disabled the ezmlm-web feature to create lists
#  and we use our own process, thus only admin can create lists
my $ALLOWusers = $ezmlm{'ALLOW_CREATE'} || "";
$ALLOWusers =~ s/[,:]/ /g;
$OUT .= "ALLOW_CREATE: admin $ALLOWusers\n";

# set privileges on individual lists
my $accounts = esmith::ConfigDB->open_ro('accounts');
foreach my $mllist ( $accounts->get_all_by_prop(type=>('mailinglist')) ) {
        my $listname = $mllist->key;
        my $users = $mllist->prop('webusers') || '';
        $users =~ s/[,:]/ /g;
        $OUT .= "$listname: $users \n" unless $users eq '';
        }
}
