initial commit of file from CVS for smeserver-hylafax on Sat Sep 7 20:28:13 AEST 2024

This commit is contained in:
Trevor Batley
2024-09-07 20:28:13 +10:00
parent 1fbad8bb1b
commit c445749682
24 changed files with 777 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
{
my $fax = $DB->get('fax')
|| $DB->new_record('fax', {type => 'domain'});
my $de = $fax->prop('Description');
return "" if $de;
$fax->set_prop('Content', 'Primary');
$fax->set_prop('Description', 'Domain for Sending Faxes');
$fax->set_prop('Nameservers', 'localhost');
}