0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

自宅内専用のメールサーバーを構築してZabbixからのメールを受信する方法

Posted at

📨 Postfix + Dovecot メールサーバー構築 & Thunderbird 動作確認手順(Ubuntu 22.04)

🧱 構成概要

項目 内容
OS RockyLinux 9
MTA Postfix(SMTP)
MDA Dovecot(IMAP)
クライアント Thunderbird(Windows)
ドメイン test.local(ローカル用)
ユーザー testuser

1️⃣ パッケージのインストール

sudo apt update
sudo apt install postfix dovecot-core dovecot-imapd mailutils -y

Postfixの設定

sudo postconf -e "myhostname = mailserver.test.local"
sudo postconf -e "mydomain = test.local"
sudo postconf -e "mydestination = mailserver.test.local, localhost, test.local"
sudo postconf -e "mynetworks = 127.0.0.0/8, 192.168.1.0/24"
sudo postconf -e "home_mailbox = Maildir/"
sudo postconf -e "smtpd_tls_security_level = may"

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?