initial commit of file from CVS for smeserver-horde on Sat Mar 23 16:05:15 AEDT 2024

This commit is contained in:
Trevor Batley
2024-03-23 16:05:15 +11:00
parent 21bc0fdf89
commit 46a910a743
129 changed files with 4154 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
{
# Remove freebusy db entry for all users. Value is now saved directly to LDAP on SME8
foreach my $account ($DB->get_all)
{
next unless ($account->prop('type') eq 'user');
$account->delete_prop('FreeBusy');
}
}