/usr/share/kopano-webapp/init.php is in kopano-webapp-common 3.4.6+dfsg1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | <?php
// Load the release files (concatenated, compressed)
define("LOAD_RELEASE", 1);
// Load the debug files (concatenated, not compressed)
define("LOAD_DEBUG", 2);
// Load the original source files (for developers)
define("LOAD_SOURCE", 3);
// Defines the base path on the server, terminated by a slash
define('BASE_PATH', realpath(dirname(__FILE__)) . '/');
|