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

47
bin/v-delete-sys-smtp-relay Executable file
View File

@@ -0,0 +1,47 @@
#!/bin/bash
# info: disable system wide smtp relay support
# options:
#
# example: v-delete-sys-smtp-relay
#
# This function disables system wide smtp relay support.
#----------------------------------------------------------#
# 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 "SMTP_RELAY" "false"
change_sys_value "SMTP_RELAY_HOST" ""
change_sys_value "SMTP_RELAY_PORT" ""
change_sys_value "SMTP_RELAY_USER" ""
rm -f /etc/exim4/smtp_relay.conf
#----------------------------------------------------------#
# Hestia #
#----------------------------------------------------------#
# Logging
$BIN/v-log-action "system" "Info" "Mail" "Global SMTP Relay disabled."
log_event "$OK" "$ARGUMENTS"
exit