Debian 11 (bullseye) - メールサーバ SSL 設定!
Updated:
Debian GNU/Linux 11 (bullseye) に導入したメールサーバを SSL 設定する方法についての記録です。
以前古いバージョンでの作業時に残していた記録を参考に作業を行い、今回更新した作業記録を貼付する形式の内容となっています。
(当然ながら、興味がなければスルーしてください)
0. 前提条件
- Debian GNU/Linux 11.1.0 (bullseye; 64bit) での作業を想定。
- 接続元のマシンも Debian GNU/Linux 11 (bullseye; 64bit) を想定。
- SMTP サーバは Postfix, POP/IMAP サーバは Dovecot を想定。
- Postfix を「Debian 11 (bullseye) - SMTP サーバ Postfix 構築!」の方法で導入済み。
- Dovecot を「Debian 11 (bullseye) - POP/IMAP サーバ Dovecot 構築!」の方法で導入済み。
- 接続可能なマシンのネットワークは
192.168.11.0/24
を想定。 - ドメイン名は
xxxxxxxx.com
、サーバホスト名はvbox
を想定。 - SSL サーバ OpenSSL 導入済み。(インストールは
apt -y install openssl
でよい) - root ユーザでの作業を想定。
1. SSL 証明書の作成
# cd /etc/ssl/private
# openssl genrsa -aes128 -out server.key 2048
Generating RSA private key, 2048 bit long modulus
..................................+++
.......................................................+++
e is 65537 (0x10001)
Enter pass phrase for server.key: # <= サーバ証明書用パスワード設定
Verifying - Enter pass phrase for server.key: # <= サーバ証明書用パスワード確認入力
# openssl rsa -in server.key -out server.key
Enter pass phrase for server.key: # <= サーバ証明書用パスワード応答
writing RSA key
# openssl req -new -days 3650 -key server.key -out server.csr
You are about to be asked to enter information that will be incorporated
into your certificate request.
What you are about to enter is what is called a Distinguished Name or a DN.
There are quite a few fields but you can leave some blank
For some fields there will be a default value,
If you enter '.', the field will be left blank.
------------------------------------------
Country Name (2 letter code) [AU]:JP # <= 国の略名
State or Province Name (full name) [Some-State]:Shimane # <= 都道府県名
Locality Name (eg, city) []:Matsue # <= 市区町村名
Organization Name (eg, company) [Internet Widgits Pty Ltd]:xxxxxxxx.com # <= サイト名(何でもよい)
Organizational Unit Name (eg, section) []: # <= 部署名(空でよい)
Common Name (e.g. server FQDN or YOUR name) []:mail.xxxxxxxx.com # <= ホスト名
Email Address []:postmaster@xxxxxxxx.com # <= 管理者メールアドレス
Please enter the following 'extra' attributes
to be sent with your certificate request
A challenge password []: # <= 追加属性・空エンターでよい
An optional company name []: # <= 追加属性・空エンターでよい
# openssl x509 -in server.csr -out server.crt -req -signkey server.key -days 3650
Signature ok
subject=C = JP, ST = Shimane, L = Matsue, O = xxxxxxxx.com, CN = mail.xxxxxxxx.com, emailAddress = postmaster@xxxxxxxx.com
Getting Private key
# chmod 400 server.*
2. Postfix - main.cf の設定
File: /etc/postfix/main.cf
- Let’s Encrypt で SSL 証明書を取得したら、
smtpd_tls_cert_file
,smtpd_tls_key_file
を変更する。
3. Postfix - master.cf の編集
File: /etc/postfix/master.cf
4. Dovecot - 10-ssl.conf の編集
File: /etc/dovecot/conf.d/10-ssl.conf
- Let’s Encrypt で SSL 証明書を取得したら、
ssl_cert
,ssl_key
を変更する。
5. Postfix, Dovecot の再起動
# systemctl restart postfix
# systemctl restart dovecot
6. ファイアウォール(ufw)の設定
実際に運用する場合は、TCP ポート 465(SMTPS)
, 993(IMAPS)
, 995(POP3S)
を開放する必要がある。
# ufw allow 465,993,995/tcp
Rule added
# ufw status
:
465,993,995/tcp ALLOW Anywhere
:
7. メールソフトの設定
メールソフトではポート番号を変更すればよい。
- 受信メールサーバポート:
993
(IMAP) or995
(POP) - 送信メールサーバポート:
465
認証警告画面が表示され、認証すれば(例外として承認すれば) SSL 通信で送受信できるようになる。
以上。
Comments