開発環境用のメールサーバ構築方法(Postfix + dovecot )
外部ネットワークに接続することのない環境でのメールサーバ構築
開発環境用の閉じた世界でのメールサーバ構築
セキュリティ設定等、未完成の状態ですが、jenkins等で通知メールの送受信ができればよい
という環境のために作ったメールサーバ
Postfixの設定
/etc/postfix/main.cf
myhostname = mail.test.com
mydomain = test.com
myoriginal = $mydomain
mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain
inet_interface = all
inet_protocols = ipv4
mynetworks_style = subnet
#home_mailbox = MailBox ★コメントアウト
mail_spool_directory = /var/mail/
Postfixの再起動
service postfis restart
ユーザの追加
useradd user1 -s /sbin/nologin
passwd user1
chmod 777 /var/spool/mail
dovecotのインストール
yum install dovecot
dovecotの設定
/etc/postfix/main.cf
/etc/dovecot/dovecot.conf
listen = *
/etc/dovecot/conf.d/10-mail.conf
mail_localtion = maildir:/var/mail/%u
または
mail_location = maildir:~/mail
/etc/dovecot/conf.d/10-auth.conf
disable_plaintext_auth=no
/etc/dovecot/conf.d/10-ssl.conf
ssl = no
Author And Source
この問題について(開発環境用のメールサーバ構築方法(Postfix + dovecot )), 我々は、より多くの情報をここで見つけました https://qiita.com/Tanaaaaan/items/56c8ebdde21b054cd207著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .