星期三, 11月 24, 2010

Install dovecot on FreeBSD

Install dovecot on FreeBSD:

davecot 是一個 secure 的 imap/pop3 server。

http://dovecot.org/

    一. 安裝
    cd /usr/ports/mail/dovcot/ && make install clean

    修改/etc/rc.conf加上:
    #dovcot
    dovecot_enable="YES"

    二. 改設定檔
    cd /usr/local/etc/
    cp dovecot-example.conf dovecot.conf
    chmod u+w dovecot.conf

    修改dovecot.conf:
    1. 設定你所想支援的protocols.
    protocols = imaps pop3 pop3s

    2. 允許使用 plaintext auth
    disable_plaintext_auth = no

    3. 設定 ssl key file
    ssl_cert_file = /usr/local/etc/cert/ooxx.pem
    ssl_key_file = /usr/local/etc/cert/xxoo.pem
    (cert file可以透過 /usr/local/share/dovecot/mkcert.sh 做出來)

    * netstat -an | more
    * netstat -an | grep 143
    * portsentry 會佔用 port 143 (imap~)

沒有留言: