This file is indexed.

/usr/share/IlohaMail/include/langs.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
/********************************************************

	AUTHOR: Ryo Chijiiwa <ryo@ilohamail.org>
	FILE: include/langs.inc
	PURPOSE:
		Provide centralized location for keeping track of 
		available languages and character sets

********************************************************/

$languages=array(
	"eng/"=>"English (US)",
	"eng_GB/"=>"English (GB)",
	"ar/"=>"Arabic",
	"bg/"=>"Bulgarian",
	"cat/"=>"Catalan",
	"tw/"=>"Chinese (BIG5)",
	"cn/"=>"Chinese(GB2312)",
	"cz/"=>"Czech",
	"dk/"=>"Dansk",
	"de/" => "Deutsch",
	"es/" => "Espa&ntilde;ol",
	"eo/" => "Esperanto",
	"fr/"=>"Fran&ccedil;ais", 
	"ga/"=>"Galician",
	'el/'=>'Greek',
	"hu/"=>"Hungarian",
	"it/"=>"Italiano",
	"jp/"=>"Japanese", 
	"kr/"=>"Korean",
	"nl/"=>"Nederlands",
	"no/"=>"Norwegian (bm)",
	"nn_NO/"=>"Norwegian (nn)",
	"pl/"=>"Polski",
	"pt/"=>"Portuguese (Standard)",
	"br/"=>"Portuguese (Brazilian)",
	"ro/"=>"Romanian",
	"ru/"=>"Russian",
	"se/"=>"Swedish",
	"si/"=>"Slovenian",
	"tr/"=>"Turkish",
	"vn/"=>"Vietnamese"
);

$charsets=array(
	"US-ASCII"=>"ASCII (English)", 
	"X-EUC-JP"=>"EUC-JP (Japanese)", 
	"EUC-KR"=>"EUC-KR (Korean)",
	"ISO-8859-1"=>"ISO-8859-1 (Latin-1)",
	"ISO-8859-2"=>"ISO-8895-2",
	"ISO-8859-9"=>"ISO-8895-9",
	'ISO-8859-7'=>'ISO-8859-7',
	'ISO-8859-15'=>'ISO-8859-15',
	"BIG5"=>"BIG5 (Chinese)",
	"GB2312"=>"GB2312 (Chinese)",
	"UTF-8" => "UTF-8",
	"Windows-1251" => "Windows-1251 (Cyrillic)",
	'Windows-1253' => 'Windows-1253',
	"Windows-1255" => "Windows-1255 (Hebrew)",
	"Windows-1256" => "Windows-1256 (Arabic)"
);
?>