mirror of
https://github.com/iredmail/iRedMail
synced 2026-06-08 14:51:59 +00:00
63 lines
2.4 KiB
Bash
63 lines
2.4 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Author: Zhang Huangbin (zhb _at_ iredmail.org)
|
|
|
|
#---------------------------------------------------------------------
|
|
# This file is part of iRedMail, which is an open source mail server
|
|
# solution for Red Hat(R) Enterprise Linux, CentOS, Debian and Ubuntu.
|
|
#
|
|
# iRedMail is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# iRedMail is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with iRedMail. If not, see <http://www.gnu.org/licenses/>.
|
|
#---------------------------------------------------------------------
|
|
|
|
# ---------------------------------------
|
|
# RoundcubeMail. http://roundcube.net
|
|
# ---------------------------------------
|
|
export RCM_VERSION='1.7.1'
|
|
export RCM_TARBALL="roundcubemail-${RCM_VERSION}-complete.tar.gz"
|
|
export RCM_USE_SOURCE='YES'
|
|
|
|
if [ X"${DISTRO}" == X'FREEBSD' ]; then
|
|
# Install via ports tree
|
|
export RCM_USE_SOURCE='NO'
|
|
fi
|
|
|
|
if [ X"${RCM_USE_SOURCE}" == X'YES' ]; then
|
|
export RCM_HTTPD_ROOT="${HTTPD_SERVERROOT}/roundcubemail-${RCM_VERSION}"
|
|
export RCM_HTTPD_ROOT_SYMBOL_LINK="${HTTPD_SERVERROOT}/roundcubemail"
|
|
else
|
|
if [ X"${DISTRO}" == X'FREEBSD' ]; then
|
|
export RCM_HTTPD_ROOT="${HTTPD_SERVERROOT}/roundcube"
|
|
export RCM_HTTPD_ROOT_SYMBOL_LINK="${RCM_HTTPD_ROOT}"
|
|
fi
|
|
fi
|
|
|
|
export RCM_CONF_DIR="${RCM_HTTPD_ROOT}/config"
|
|
export RCM_CONF="${RCM_CONF_DIR}/config.inc.php"
|
|
|
|
# Syslog log file.
|
|
export RCM_LOGFILE="${MAILLOG}"
|
|
|
|
# Database setting.
|
|
export RCM_DB_NAME="roundcubemail"
|
|
export RCM_DB_USER="roundcube"
|
|
|
|
# this key is used to encrypt the users imap password which is stored
|
|
# in the session record (and the client cookie if remember password is enabled).
|
|
# please provide a string of exactly 24 chars.
|
|
export tmp_rcm_des_key="$(${RANDOM_STRING} | cut -c-24)"
|
|
export RCM_DES_KEY="${tmp_rcm_des_key}"
|
|
|
|
# Directory used to store PGP keys generated with Roundcube plugin `enigma`
|
|
export RCM_PLUGIN_ENIGMA_PGP_HOMEDIR="${RCM_PLUGIN_ENIGMA_PGP_HOMEDIR:=${STORAGE_BASE_DIR}/pgp-keys}"
|