Jean-Philippe Pialasse
2ac5875c1c
- move qmail template from qpsmtpd [SME: 9492] badrcptto,badmailfrom,rcpthosts are for qmail-smtpd, they were used by qpsmtpd as a direct remplacement, some file override them now, moving to qmail alternative would be to drop them as long as qpsmptd is used in front
17 lines
376 B
Plaintext
17 lines
376 B
Plaintext
{
|
|
foreach my $account ( keys %Accounts )
|
|
{
|
|
next unless ( exists $Accounts{$account}{Visible}
|
|
and $Accounts{$account}{Visible} eq "internal" );
|
|
|
|
$OUT .= "$account\n";
|
|
$OUT .= "$account\@$DomainName\n";
|
|
|
|
foreach my $domain ( keys %Domains )
|
|
{
|
|
next unless $Domains{$domain}{type} eq "domain";
|
|
$OUT .= "$account\@$domain\n";
|
|
}
|
|
}
|
|
}
|