CentOS 7
Sponsored Link

メールユーザーアカウント登録#12017/06/28

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

[root@mail ~]#
yum -y install mailx
# メールボックスは Maildir を参照するよう設定

[root@mail ~]#
echo 'export MAIL=$HOME/Maildir' >> /etc/profile
# ユーザー [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.

# 本文を終了する場合はピリオド(.)を入力してEnter
.
EOT
# 受信メール参照

[cent@mail ~]$
mail

Heirloom Mail version 12.5 7/5/10.  Type ? for help.
"/home/cent/Maildir": 1 message 1 new
>N  1 cent                  Thu Jun 29 16:49  17/530   "Test Mail#1"

# 表示したいメールの番号を入力
& 1
Message  1:
From cent@srv.world Thu Jun 29 19:49:34 2017
Return-Path: <cent@srv.world>
X-Original-To: cent@localhost
Delivered-To: cent@localhost.srv.world
Date: Thu, 29 Jun 2017 19:49:33 +0900
To: cent@localhost.srv.world
Subject: Test Mail#1
User-Agent: Heirloom mailx 12.5 7/5/10
Content-Type: text/plain; charset=us-ascii
From: cent@srv.world (cent)
Status: R

This is the first mail.

# 終了する場合は [q]
& q
Held 1 message in /home/cent/Maildir
You have mail in /home/cent/Maildir
関連コンテンツ