Mail サーバー : メールユーザーアカウント登録2022/03/18 |
メール用のユーザーアカウントを登録します。
|
|
[1] | OS 上のユーザーアカウントでメールを利用する場合は、追加の設定は不要で OS ユーザーを登録するのみです。 |
# メールボックスは Maildir を参照するよう設定 [root@mail ~]# echo 'export MAIL=$HOME/Maildir' >> /etc/profile.d/mail.sh # ユーザー [cent] を追加 [root@mail ~]# useradd cent [root@mail ~]# passwd cent |
[2] | 追加したユーザーアカウントでログインし、メールの送信テストをします。 |
# 自身にテストメール送信 [mail (ユーザー名)@(ホスト名)] [cent@mail ~]$ mail cent@localhost # 件名 Subject: Test Mail#1 # 本文 This is the first mail. # 本文を終了する場合は Ctrl + D ------- (Preliminary) Envelope contains: To: cent@localhost Subject: Test Mail#1 Send this message [yes/no, empty: recompose]? yes # 受信メール参照 [cent@mail ~]$ mail s-nail version v14.9.22. Type `?' for help /home/cent/Maildir: 1 message 1 new ►N 1 cent@srv.world 2022-03-18 19:23 14/405 "Test Mail#1" # 表示したいメールの番号を入力 & 1 [-- Message 1 -- 14 lines, 405 bytes --]: Date: Fri, 18 Mar 2022 19:23:33 +0900 To: cent@localhost Subject: Test Mail#1 Message-Id: <20220318022333.B1738EA09@mail.srv.world> From: cent@srv.world This is the first mail. # 終了する場合は [q] & q |
Sponsored Link |