Browse Source

refactor(info_messages): Remove Mailgun alert

This commit refactors the `info_messages.sh` module by removing the Mailgun (email) alert functionality. The code changes remove the corresponding section that displays the Mailgun alert status in the info message script. This change simplifies and streamlines the code by eliminating unused functionality.
pull/4332/head
Daniel Gibbs 2 years ago
parent
commit
feddfbf49c
No known key found for this signature in database GPG Key ID: 2076B128385E8C55
  1. 3
      lgsm/modules/info_messages.sh

3
lgsm/modules/info_messages.sh

@ -506,7 +506,6 @@ fn_info_message_script() {
# Email alert: off # Email alert: off
# Gotify alert: off # Gotify alert: off
# IFTTT alert: off # IFTTT alert: off
# Mailgun (email) alert: off
# Pushbullet alert: off # Pushbullet alert: off
# Pushover alert: off # Pushover alert: off
# Rocketchat alert: off # Rocketchat alert: off
@ -550,8 +549,6 @@ fn_info_message_script() {
echo -e "${lightblue}Gotify alert:\t${default}${gotifyalert}" echo -e "${lightblue}Gotify alert:\t${default}${gotifyalert}"
# IFTTT alert # IFTTT alert
echo -e "${lightblue}IFTTT alert:\t${default}${iftttalert}" echo -e "${lightblue}IFTTT alert:\t${default}${iftttalert}"
# Mailgun alert
echo -e "${lightblue}Mailgun (email) alert:\t${default}${mailgunalert}"
# Pushbullet alert # Pushbullet alert
echo -e "${lightblue}Pushbullet alert:\t${default}${pushbulletalert}" echo -e "${lightblue}Pushbullet alert:\t${default}${pushbulletalert}"
# Pushover alert # Pushover alert

Loading…
Cancel
Save