This file is indexed.

/etc/IlohaMail/db_conf.php 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
/********************************************************

    conf/db_conf.php
    
	PURPOSE:
		Provide central location for configuring DB-related variables.
		This file replaces (or will replace) the mysqlrc.inc file.

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

// DB connection/login info
$DB_HOST="";
$DB_USER="";
$DB_PASSWORD="";

// database name
// ***REQUIRED***
$DB_NAME="webmail";

// database brand
// ***REQUIRED***
$DB_TYPE="MySQL";

// Users table name
// ***REQUIRED***
$DB_USERS_TABLE = "users";

// Sessions table name
// ***REQUIRED***
$DB_SESSIONS_TABLE = "sessions";

// Contacts table name
$DB_CONTACTS_TABLE = "contacts";

// Prefs table name
$DB_PREFS_TABLE = "prefs";

// Colors table name
$DB_COLORS_TABLE = "colors";

// Identities table name
$DB_IDENTITIES_TABLE = "identities";

// Calendars table name
$DB_CALENDAR_TABLE = "calendar";

// Bookmarks table name
$DB_BOOKMARKS_TABLE = "bookmarks";

// Bookmarks table name
//		Optional: Comment out to use file based backend
$DB_CACHE_TABLE = "cache";

// Log table name
//		Optional: Comment out to use file based backend
//$DB_LOG_TABLE = "user_log";

// Use persistent connections
//		Optional: Set to 'true' to enable
$DB_PERSISTENT = true;

?>