smeserver-minilist/root/etc/e-smith/templates/var/service/qpsmtpd/config/badrcptto_ext/20InternalMinilist
2020-12-18 12:03:29 +01:00

11 lines
287 B
Plaintext

{
$OUT .= '';
foreach my $list ( $a->get_all_by_prop( type => 'minilist' ) ){
next unless ( $list->prop('Visible') || '') =~ m/^(internal|none)$/i;
foreach my $domain ( $d->domains ){
$OUT .= $list->key . '@' . $domain->key . "\n";
}
}
}