File tree Expand file tree Collapse file tree 8 files changed +29
-6
lines changed
Expand file tree Collapse file tree 8 files changed +29
-6
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+ ## [ 1.4.5] - Service release
5+
6+ ### Bugfixes
7+
8+ - Revert #1943 and rework it to fix possible errors occuring on v-rebuild-cron-jobs.
9+ - Fixed #1956 to prevent reset of defined webmail client.
10+
411## [ 1.4.4] - Service release
512
613### Features
Original file line number Diff line number Diff line change 22
33[ Hestia Control Panel] ( https://www.hestiacp.com/ )
44==================================================
5- ** Latest stable release:** Version 1.4.4 | [ View Changelog] ( https://github.com/hestiacp/hestiacp/blob/release/CHANGELOG.md ) <br >
5+ ** Latest stable release:** Version 1.4.5 | [ View Changelog] ( https://github.com/hestiacp/hestiacp/blob/release/CHANGELOG.md ) <br >
66
77** Web:** [ www.hestiacp.com ] ( https://www.hestiacp.com/ ) <br >
88** Documentation:** [ docs.hestiacp.com] ( https://docs.hestiacp.com/ ) <br >
Original file line number Diff line number Diff line change @@ -610,11 +610,20 @@ sync_cron_jobs() {
610610 else
611611 crontab=" /var/spool/cron/$user "
612612 fi
613- > $crontab
613+
614+ # remove file if exists
615+ if [ -e " $crontab " ]; then
616+ rm -f $crontab
617+ fi
618+
619+ # touch new crontab file
620+ touch $crontab
621+
614622 if [ " $CRON_REPORTS " = ' yes' ]; then
615623 echo " MAILTO=$CONTACT " > $crontab
616624 echo ' CONTENT_TYPE="text/plain; charset=utf-8"' >> $crontab
617625 fi
626+
618627 while read line; do
619628 parse_object_kv_list " $line "
620629 if [ " $SUSPENDED " = ' no' ]; then
Original file line number Diff line number Diff line change @@ -590,7 +590,7 @@ rebuild_mail_domain_conf() {
590590 fi
591591
592592 # Webamil client
593- if [ " $WEBAMIL " = ' ' ]; then
593+ if [ " $WEBMAIL " = ' ' ]; then
594594 $HESTIA /bin/v-add-mail-domain-webmail $user $domain ' roundcube' ' no'
595595 fi
596596
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.4 '
26+ HESTIA_INSTALL_VER=' 1.4.5 '
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.4 '
26+ HESTIA_INSTALL_VER=' 1.4.5 '
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 1+ #! /bin/bash
2+
3+ # Hestia Control Panel upgrade script for target version 1.4.5
4+
5+ # ######################################################################################
6+ # ###### Place additional commands below. #######
7+ # ######################################################################################
Original file line number Diff line number Diff line change 11Source: hestia
22Package: hestia
33Priority: optional
4- Version: 1.4.4
4+ Version: 1.4.5
55Section: admin
66Maintainer: HestiaCP <info@hestiacp.com>
77Homepage: https://www.hestiacp.com
You can’t perform that action at this time.
0 commit comments