close

在 ubuntu 11.04 上寫了一個簡單的 TCP 監控Service有沒有掛掉, 

掛掉後重新up然後用 mail 指令寄出通知提醒一下自己要上去檢查看看

但是租的機器是VPS, 也不想在 Server 上裝 mail server浪費資源

所以決定用 Gmail 來處理掉這個

 

# apt-get install heirloom-mailx

加上設定

vi ~/.mailrc

account gmail {
set smtp-use-starttls
set smtp=smtp://smtp.gmail.com:587
set smtp-auth=login
set smtp-auth-user=xxxxxxx@gmail.com
set smtp-auth-password=密碼
set from="xxxxxxx@gmail.com"
}

測試一下
echo 'test 信件內容' |mailx -v -A gmail -s "TEST 標題" vice@xxxxxx.com

收到信大功告成
arrow
arrow
    創作者介紹
    創作者 Vice 的頭像
    Vice

    #!/bin/sh I.T

    Vice 發表在 痞客邦 留言(0) 人氣()