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.
50 lines
1.6 KiB
50 lines
1.6 KiB
#!/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
|