initial commit of file from CVS for e-smith-email on Wed 12 Jul 08:53:55 BST 2023

This commit is contained in:
Brian Read
2023-07-12 08:53:55 +01:00
parent 3e32600b26
commit 7b4659df54
267 changed files with 10708 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
{
my $mailfront = $DB->get("smtpfront-qmail") or return;
my $qpsmtpd = $DB->get("qpsmtpd") ||
$DB->new_record("qpsmtpd", { type => "service" });
$qpsmtpd->merge_props($mailfront->props);
$qpsmtpd->delete_prop($_) for ( qw(Patterns PatternsFile) );
$mailfront->delete;
}