smeserver-horde/root/etc/e-smith/db/accounts/migrate/90FreebusyDelete

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');
}
}