File tree Expand file tree Collapse file tree 5 files changed +16
-9
lines changed
Expand file tree Collapse file tree 5 files changed +16
-9
lines changed Original file line number Diff line number Diff line change 11# Changelog
22All notable changes to this project will be documented in this file.
33
4- ## [ Development]
4+ ## [ 1.4.12] - Service release
5+
6+ ### Bugfixes
57
68- Allow custom mail domains with own certificates #2061 @myrevery
9+ - Fixed Replace tabulation with \u0009 in v-list-dns-records #2089 @codibit
710- Fix #2087 Exim 4.94 Did not send any email to remote servers.
811- Fixed #2082 v-delete-web-php creates always new config file
12+ - Add /home/user/.composer in open_basedir #2088 @anvme
913
1014## [ 1.4.11] - Service release
1115
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ HESTIA_INSTALL_DIR="$HESTIA/install/deb"
2323VERBOSE=' no'
2424
2525# Define software versions
26- HESTIA_INSTALL_VER=' 1.4.12~alpha '
26+ HESTIA_INSTALL_VER=' 1.4.12'
2727pma_v=' 5.1.1'
2828rc_v=" 1.4.11"
2929multiphp_v=(" 5.6" " 7.0" " 7.1" " 7.2" " 7.3" " 7.4" " 8.0" )
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ HESTIA_INSTALL_DIR="$HESTIA/install/deb"
2323VERBOSE=' no'
2424
2525# Define software versions
26- HESTIA_INSTALL_VER=' 1.4.12~alpha '
26+ HESTIA_INSTALL_VER=' 1.4.12'
2727pma_v=' 5.1.1'
2828rc_v=" 1.4.11"
2929multiphp_v=(" 5.6" " 7.0" " 7.1" " 7.2" " 7.3" " 7.4" " 8.0" )
Original file line number Diff line number Diff line change 66# ###### Place additional commands below. #######
77# ######################################################################################
88
9- if [ -f " /etc/exim4/exim4.conf.template" ]; then
10- sed -i ' s|OUTGOING_IP = /etc/exim4/domains/$sender_address_domain/ip|OUTGOING_IP = /etc/exim4/domains/${lookup{$sender_address_domain}dsearch{/etc/exim4/domains}}/ip|g' /etc/exim4/exim4.conf.template
11- sed -i ' s|SMTP_RELAY_FILE = ${if exists{/etc/exim4/domains/${sender_address_domain}/smtp_relay.conf}{/etc/exim4/domains/$sender_address_domain/smtp_relay.conf}{/etc/exim4/smtp_relay.conf}}|SMTP_RELAY_FILE = ${if exists{/etc/exim4/domains/${lookup{$sender_address_domain}dsearch{/etc/exim4/domains}}/smtp_relay.conf}{/etc/exim4/domains/${lookup{$sender_address_domain}dsearch{/etc/exim4/domains}}/smtp_relay.conf}{/etc/exim4/smtp_relay.conf}}|g' /etc/exim4/exim4.conf.template
12- fi
13-
9+ exim_version=$( exim4 --version | head -1 | awk ' {print $3}' | cut -f -2 -d .) ;
10+ if [ " $exim_version " = " 4.94" ]; then
11+ echo " [ ! ] Fix #2087 Unable send email with Exim 4.94"
12+ if [ -f " /etc/exim4/exim4.conf.template" ]; then
13+ sed -i ' s|OUTGOING_IP = /etc/exim4/domains/$sender_address_domain/ip|OUTGOING_IP = /etc/exim4/domains/${lookup{$sender_address_domain}dsearch{/etc/exim4/domains}}/ip|g' /etc/exim4/exim4.conf.template
14+ sed -i ' s|SMTP_RELAY_FILE = ${if exists{/etc/exim4/domains/${sender_address_domain}/smtp_relay.conf}{/etc/exim4/domains/$sender_address_domain/smtp_relay.conf}{/etc/exim4/smtp_relay.conf}}|SMTP_RELAY_FILE = ${if exists{/etc/exim4/domains/${lookup{$sender_address_domain}dsearch{/etc/exim4/domains}}/smtp_relay.conf}{/etc/exim4/domains/${lookup{$sender_address_domain}dsearch{/etc/exim4/domains}}/smtp_relay.conf}{/etc/exim4/smtp_relay.conf}}|g' /etc/exim4/exim4.conf.template
15+ fi
16+ fi
Original file line number Diff line number Diff line change 11Source: hestia
22Package: hestia
33Priority: optional
4- Version: 1.4.12~alpha
4+ Version: 1.4.12
55Section: admin
66Maintainer: HestiaCP <info@hestiacp.com>
77Homepage: https://www.hestiacp.com
You can’t perform that action at this time.
0 commit comments