2013-02-08 14:30:48 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// URL of kolab-chwala installation
|
2016-01-18 11:23:02 +01:00
|
|
|
$config['kolab_files_url'] = '/chwala/';
|
2013-02-08 14:30:48 +01:00
|
|
|
|
2013-02-28 16:01:56 +01:00
|
|
|
// List of files list columns. Available are: name, size, mtime, type
|
2014-08-25 09:07:31 +02:00
|
|
|
$config['kolab_files_list_cols'] = array('name', 'mtime', 'size');
|
2013-02-28 16:01:56 +01:00
|
|
|
|
|
|
|
// Name of the column to sort files list by
|
2014-08-25 09:07:31 +02:00
|
|
|
$config['kolab_files_sort_col'] = 'name';
|
2013-02-28 16:01:56 +01:00
|
|
|
|
|
|
|
// Order of the files list sort
|
2014-08-25 09:07:31 +02:00
|
|
|
$config['kolab_files_sort_order'] = 'asc';
|
2013-02-28 16:01:56 +01:00
|
|
|
|
2016-01-29 11:24:02 +01:00
|
|
|
// List of editing sessions list columns. Available are: name, owner
|
|
|
|
$config['kolab_files_sessions_list_cols'] = array('name', 'owner');
|
|
|
|
|
|
|
|
// Name of the column to sort sessions list by
|
|
|
|
$config['kolab_files_sessions_sort_col'] = 'name';
|
|
|
|
|
|
|
|
// Order of the sessions list sort
|
|
|
|
$config['kolab_files_sessions_sort_order'] = 'asc';
|
|
|
|
|
2013-05-16 13:08:58 +02:00
|
|
|
// Number of concurent requests for searching and collections listing. Default: 1
|
2014-08-25 09:07:31 +02:00
|
|
|
$config['kolab_files_search_threads'] = 1;
|
2013-05-16 13:08:58 +02:00
|
|
|
|
2015-12-02 12:41:57 +01:00
|
|
|
// LDAP addressbook that would be searched for user names autocomplete.
|
|
|
|
// That should be an array refering to the $config['ldap_public'] array key
|
|
|
|
// or complete addressbook configuration array.
|
2016-02-03 15:20:49 +01:00
|
|
|
$config['kolab_files_users_source'] = 'kolab_addressbook';
|
2015-12-02 12:41:57 +01:00
|
|
|
|
|
|
|
// The LDAP attribute which will be used as ACL user identifier
|
|
|
|
$config['kolab_files_users_field'] = 'mail';
|
|
|
|
|
|
|
|
// The LDAP search filter will be &'d with search queries
|
|
|
|
$config['kolab_files_users_filter'] = '';
|