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.
 
 
 
 
 
 
hacks/forward-email-to-slack-webhook
John G G 32b86f0d54 Use python stdlib instead of requests (#1) 5 years ago
..
Makefile add email_to_webhook 5 years ago
README.md readme 5 years ago
email_to_webhook Use python stdlib instead of requests (#1) 5 years ago
install.sh multi arg command in .forward needs quotes 5 years ago

README.md

send emails to root to slack

slack side

First you must go here and create a new slack app and choose a channel and get a webhook URL.

mkdir -p /etc/environment.d
echo 'https://hooks.slack.com/services/XXXXXX/XXXXXXX/xxxxxxxxxxxxxxxx' >
    /etc/environment.d/SLACK_WEBHOOK_URL

prerequisites

export DEBIAN_FRONTEND=noninteractive
apt update
apt -y install git python3 make postfix daemontools

install helper

mkdir -p /etc/environment.d
git clone https://github.com/sneak/hacks.git /tmp/hacks && \
    cd /tmp/hacks/forward-email-to-slack-webhook && \
    make install

example usage

apt install -y smartmontools

Now you'll get a slack notification when your disk is going to die, because smartmontools emails root by default when it detects problems.