hacks/forward-email-to-slack-webhook
John G G 32b86f0d54 Use python stdlib instead of requests (#1) 2019-03-29 03:54:07 -07:00
..
Makefile add email_to_webhook 2019-03-27 09:06:23 -07:00
README.md readme 2019-03-27 09:13:16 -07:00
email_to_webhook Use python stdlib instead of requests (#1) 2019-03-29 03:54:07 -07:00
install.sh multi arg command in .forward needs quotes 2019-03-27 09:08:58 -07:00

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.