13 lines
249 B
Plaintext
13 lines
249 B
Plaintext
{
|
|
# 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');
|
|
|
|
}
|
|
}
|
|
|