mirror of
https://github.com/sovereign/sovereign.git
synced 2025-03-31 21:34:06 +00:00

Modify the configuration files to finalize the install of Roundcube. The configuration changes are intended to be identical to how Roundcube was configured on Wheezy. However, Jessie ships with PHP 5.6. This version of PHP enforces SSL certificate checking by default. This means using 127.0.0.1 or localhost in SSL connection strings fails. `{{ mail_server_hostname }}` is used in these places instead.
19 lines
565 B
Django/Jinja
19 lines
565 B
Django/Jinja
<?php
|
|
##
|
|
## database access settings in php format
|
|
## automatically generated from /etc/dbconfig-common/roundcube.conf
|
|
## by /usr/sbin/dbconfig-generate-include
|
|
##
|
|
## by default this file is managed via ucf, so you shouldn't have to
|
|
## worry about manual changes being silently discarded. *however*,
|
|
## you'll probably also want to edit the configuration file mentioned
|
|
## above too.
|
|
##
|
|
$dbuser='{{ webmail_db_username }}';
|
|
$dbpass='{{ webmail_db_password }}';
|
|
$basepath='';
|
|
$dbname='{{ webmail_db_database }}';
|
|
$dbserver='localhost';
|
|
$dbport='';
|
|
$dbtype='pgsql';
|