# Shared group
{
    use esmith::AccountsDB;
    my $a = esmith::AccountsDB->open_ro;

    $OUT = "shared\t\t\t";

    for my $user ( $a->get('admin'), $a->users )
    {
        next if ( ($user->prop('EveryoneEmail') || 'yes') eq 'no');

        $OUT .= $user->key .  " ";
    }
}
