Add support for the Visible prop on minilists

This commit is contained in:
Daniel Berteaud 2020-12-18 11:37:08 +01:00
parent ed7d9791bd
commit 25be7c21b4

View File

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