You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							54 lines
						
					
					
						
							1.6 KiB
						
					
					
				
			
		
		
	
	
							54 lines
						
					
					
						
							1.6 KiB
						
					
					
				#!/bin/bash
 | 
						|
# info: update mail templates
 | 
						|
# options: [RESTART] [SKIP]
 | 
						|
#
 | 
						|
# example: v-update-mail-templates
 | 
						|
#
 | 
						|
# This function for obtaining updated webmail templates from Hestia package.
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                Variables & Functions                     #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
# Argument definition
 | 
						|
restart=$1
 | 
						|
skip=$2
 | 
						|
 | 
						|
# Includes
 | 
						|
# shellcheck source=/etc/hestiacp/hestia.conf
 | 
						|
source /etc/hestiacp/hestia.conf
 | 
						|
# shellcheck source=/usr/local/hestia/func/main.sh
 | 
						|
source $HESTIA/func/main.sh
 | 
						|
# load config file
 | 
						|
source_conf "$HESTIA/conf/hestia.conf"
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                       Action                             #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
# Update templates
 | 
						|
cp -rf $HESTIA_INSTALL_DIR/templates/mail $HESTIA/data/templates/
 | 
						|
 | 
						|
# Rebuild mail domains if mail services are enabled
 | 
						|
if [ -z "$skip" ]; then
 | 
						|
	if [ -n "$MAIL_SYSTEM" ]; then
 | 
						|
		for user in $($BIN/v-list-sys-users plain); do
 | 
						|
			$BIN/v-rebuild-mail-domains "$user" no
 | 
						|
		done
 | 
						|
	fi
 | 
						|
fi
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                       Hestia                             #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
if [ -n "$restart" ] || [ "$restart" == "yes" ]; then
 | 
						|
	# Restarting web server
 | 
						|
	$BIN/v-restart-web "$restart"
 | 
						|
	check_result $? "restart" > /dev/null 2>&1
 | 
						|
 | 
						|
	$BIN/v-restart-proxy "$restart"
 | 
						|
	check_result $? "restart" > /dev/null 2>&1
 | 
						|
fi
 | 
						|
$BIN/v-log-action "system" "Info" "Updates" "Default mail domain templates updated."
 | 
						|
exit
 |