roundcubemail-plugins-kolab/plugins/kolab_files/config.inc.php.dist

19 lines
549 B
Text
Raw Normal View History

2013-02-08 14:30:48 +01:00
<?php
// URL of kolab-chwala installation
2014-08-25 09:07:31 +02:00
$config['kolab_files_url'] = 'https://localhost/kolab-chwala/public_html';
2013-02-08 14:30:48 +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');
// Name of the column to sort files list by
2014-08-25 09:07:31 +02:00
$config['kolab_files_sort_col'] = 'name';
// Order of the files list sort
2014-08-25 09:07:31 +02:00
$config['kolab_files_sort_order'] = 'asc';
// 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-02-08 14:30:48 +01:00
?>