This file is indexed.

/etc/IlohaMail/defaults.inc is in ilohamail 0.8.14-0rc3sid6.2.

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
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
/********************************************************
	conf/defaults.inc
		
	PRE-CONDITION:
		$lang = Language to use (e.g. "eng/" or "jp/")
	PURPOSE:
		Provide central location for setting default
        values for user options.
********************************************************/
if ((!isset($lang))||(strlen($lang)<3)) $lang="eng/";
include("../lang/".$lang."init.inc");
if (!isset($lang_charset)) $lang_charset="ISO-8859-1";
if (!isset($rootdir)) $rootdir="";

if (isset($host)){
	$defaults_path="../conf/defaults.".$host.".inc";
	if (file_exists(realpath($defaults_path))){
		include($defaults_path);
		$included=true;
	}
}

if (!$included){
	include("../conf/defaults.generic.inc");
}
?>