26 lines
788 B
Django/Jinja
26 lines
788 B
Django/Jinja
<?php
|
|
|
|
$prefs['_GLOBAL']['fixed'] = true;
|
|
$prefs['_GLOBAL']['loglevel'] = \Psr\Log\LogLevel::WARNING;
|
|
$prefs['_GLOBAL']['loglevel_http'] = \Psr\Log\LogLevel::ERROR;
|
|
$prefs['_GLOBAL']['default_addressbook'] = [
|
|
'preset' => 'Personal',
|
|
];
|
|
|
|
$prefs['Personal'] = [
|
|
'accountname' => 'Nextcloud',
|
|
'username' => '%u',
|
|
'password' => '%p',
|
|
'discovery_url' => 'https://{{ roundcube_carddav_discovery_url }}:443/remote.php/carddav/addressbooks/%u/',
|
|
'rediscover_time' => '24:00',
|
|
'hide' => false,
|
|
'preemptive_basic_auth' => false,
|
|
'ssl_noverify' => false,
|
|
'active' => true,
|
|
'readonly' => true,
|
|
'refresh_time' => '24:00',
|
|
'use_categories' => true,
|
|
'fixed' => [],
|
|
'require_always_email' => false,
|
|
];
|