|
@@ -119,45 +119,6 @@ function email_create_template {
|
119
|
119
|
fi
|
120
|
120
|
}
|
121
|
121
|
|
122
|
|
-function email_install_tls {
|
123
|
|
- tls_config_file=/etc/exim4/conf.d/main/03_exim4-config_tlsoptions
|
124
|
|
- tls_auth_config_file=/etc/exim4/conf.d/auth/30_exim4-config_examples
|
125
|
|
-
|
126
|
|
- if [ ! -f $tls_config_file ]; then
|
127
|
|
- tls_config_file=/etc/exim4/exim4.conf.template
|
128
|
|
- tls_auth_config_file=$tls_config_file
|
129
|
|
- fi
|
130
|
|
- if [ ! -f /etc/ssl/certs/exim.dhparam ]; then
|
131
|
|
- ${PROJECT_NAME}-addcert -h exim --dhkey $DH_KEYLENGTH
|
132
|
|
- check_certificates exim
|
133
|
|
- cp /etc/ssl/certs/exim.dhparam /etc/exim4
|
134
|
|
- chown root:Debian-exim /etc/exim4/exim.dhparam
|
135
|
|
- chmod 640 /etc/exim4/exim.key /etc/exim4/exim.crt /etc/exim4/exim.dhparam
|
136
|
|
- fi
|
137
|
|
- if ! grep -q 'MAIN_TLS_ENABLE = true' $tls_config_file; then
|
138
|
|
- sed -i "/.ifdef MAIN_HARDCODE_PRIMARY_HOSTNAME/i\MAIN_HARDCODE_PRIMARY_HOSTNAME =\nMAIN_TLS_ENABLE = true" $tls_config_file
|
139
|
|
- fi
|
140
|
|
- if ! grep -q "tls_on_connect_ports=465" $tls_config_file; then
|
141
|
|
- sed -i '/SSL configuration for exim/i\tls_on_connect_ports=465' $tls_config_file
|
142
|
|
- fi
|
143
|
|
- if grep -q '# login_saslauthd_server' $tls_auth_config_file; then
|
144
|
|
- sed -i '/login_saslauthd_server/,/.endif/ s/# *//' $tls_auth_config_file
|
145
|
|
- fi
|
146
|
|
- if [ -f /etc/ssl/certs/${DEFAULT_DOMAIN_NAME}.pem ]; then
|
147
|
|
- if ! grep -q "MAIN_TLS_CERTKEY = /etc/ssl/certs/${DEFAULT_DOMAIN_NAME}.pem" $tls_config_file; then
|
148
|
|
- sed -i "/.ifdef MAIN_TLS_CERTKEY/i\MAIN_TLS_CERTKEY = /etc/ssl/certs/${DEFAULT_DOMAIN_NAME}.pem" $tls_config_file
|
149
|
|
- fi
|
150
|
|
- fi
|
151
|
|
- if [ -f /etc/ssl/private/${DEFAULT_DOMAIN_NAME}.key ]; then
|
152
|
|
- if ! grep -q "MAIN_TLS_PRIVATEKEY = /etc/ssl/private/${DEFAULT_DOMAIN_NAME}.key" $tls_config_file; then
|
153
|
|
- sed -i "/.ifdef MAIN_TLS_PRIVATEKEY/i\MAIN_TLS_PRIVATEKEY = /etc/ssl/private/${DEFAULT_DOMAIN_NAME}.key" $tls_config_file
|
154
|
|
- fi
|
155
|
|
- fi
|
156
|
|
- if ! grep -q "SMTPLISTENEROPTIONS='-oX 465:25:587" /etc/default/exim4; then
|
157
|
|
- sed -i "s|SMTPLISTENEROPTIONS=.*|SMTPLISTENEROPTIONS='-oX 465:25:587 -oP /var/run/exim4/exim.pid'|g" /etc/default/exim4
|
158
|
|
- fi
|
159
|
|
-}
|
160
|
|
-
|
161
|
122
|
function configure_email_onion {
|
162
|
123
|
if [[ $(is_completed $FUNCNAME) == "1" ]]; then
|
163
|
124
|
return
|