This commit is contained in:
Alexey Berezhok
2024-03-19 22:05:27 +03:00
commit 346a50856b
1572 changed files with 182163 additions and 0 deletions

49
bin/v-delete-sys-smtp Executable file
View File

@@ -0,0 +1,49 @@
#!/bin/bash
# info: Remove SMTP Account for logging, notification and internal mail
# options: NONE
#
# example: v-delete-sys-smtp
#
# This function allows configuring a SMTP account for the server to use
# for logging, notification and warn emails etc.
#----------------------------------------------------------#
# Variables & Functions #
#----------------------------------------------------------#
# 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"
#----------------------------------------------------------#
# Verifications #
#----------------------------------------------------------#
# Perform verification if read-only mode is enabled
check_hestia_demo_mode
#----------------------------------------------------------#
# Action #
#----------------------------------------------------------#
change_sys_value "USE_SERVER_SMTP" "false"
change_sys_value "SERVER_SMTP_HOST" ""
change_sys_value "SERVER_SMTP_PORT" ""
change_sys_value "SERVER_SMTP_SECURITY" ""
change_sys_value "SERVER_SMTP_USER" ""
change_sys_value "SERVER_SMTP_PASSWD" ""
change_sys_value "SERVER_SMTP_ADDR" ""
#----------------------------------------------------------#
# Hestia #
#----------------------------------------------------------#
# Logging
$BIN/v-log-action "system" "Info" "Mail" "Server SMTP disabled."
log_event "$OK" "$ARGUMENTS"
exit