FreeBSD 14
Sponsored Link

Mail サーバー : メールユーザーアカウント登録2024/04/17

 
メール用のユーザーアカウントを登録します。
当例は OS 上のユーザーアカウントでメールも利用する場合の設定です。
事前に Postfix の基本設定, および Dovecot の基本設定は実施済みを前提とします。
[1] OS 上のユーザーアカウントでメールを利用する場合は、追加の設定は不要で OS ユーザーを登録するのみです。
# メールクライアントインストール

root@mail:~ #
pkg install -y s-nail
# メールボックスは Maildir を参照するよう設定

root@mail:~ #
echo 'export MAIL=$HOME/Maildir' >> /etc/profile.d/mail.sh
# ユーザー [freebsd] を追加

root@mail:~ #
pw useradd freebsd -m

root@mail:~ #
passwd freebsd

[2] 追加したユーザーアカウントでログインし、メールの送信テストをします。
# 自身にテストメール送信 [s-nail (ユーザー名)@(ホスト名)]

freebsd@mail:~ $
s-nail freebsd@localhost


# 件名
Subject: Test Mail#1
# 本文
This is the first mail.

# 本文を終了する場合は Ctrl + D キー
-------
(Preliminary) Envelope contains:
To: freebsd@localhost
Subject: Test Mail#1
Send this message [yes/no, empty: recompose]? yes

# 受信メール参照

freebsd@mail:~ $
s-nail

s-nail version v14.9.24.  Type `?' for help
/home/freebsd/Maildir: 1 message 1 new
>N  1 User Freebsd       2024-04-17 14:41   14/437   Test Mail#1

# 表示したいメールの番号を入力
? 1
[-- Message  1 -- 14 lines, 437 bytes --]:
Date: Wed, 17 Apr 2024 14:41:40 +0900
To: freebsd@localhost
Subject: Test Mail#1
Message-Id: <20240417054140.7782C10B55@mail.srv.world>
From: User Freebsd <freebsd@srv.world>

This is the first mail.

# 終了する場合は [q]
? q
Held 1 message in /home/freebsd/Maildir
関連コンテンツ