Compare commits

...

2 Commits

Author SHA1 Message Date
Carl Bettermann
700401c28f changed recommendation in config aswell 2025-04-24 15:57:47 +02:00
Carl Bettermann
cb43f60b02 Set default privileges to none to prevent other users from accessing address books 2025-04-24 15:03:41 +02:00
2 changed files with 4 additions and 3 deletions

View File

@ -268,7 +268,7 @@ $c->admin_email = 'calendar-admin@example.com';
// 'type' => 'calendar',
// 'name' => 'calendar',
// 'displayname' => '%fn calendar',
// 'privileges' => null
// 'privileges' => array()
// )
// );

View File

@ -106,8 +106,9 @@ function CreateHomeCollections( $username, $default_timezone = null ) {
// XXX Should we not do this for ROOMS?
if( !empty($c->home_addressbook_name) )
$c->default_collections[] = array(
'type' => 'addressbook',
'name' => $c->home_addressbook_name
'type' => 'addressbook',
'name' => $c->home_addressbook_name,
'privileges' => array()
);
}