diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/dav.inc.php.sample | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/config/dav.inc.php.sample b/config/dav.inc.php.sample new file mode 100644 index 0000000..a136e60 --- /dev/null +++ b/config/dav.inc.php.sample @@ -0,0 +1,45 @@ +<?php + +/* + +-------------------------------------------------------------------------+ + | Configuration for the Kolab DAV server | + | | + | Copyright (C) 2013, Kolab Systems AG | + | | + | This program is free software: you can redistribute it and/or modify | + | it under the terms of the GNU Affero General Public License as | + | published by the Free Software Foundation, either version 3 of the | + | License, or (at your option) any later version. | + | | + | This program is distributed in the hope that it will be useful, | + | but WITHOUT ANY WARRANTY; without even the implied warranty of | + | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | + | GNU Affero General Public License for more details. | + | | + | You should have received a copy of the GNU Affero General Public License| + | along with this program. If not, see <http://www.gnu.org/licenses/>. | + | | + +-------------------------------------------------------------------------+ +*/ + +$rcmail_config = array(); + +// Log IMAP conversation to <log_dir>/imap or to syslog +$rcmail_config['imap_debug'] = false; + +// Log DAV requests to <log_dir>/davdebug +$rcmail_config['kolab_dav_debug'] = false; + +// IMAP server +$rcmail_config['default_host'] = '192.168.0.22'; +#$rcmail_config['default_host'] = 'localhost'; + +// Enables messages cache. Only 'db' cache is supported. +$rcmail_config['messages_cache'] = false; + +// Enable local cache for Kolab objects +$rcmail_config['kolab_cache'] = true; + +// User agent string written to kolab storage MIME messages +$rcmail_config['useragent'] = 'Kolab DAV Server libkolab/' . RCUBE_VERSION; + |