-
Notifications
You must be signed in to change notification settings - Fork 216
/
roundcube
62 lines (52 loc) · 2.36 KB
/
roundcube
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/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.6.9'
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}"