sovereign/roles/webmail/templates/etc_roundcube_debian-db.php.j2
Mike Ashley a0b0621a85 Configure roundcube
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.
2016-03-05 07:29:05 -05:00

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';