Hi,
I modified a copy of /etc/e-smith/templates-user/.qmail/90local in /etc/e-smith/templates-user-custom/.qmail/90local as follows
{
# vim: ft=perl:
return '# No local delivery'
unless ($props{EmailForward} =~ /^(local|both)$/);
my $NullDelivery = $props{ToNull} || 'No';
my $DeliverTo = './Maildir/';
if ($NullDelivery eq 'Yes')
{
$DeliverTo = "# All to the bit bucket\n/dev/null/";
}
else
{
$DeliverTo = "# No null\n./Maildir/";
}
return $DeliverTo;
}
db accounts setprop nomailuser ToNull Yes
Comments?