~ubuntu-branches/ubuntu/maverick/ilohamail/maverick

« back to all changes in this revision

Viewing changes to IlohaMail/conf/db_conf.php

  • Committer: Bazaar Package Importer
  • Author(s): Joerg Jaspert
  • Date: 2004-02-04 13:44:37 UTC
  • Revision ID: james.westby@ubuntu.com-20040204134437-kz8j3ui2qa7oq8z2
Tags: upstream-0.8.12
ImportĀ upstreamĀ versionĀ 0.8.12

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/********************************************************
 
3
 
 
4
    conf/db_conf.php
 
5
    
 
6
        PURPOSE:
 
7
                Provide central location for configuring DB-related variables.
 
8
                This file replaces (or will replace) the mysqlrc.inc file.
 
9
 
 
10
********************************************************/
 
11
 
 
12
// DB connection/login info
 
13
$DB_HOST="";
 
14
$DB_USER="";
 
15
$DB_PASSWORD="";
 
16
 
 
17
// database name
 
18
// ***REQUIRED***
 
19
$DB_NAME="webmail";
 
20
 
 
21
// database brand
 
22
// ***REQUIRED***
 
23
$DB_TYPE="MySQL";
 
24
 
 
25
// Users table name
 
26
// ***REQUIRED***
 
27
$DB_USERS_TABLE = "users";
 
28
 
 
29
// Sessions table name
 
30
// ***REQUIRED***
 
31
$DB_SESSIONS_TABLE = "sessions";
 
32
 
 
33
// Contacts table name
 
34
$DB_CONTACTS_TABLE = "contacts";
 
35
 
 
36
// Prefs table name
 
37
$DB_PREFS_TABLE = "prefs";
 
38
 
 
39
// Colors table name
 
40
$DB_COLORS_TABLE = "colors";
 
41
 
 
42
// Identities table name
 
43
$DB_IDENTITIES_TABLE = "identities";
 
44
 
 
45
// Calendars table name
 
46
$DB_CALENDAR_TABLE = "calendar";
 
47
 
 
48
// Bookmarks table name
 
49
$DB_BOOKMARKS_TABLE = "bookmarks";
 
50
 
 
51
// Bookmarks table name
 
52
//              Optional: Comment out to use file based backend
 
53
$DB_CACHE_TABLE = "cache";
 
54
 
 
55
// Log table name
 
56
//              Optional: Comment out to use file based backend
 
57
//$DB_LOG_TABLE = "user_log";
 
58
 
 
59
// Use persistent connections
 
60
//              Optional: Set to 'true' to enable
 
61
$DB_PERSISTENT = false;
 
62
 
 
63
?>