Mutt中文FAQ
% make makefiles CCARGS=-DUSE_SASL_AUTH -I/usr/local/include AUXLIBS=-L/usr/local/lib -lsasl
然后安裝
% make; make install
為了 postfix 能夠正確發(fā)送本地郵件,請在 /etc/postfix/main.cf 加上:
myhostname = tu140066.tsinghua.edu.cn mydestination = wangyin.com, $myhostname, localhost.$mydomain
$myhostname 指明了你的主機域名,清華大學(xué)的網(wǎng)絡(luò)給了每個人一個域名,其實就是 tuxxxxxx.tsinghua.edu.cn, xxxxxx 就是你的 IP 后面的數(shù)字,比如我的IP是166.111.140.66, 所以我的域名是 tu140066.tsinghua.edu.cn.
$mydestination 指出哪些地址是認(rèn)為是你自己的地址。你應(yīng)該把你的機器名(我的是 wangyin.com),$myhostname, $localhost.$mydomain 加進(jìn)去。
為了能夠使用 SASL 驗證登錄,把這些行加到 /etc/postfix/main.cf
smtp_sasl_auth_enable = yes smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd smtp_sasl_security_options = relayhost = mails.tsinghua.edu.cn
編輯口令文件 /etc/postfix/sasl_passwd。加入一行:
Your.Relay.Server your_auth_login_name:Your_PassWord
比如我的口令文件是這樣的:
mails.tsinghua.edu.cn wang-y01:aDF2m@3d$q=+
當(dāng)然密碼不是那個 :P
把口令文件轉(zhuǎn)成 Berkeley DB 格式:
#postmap hash:sasl_passwd
啟動你的 postfix 服務(wù)器
postfix start
評論