Skip to content

Instantly share code, notes, and snippets.

View boscho87's full-sized avatar
🏠
Working from home

Simon Müller boscho87

🏠
Working from home
  • itsCoding
  • Switzerland
View GitHub Profile
@boscho87
boscho87 / ssmtp_mail_alias
Created August 13, 2018 16:42 — forked from SBejga/ssmtp_mail_alias
Bash Script as alias of "mail" using "ssmtp" in ubuntu. Main purpose is sending mails via munin by ssmtp instead of postfix.
#!/bin/bash
# mail syntax: mail -s "any mail subject string" any@mail.com
# or: mail "any mail subject string" any@mail.com
if [ $1 == "-s" ]
then
subject=$2
recip=$3
else
subject=$1
recip=$2