2013-05-20 23:09:51 +02:00
|
|
|
<?php
|
|
|
|
/** Disable the import plugin for all clients */
|
2013-06-24 22:21:09 +02:00
|
|
|
define('PLUGIN_CONTACTIMPORTER_USER_DEFAULT_ENABLE', false);
|
2013-05-20 23:09:51 +02:00
|
|
|
/** Disable the export feature for all clients */
|
2016-06-13 10:18:47 +02:00
|
|
|
define('PLUGIN_CONTACTIMPORTER_USER_DEFAULT_ENABLE_EXPORT', false);
|
2013-05-20 23:09:51 +02:00
|
|
|
|
|
|
|
/** The default addressbook to import to (default: contact)*/
|
|
|
|
define('PLUGIN_CONTACTIMPORTER_DEFAULT', "contact");
|
|
|
|
|
|
|
|
/** Tempory path for uploaded files... */
|
|
|
|
define('PLUGIN_CONTACTIMPORTER_TMP_UPLOAD', "/var/lib/zarafa-webapp/tmp/");
|
|
|
|
?>
|