75 lines
1.5 KiB
Plaintext
75 lines
1.5 KiB
Plaintext
## - Rounfcube environment for server
|
|
## -
|
|
## - a.mx.oopen.de (webmail.oopen.de)
|
|
## -
|
|
|
|
## ----------------------
|
|
## - webmail.oopen.de
|
|
## -
|
|
SRC_BASE_DIR=/usr/local/src/mailsystem
|
|
SRC_ARCHIVE_DIR=${SRC_BASE_DIR}/tarballs
|
|
|
|
ROUNDCUBE_VERSION=1.2.2
|
|
|
|
SPAM_FOLDER_NAME=Spam
|
|
|
|
WEBSITE=webmail.oopen.de
|
|
|
|
IPV4=83.223.86.91
|
|
IPV6=2a01:30:0:13:2f7:50ff:fed2:cef7
|
|
|
|
WEBMASTER_EMAIL=admin@oopen.de
|
|
WEBMAIL_BASEDIR=/var/www/webmail.oopen.de
|
|
WEBMAIL_TMPDIR=${WEBMAIL_BASEDIR}/temp
|
|
|
|
WEBSERVER_USER=www-data
|
|
WEBSERVER_GROUP=www-data
|
|
|
|
APACHE_LOG_DIR=${WEBMAIL_BASEDIR}/logs
|
|
|
|
#APACHE_SERVER_CERT=webmail.oopen.de-bundle.crt
|
|
#APACHE_SERVER_KEY=webmail.oopen.de.key
|
|
APACHE_SERVER_CERT=server-bundle.crt
|
|
APACHE_SERVER_KEY=server.key
|
|
|
|
_use_mod_php=false
|
|
|
|
## - Leave empty if not needed
|
|
## -
|
|
#CERT_ChainFile=
|
|
|
|
|
|
## - apache installed from debian package system ?
|
|
## -
|
|
_apache_debian=false
|
|
|
|
## - if installed from source, specify vhost directory
|
|
## -
|
|
_vhost_dir=/usr/local/apache2/conf/vhosts
|
|
_apache_cert_dir=/usr/local/apache2/conf
|
|
|
|
if $_apache_debian ; then
|
|
_vhost_dir=/etc/apache2/sites-available
|
|
_apache_cert_dir=/etc/apache2
|
|
fi
|
|
|
|
_SSLCertificateChainFile=""
|
|
if [ -n "$CERT_ChainFile" ];then
|
|
_SSLCertificateChainFile="SSLCertificateChainFile ${_apache_cert_dir}/$CERT_ChainFile"
|
|
fi
|
|
|
|
_autoreply_domain=autoreply.oopen.de
|
|
|
|
_db_type=pgsql
|
|
#_db_type=mysql
|
|
|
|
_db_host=localhost
|
|
_db_user=roundcube
|
|
_db_pass=3Dsz3j5R
|
|
_db_name=roundcubemail
|
|
|
|
#_mysql_rootuser=root
|
|
#_mysql_rootpass=<root-pass>
|
|
## -
|
|
## - END: webmail.oopen.de
|