Mailサーバー : メールユーザーアカウント登録2019/08/02 |
メール用のユーザーアカウントを登録します。
|
|
[1] | OS上のユーザーアカウントでメールを利用する場合は、追加の設定は不要で OSユーザーを登録するのみです。 |
# メールボックスは Maildir を参照するよう設定 root@mail:~# echo 'export MAIL=$HOME/Maildir/' >> /etc/profile.d/mail.sh # OSユーザー [debian] を追加 root@mail:~# adduser debian |
[2] | 追加したユーザーアカウントでログインし、メールの送信テストをします。 |
# 自身にテストメール送信 [mail (ユーザー名)@(ホスト名)] debian@mail:~$ mail debian@localhost # Cc の宛先 Cc: # 件名 Subject: Test Mail#1 # 本文 This is the first mail. # 本文を終了する場合は Ctrl + D キー # 受信メール参照 debian@mail:~$ mail "/home/debian/Maildir/": 1 message 1 new >N 1 debian 13/450 Test Mail#1 # 表示したいメールの番号を入力 ? 1 Return-Path: <debian@mail.srv.world> X-Original-To: debian@localhost Delivered-To: debian@localhost Received: by mail.srv.world (Postfix, from userid 1000) id CA088DF918; Fri, 2 Aug 2019 19:46:54 +0900 (JST) To: <debian@localhost> Subject: Test Mail#1 X-Mailer: mail (GNU Mailutils 3.5) Message-Id: <20190802034654.CA088DF918@mail.srv.world> Date: Fri, 2 Aug 2019 19:46:54 +0900 (JST) From: debian <debian@mail.srv.world> This is the first mail. # 終了する場合は [q] ? q Saved 1 message in /home/debian/mbox Held 0 messages in /home/debian/Maildir/ |
Sponsored Link |