#author("2018-09-14T09:44:28+09:00","","") #author("2018-09-14T09:47:01+09:00","","") [[CentOS7]] *Postfix+Dovecotインストール [#s74d01be] メールサーバーを構築する場合、送信メールサーバー(SMTPサーバー)と受信メールサーバー(POP/IMAPサーバー)の構築が必要となる。ここでは、送信メールサーバーにはPostfix、受信メールサーバーにはDovecotを採用する。 なお、Postfixは迷惑メールの不正中継に利用されないようにするため、初期設定では外部から外部宛(例えば、会社等で自宅サーバーのメールアドレスからプロバイダのメールアドレス宛)に送信できないようになっているが、迷惑メールの不正中継に利用されずに外部から外部宛に送信できるようにするため、SMTP認証機能※を有効にする。 また、DovecotはPOP/IMAPサーバーとして構築し、ユーザーがPOPまたはIMAPを選択できるようにする。 *Postfixインストール [#z7a1a14a] |BGCOLOR(black):COLOR(white):|c |[root@localhost ~]# yum -y install postfix &color(lime){← Postfixインストール};| **Postfix設定 [#c4293214] |BGCOLOR(black):COLOR(white):|c |[root@localhost ~]# vi /etc/postfix/main.cf &color(lime){← Postfix設定ファイル編集};| |# INTERNET HOST AND DOMAIN NAMES &br; # &br; # The myhostname parameter specifies the internet hostname of this &br; # mail system. The default is to use the fully-qualified domain name &br; # from gethostname(). $myhostname is used as a default value for many &br; # other configuration parameters. &br; # &br; #myhostname = host.domain.tld &br; #myhostname = virtual.domain.tld &br; myhostname = mail.hoge.com &color(lime){← 追加(自FQDN名を指定)};&br; # The mydomain parameter specifies the local internet domain name. &br; # The default is to use $myhostname minus the first component. &br; # $mydomain is used as a default value for many other configuration &br; # parameters. &br; # &br; #mydomain = domain.tld &br; mydomain = hoge.com &color(lime){← 追加(自ドメイン名を指定)};&br; # SENDING MAIL &br; &br; # &br; # The myorigin parameter specifies the domain that locally-posted &br; # mail appears to come from. The default is to append $myhostname, &br; # which is fine for small sites. If you run a domain with multiple &br; # machines, you should (1) change this to $mydomain and (2) set up &br; # a domain-wide alias database that aliases each user to &br; # user@that.users.mailhost. &br; # &br; # For the sake of consistency between sender and recipient addresses, &br; # myorigin also specifies the default domain name that is appended &br; # to recipient addresses that have no @domain part. &br; # &br; #myorigin = $myhostname &br; #myorigin = $mydomain &br; myorigin = $mydomain &color(lime){← 追加(ローカルからのメール送信時の送信元メールアドレス@以降にドメイン名を付加)}; &br; # The inet_interfaces parameter specifies the network interface &br; # addresses that this mail system receives mail on. By default, &br; # the software claims all active interfaces on the machine. The &br; # parameter also controls delivery of mail to user@[ip.address]. &br; # &br; # See also the proxy_interfaces parameter, for network addresses that &br; # are forwarded to us via a proxy or network address translator. &br; # &br; # Note: you need to stop/start Postfix when this parameter changes. &br; # &br; #inet_interfaces = all &br; #inet_interfaces = $myhostname &br; #inet_interfaces = $myhostname, localhost &br; inet_interfaces = localhost &br; &color(lime){ ↓}; &br; inet_interfaces = all &color(lime){← 変更(外部からのメール受信を許可)}; &br; # The mydestination parameter specifies the list of domains that this# machine considers itself the final destination for. &br; # &br; # These domains are routed to the delivery agent specified with the &br; # local_transport parameter setting. By default, that is the UNIX &br; # compatible delivery agent that lookups all recipients in /etc/passwd &br; # and /etc/aliases or their equivalent. &br; # &br; # The default is $myhostname + localhost.$mydomain. On a mail domain &br; # gateway, you should also include $mydomain. &br; # &br; # Do not specify the names of virtual domains - those domains are &br; # specified elsewhere (see VIRTUAL_README). &br; # &br; # Do not specify the names of domains that this machine is backup MX &br; # host for. Specify those names via the relay_domains settings for &br; # the SMTP server, or use permit_mx_backup if you are lazy (see &br; # STANDARD_CONFIGURATION_README). &br; # &br; # The local machine is always the final destination for mail addressed &br; # to user@[the.net.work.address] of an interface that the mail system &br; # receives mail on (see the inet_interfaces parameter). &br; # &br; # Specify a list of host or domain names, /file/name or type:table &br; # patterns, separated by commas and/or whitespace. A /file/name &br; # pattern is replaced by its contents; a type:table is matched when &br; # a name matches a lookup key (the right-hand side is ignored). &br; # Continue long lines by starting the next line with whitespace. &br; # &br; # See also below, section "REJECTING MAIL FOR UNKNOWN LOCAL USERS". &br; # &br; mydestination = $myhostname, localhost.$mydomain, localhost &br; &color(lime){ ↓}; &br; mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain &color(lime){← 変更(自ドメイン宛メールを受信できるようにする)}; &br; #mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain &br; #mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain, &br; # mail.$mydomain, www.$mydomain, ftp.$mydomain &br; &br; # DELIVERY TO MAILBOX &br; # &br; # The home_mailbox parameter specifies the optional pathname of a &br; # mailbox file relative to a user's home directory. The default &br; # mailbox file is /var/spool/mail/user or /var/mail/user. Specify &br; # "Maildir/" for qmail-style delivery (the / is required). &br; # &br; #home_mailbox = Mailbox &br; #home_mailbox = Maildir/ &br; home_mailbox = Maildir/ &color(lime){← 追加(メール格納形式をMaildir形式にする)}; &br; &br; # SHOW SOFTWARE VERSION OR NOT &br; # &br; # The smtpd_banner parameter specifies the text that follows the 220 &br; # code in the SMTP server's greeting banner. Some people like to see &br; # the mail version advertised. By default, Postfix shows no version. &br; # &br; # You MUST specify $myhostname at the start of the text. That is an &br; # RFC requirement. Postfix itself does not care. &br; # &br; #smtpd_banner = $myhostname ESMTP $mail_name &br; #smtpd_banner = $myhostname ESMTP $mail_name ($mail_version) &br; smtpd_banner = $myhostname ESMTP unknown &color(lime){← 追加(メールサーバーソフト名の隠蔽化)}; &br; &br; &br; &color(lime){以下を最終行へ追加(SMTP認証設定)}; &br; smtpd_sasl_auth_enable = yes &br; &br; smtpd_recipient_restrictions = &br; permit_mynetworks &br; permit_sasl_authenticated &br; reject_unauth_destination &br; &br; &color(lime){以下を最終行へ追加(受信メールサイズ制限)}; &br; message_size_limit = 10485760 &color(lime){← 追加(受信メールサイズを10MB=10*1024*1024に制限)};| |[root@localhost ~]# vi /etc/postfix/master.cf &color(lime){← master.cf編集};| |submission inet n - n - - smtpd &color(lime){← 行頭の#を削除してコメント解除(SUBMISSIONポート有効化)}; &br; # -o syslog_name=postfix/submission &br; # -o smtpd_tls_security_level=encrypt &br; -o smtpd_sasl_auth_enable=yes &color(lime){← 行頭の#を削除してコメント解除(SUBMISSIONポートでSMTP認証有効化)};| ***SMTP認証設定 [#u257f887] ''SMTP認証にシステムのユーザー名、パスワードを使用する場合'' |BGCOLOR(black):COLOR(white):|c |[root@localhost ~]# yum -y install cyrus-sasl &color(lime){← cyrus-saslインストール};| |[root@localhost ~]# systemctl start saslauthd &color(lime){← saslauthd起動};| |[root@localhost ~]# systemctl enable saslauthd &color(lime){← saslauthd自動起動設定};| ----- &color(red){''※SMTP認証に個別のユーザー名、パスワードを使用する場合''}; |BGCOLOR(black):COLOR(white):|c |[root@localhost ~]# vi /etc/sasl2/smtpd.conf| |pwcheck_method: auxprop &color(lime){← 変更};| ----- ***Maildir形式メールボックス作成 [#b6eaf10f] Postfixのメール格納形式は共有ディレクトリ形式(「/var/spool/mail/ユーザー名」というファイルに全てのメールが蓄積されていく形式)だが、アクセス性能改善及びセキュリティ強化の観点からMaildir形式へ移行する。 ''【新規ユーザー対処】'' |BGCOLOR(black):COLOR(white):|c |[root@localhost ~]# mkdir -p /etc/skel/Maildir/{new,cur,tmp}| |[root@localhost ~]# chmod -R 700 /etc/skel/Maildir/| ''【既存ユーザー対処】'' ※既に共有ディレクトリ形式でメールを受信しているユーザーがいる場合のみ 既存ユーザーのホームディレクトリにMaildir形式のメールボックスを作成して、蓄積済のメールデータを当該メールボックスへ移行する。 &color(red){※メールデータ移行中にメールを受け付けないようにするため、メールサーバーは停止しておくこと}; ***Maildir変換ツール入手 [#pbafed19] |BGCOLOR(black):COLOR(white):|c |[root@localhost ~]# wget http://perfectmaildir.home-dn.net/perfect_maildir/perfect_maildir.pl -O /usr/local/bin/perfect_maildir.pl &color(lime){← Maildir変換ツールダウンロード};| |[root@localhost ~]# chmod +x /usr/local/bin/perfect_maildir.pl &color(lime){← Maildir変換ツールへ実行権限付加};| ***Maildir変換に必要なPerlのTimeDateモジュールインストール [#n5e74b2c] |BGCOLOR(black):COLOR(white):|c |[root@localhost ~]# yum -y install perl-TimeDate &color(lime){← perl-TimeDateモジュールインストール};| ***Maildir一括変換スクリプト作成 [#x7cbb4da] |BGCOLOR(black):COLOR(white):|c |[root@localhost ~]# vi migrate-maildir &color(lime){← Maildir一括変換スクリプト作成};| #!/bin/bash #http://perfectmaildir.home-dn.net/ FOLDERCONVERT=/usr/local/bin/perfect_maildir.pl USERLIST=`ls /home/` MIGRATELOG=/tmp/migrate-maildir.log rm -f $MIGRATELOG if [ "$1" != "mbox" ] && [ "$1" != "Mailbox" ] then echo "Usage: migrate-maildir {mbox|Mailbox}" exit fi for user in $USERLIST; do if [ "$1" = "mbox" ]; then inbox="/var/spool/mail/${user}" else inbox="/home/${user}/Mailbox" fi if [ -f "${inbox}" ] then newdir="/home/${user}/Maildir/" mkdir -p "$newdir" mkdir -p "$newdir"/cur mkdir -p "$newdir"/new mkdir -p "$newdir"/tmp chmod -R 700 "${newdir}" $FOLDERCONVERT "$newdir" < "${inbox}" >> $MIGRATELOG 2>&1 chown -R "${user}":"${user}" "$newdir" find "$newdir" -type f -exec chmod 600 {} \; fi done user="root" if [ "$1" = "mbox" ]; then inbox="/var/spool/mail/${user}" else inbox="/${user}/Mailbox" fi if [ -f "${inbox}" ] then newdir="/${user}/Maildir/" mkdir -p "$newdir" mkdir -p "$newdir"/cur mkdir -p "$newdir"/new mkdir -p "$newdir"/tmp chmod -R 700 "${newdir}" $FOLDERCONVERT "$newdir" < "${inbox}" >> $MIGRATELOG 2>&1 chown -R "${user}":"${user}" "$newdir" find "$newdir" -type f -exec chmod 600 {} \; fi ***メールデータ移行(共有ディレクトリ形式⇒Maildir形式) [#la37da9d] 現在のメールボックス形式がデフォルトの「/var/spool/mail/ユーザー名」の場合 |BGCOLOR(black):COLOR(white):|c |[root@localhost ~]# sh migrate-maildir mbox &color(lime){← Maildir一括変換スクリプト実行};| &color(red){※''Maildir''一括変換スクリプト実行結果は''/tmp/migrate-maildir.log''に保存される}; ***メールデータ移行後始末 [#jb7459d1] |BGCOLOR(black):COLOR(white):|c |[root@localhost ~]# rm -f migrate-maildir &color(lime){← Maildir一括変換スクリプト削除};| |[root@localhost ~]# rm -f /usr/local/bin/perfect_maildir.pl &color(lime){← Maildir変換ツール削除};| &color(red){※メールデータ移行後は、メールサーバーのメール格納形式をMaildir形式へ移行すること}; ***存在しないユーザー宛メールの破棄 [#q4c6d570] メールサーバーは、存在しないユーザー宛メールを受信すると、宛先不明による不達メールを送信元へ返そうとするが、送信元を偽装した迷惑メールが存在しないユーザー宛にわざと送られてくる場合があり、この場合、送信元が偽装されているため、不達メール自体が不達となってしまい、メールがキューに滞留してしまう(''mailq''コマンドで確認可能)。最終的に不達メールの送信を一定期間繰り返して破棄するが、このような迷惑メールが大量に送られてくると、キューにメールが大量にたまり、たまった大量の不達メールの再送処理により、サーバー自体が高負荷状態に陥って機能しなくなる恐れがあるため、存在しないユーザー宛のメールは破棄するようにする。 なお、正当なユーザーが宛先を間違えてメールを送った場合に、不達メールが返ってこずに、宛先を間違えたことに気づかない懸念はあるが、現在のセキュリティ事情では、送達実績のない宛先へのメールは送達確認をするようにすることが一般的であることから、本懸念は無視するものとする。 |BGCOLOR(black):COLOR(white):|c |[root@localhost ~]# vi /etc/postfix/main.cf &color(lime){← Postfix設定ファイル編集};| |&color(lime){以下を最終行へ追加(存在しないユーザー宛メールをunknown_userへ配送)}; &br; local_recipient_maps = &br; luser_relay = unknown_user@localhost| |[root@localhost ~]# echo unknown_user: /dev/null >> /etc/aliases &color(lime){← unknown_user宛メールを破棄};| |[root@localhost ~]# newaliases &color(lime){← /etc/aliases変更反映};| **Postfix起動 [#u36b9856] |BGCOLOR(black):COLOR(white):|c |[root@localhost ~]# systemctl restart postfix &color(lime){← Postfix再起動};| |[root@localhost ~]# systemctl enable postfix &color(lime){← Postfix自動起動設定};| ***TCP25番、TCP587番ポート開放 [#p4063a13] ''【ルーター】'' ルーター側の設定で、''TCP25''番、''TCP587''番ポートへのアクセスをサーバーに転送するようにする。 ※ルーターの設定は各ルーターのマニュアルまたはメーカー別ルーターポート開放手順を参照 ''【ファイアウォール】※ファイアウォール導入している場合のみ'' サーバー側のファイアウォール設定で、''TCP25''番、''TCP587''番ポートへのアクセスを許可するようにする。 [[Portチェックテスト【外部からのPort開放確認】>http://www.cman.jp/network/support/port.html]]で「ホスト名(FQDN) または グローバルIPアドレス」にサーバー名(例:hoge.com)、「チェックポート番号」に''25''または''587''と入力、「ご注意・制約事項」を確認チェックして「Portチェック実行」ボタンを押下し、 -ホスト:hoge.com -ポート:''25''または''587'' にアクセスできましたと表示されることを確認。 *Dovecotインストール [#o39e5ebb] |BGCOLOR(black):COLOR(white):|c |[root@localhost ~]# yum -y install dovecot &color(lime){← Dovecotインストール};| **Dovecot設定 [#fdad9b0c] |BGCOLOR(black):COLOR(white):|c |[root@localhost ~]# vi /etc/dovecot/conf.d/10-mail.conf &color(lime){← 10-mail.conf編集};| |# Location for users' mailboxes. The default is empty, which means that Dovecot &br; # tries to find the mailboxes automatically. This won't work if the user &br; # doesn't yet have any mail, so you should explicitly tell Dovecot the full &br; # location. &br; # &br; # If you're using mbox, giving a path to the INBOX file (eg. /var/mail/%u) &br; # isn't enough. You'll also need to tell Dovecot where the other mailboxes are &br; # kept. This is called the "root mail directory", and it must be the first &br; # path given in the mail_location setting. &br; # &br; # There are a few special variables you can use, eg.: &br; # &br; # %u - username &br; # %n - user part in user@domain, same as %u if there's no domain &br; # %d - domain part in user@domain, empty if there's no domain &br; # %h - home directory &br; # &br; # See doc/wiki/Variables.txt for full list. Some examples: &br; # &br; # mail_location = maildir:~/Maildir &br; # mail_location = mbox:~/mail:INBOX=/var/mail/%u &br; # mail_location = mbox:/var/mail/%d/%1n/%n:INDEX=/var/indexes/%d/%1n/%n &br; # &br; # &br; # &br; #mail_location = &br; mail_location = maildir:~/Maildir &color(lime){← 追加(メール格納形式をMaildir形式にする)}; &br; &br; # ':' separated list of directories under which chrooting is allowed for mail &br; # processes (ie. /var/mail will allow chrooting to /var/mail/foo/bar too). &br; # This setting doesn't affect login_chroot, mail_chroot or auth chroot &br; # settings. If this setting is empty, "/./" in home dirs are ignored. &br; # WARNING: Never add directories here which local users can modify, that &br; # may lead to root exploit. Usually this should be done only if you don't &br; # allow shell access for users. &br; #valid_chroot_dirs = &br; valid_chroot_dirs = /home &color(lime){← 追加※OpenSSH+Chrootを導入している場合のみ};| ----- |BGCOLOR(black):COLOR(white):|c |[root@localhost ~]# vi /etc/dovecot/conf.d/10-auth.conf &color(lime){← 10-auth.conf編集};| |# Disable LOGIN command and all other plaintext authentications unless &br; # SSL/TLS is used (LOGINDISABLED capability). Note that if the remote IP &br; # matches the local IP (ie. you're connecting from the same computer), the &br; # connection is considered secure and plaintext authentication is allowed. &br; #disable_plaintext_auth = yes &br; disable_plaintext_auth = no &color(lime){← 追加(プレインテキスト認証を許可)}; &br; &color(red){''※メールサーバー間通信内容暗号化導入推奨''};| ----- |BGCOLOR(black):COLOR(white):|c |[root@localhost ~]# vi /etc/dovecot/conf.d/10-ssl.conf &color(lime){← 10-ssl.conf編集};| |# SSL/TLS support: yes, no, required. &br; # disable plain pop3 and imap, allowed are only pop3+TLS, pop3s, imap+TLS and imaps &br; # plain imap and pop3 are still allowed for local connections &br; ssl = no &color(lime){← SSL接続無効}; &br; &color(red){''※メールサーバー間通信内容暗号化導入推奨''};| **Dovecot起動 [#w957df60] |BGCOLOR(black):COLOR(white):|c |[root@localhost ~]# systemctl start dovecot &color(lime){← Dovecot起動};| |[root@localhost ~]# systemctl enable dovecot &color(lime){← Dovecot自動起動設定};| ***TCP110番(POPの場合)またはTCP143番(IMAPの場合)ポート開放 [#q62ebec6] ''【ルーター】'' ルーター側の設定で、''TCP110''番(''POP''の場合)または''TCP143''番(''IMAP''の場合)ポートへのアクセスをサーバーに転送するようにする。 ''【ファイアウォール】※ファイアウォール導入している場合のみ'' サーバー側のファイアウォール設定で、''TCP110''番(''POP''の場合)または''TCP143''番(''IMAP''の場合)ポートへのアクセスを許可するようにする。 [[Portチェックテスト【外部からのPort開放確認】>http://www.cman.jp/network/support/port.html]]で「ホスト名(FQDN) または グローバルIPアドレス」にサーバー名(例:hoge.com)、「チェックポート番号」に''110''または''143''と入力、「ご注意・制約事項」を確認チェックして「Portチェック実行」ボタンを押下し、 -ホスト:hoge.com -ポート:''110''または''143'' にアクセスできましたと表示されることを確認。 **メールユーザー追加 [#z7228960] 例としてメールユーザー centos (メールアドレス:centos@hoge.com)を追加する。 |BGCOLOR(black):COLOR(white):|c |[root@localhost ~]# useradd centos &color(lime){← ユーザー追加※SSHによるリモート接続もできるようにする場合};| |[root@localhost ~]# useradd -s /sbin/nologin centos &color(lime){← ユーザー追加※SSHによるリモート接続はできないようにする場合};| |[root@localhost ~]# passwd centos &color(lime){← パスワード設定};| |Changing password for user centos. &br; New UNIX password: &color(lime){← パスワード応答}; &br; Retype new UNIX password: &color(lime){← パスワード応答(確認)}; &br; passwd: all authentication tokens updated successfully. &br; &br; &color(lime){以下はSMTP認証に個別のユーザー名、パスワードを使用する場合のみ};| |Changing password for user centos. &br; New UNIX password: &color(lime){← パスワード応答}; &br; Retype new UNIX password: &color(lime){← パスワード応答(確認)}; &br; passwd: all authentication tokens updated successfully.| ----- ***&color(red){以下はSMTP認証に個別のユーザー名、パスワードを使用する場合のみ}; [#a26191b8] |BGCOLOR(black):COLOR(white):|c |[root@localhost ~]# echo "&color(lime){パスワード};" | saslpasswd2 -p -u centos.hoge.com -c centos &color(lime){← SMTP認証用ユーザー/パスワード登録};| |[root@localhost ~]# sasldblistusers2 &color(lime){← SMTP認証用ユーザー/パスワード確認};| |centos@hoge.com: userPassword| |[root@localhost ~]# chgrp postfix /etc/sasldb2 &color(lime){← /etc/sasldb2所有グループをpostfixに変更※最初の1回のみ};| |&color(lime){※SMTP認証用ユーザー/パスワードを削除する場合};| |[root@localhost ~]# saslpasswd2 -d centos -u centos.hoge.com &color(lime){← SMTP認証用ユーザー/パスワード削除};|