match updated upstream carddav config file

This commit is contained in:
meaz 2022-07-29 10:41:54 +02:00
parent b404bc9cb4
commit 0af6315548
Signed by: meaz
GPG Key ID: CD7A47B2F1ED43B4
1 changed files with 23 additions and 0 deletions

View File

@ -29,6 +29,28 @@
$prefs['_GLOBAL']['loglevel'] = \Psr\Log\LogLevel::WARNING;
$prefs['_GLOBAL']['loglevel_http'] = \Psr\Log\LogLevel::ERROR;
// Select addressbook from preset to use as Roundcube's collected recipients or collected/trusted senders addressbook,
// corresponding to the roundcube options of the same name available since roundcube 1.5.
// Note that only writeable addressbooks can be used for this. If you do not want to use these options, simply do not
// define them
// If no/several addressbooks match, the roundcube setting will not be set and stay with whatever is configured in roundcube
//$prefs['_GLOBAL']['collected_recipients'] = [
// // Key of the preset, i.e. whatever is used for <Presetname> in the template below
// 'preset' => '<Presetname>',
// // The placeholders that can be used in the url attribute can also be used inside these regular rexpressions
// // If both matchname and matchurl are given, both need to match for the addressbook to be used
// 'matchname' => '/collected recipients/i',
// 'matchurl' => '#http://carddav.example.com/abooks/%u/CollectedRecipients#',
//];
//$prefs['_GLOBAL']['collected_senders'] = [
// // Key of the preset, i.e. whatever is used for <Presetname> in the template below
// 'preset' => '<Presetname>',
// // The placeholders that can be used in the url attribute can also be used inside these regular rexpressions
// // If both matchname and matchurl are given, both need to match for the addressbook to be used
// 'matchname' => '/collected recipients/i',
// 'matchurl' => '#http://carddav.example.com/abooks/%u/CollectedRecipients#',
//];
//// ** ADDRESSBOOK PRESETS
// Each addressbook preset takes the following form:
@ -58,3 +80,4 @@ $prefs['{{ rcube_plugins_carddav_presetname }}'] = [
];
// vim: ts=4:sw=4:expandtab:fenc=utf8:ff=unix:tw=120