next up previous contents
Next: Running SQLWhite Up: Configuration Previous: Activate the Init Script   Contents

Optional- Integrating with Xerxes E-Mail Administrator

If you wish to configure SQLWhite to have Xerxes work as it's frontend, you must use MySQL as the database backend. Also, you must connect to the same database that Xerxes is using to administer email. For example: If your Xerxes database configuration looks like this:
$DB = array(
        'TYPE'  => 'mysql',
        'USER'  => 'mysqluser',
        'PASS'  => 'password',
        'PROTO' => 'tcp',       // set to "tcp" for TCP/IP
        'HOST'  => '127.0.0.1',
        'NAME'  => 'mail'
);
Then your SQLWhite database configuration will look like this:
db_type = mysql
db_name = mail
# Note: the following are not used with SQLite
db_host = localhost
db_user = mysqluser
db_pass = password
And finally, in the Xerxes configuration file, this must also be set:
$sqlwhite = 1;



Amin Astaneh 2007-09-18