Sharing

2013年5月27日 星期一

Postfix


Introduction

簡單版
https://www.digitalocean.com/community/articles/how-to-install-and-setup-postfix-on-ubuntu-12-04

超級專業版
https://help.ubuntu.com/community/Postfix

Installation

$ sudo apt-get install postfix
$ sudo apt-get install mailutils


Configuration

/etc/postfix/main.cf 的內容
# 改成你的 hostname, 在安裝時應該就會主動抓到目前的 hostname, 所以不用修改
myhostname = pjack-VirtualBox
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
# 預設 mail server 在本地, 但如果有其他的 mail server, 請修改 mydestination
#mydestination = pjack-VirtualBox, localhost.localdomain, , localhost
mydestination = xxx.tw.yyy.org
# 預設是空的, 有需要可以加上去
relayhost = xxx-mailrelay.tw.yyy.org


Verification


不管執行那一種, 不久後應該就會收到信了!
# 第一種測試
$ echo "test content" | mail -s "test subject" pjack.chen@gmail.com

# 第二種測試
$ sendmail sample-email@example.org
hihi
^D

沒有留言: