# Shared group
{
    return "#/!\\=============> DelegateMailServer is set" if ($DelegateMailServer && ($DelegateMailServer !~ /^\s*$/));
    return "#/!\\=============> no virtual domain" if $mydomains =~ /^\s*$/;
    use esmith::AccountsDB;
    my $a = esmith::AccountsDB->open_ro;
    $OUT = '/^shared@('.$mydomains.')$/'."\t\t\t";

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

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