Debian 9 Stretch
Sponsored Link

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

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

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

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

root@dlp:~#
adduser debian

Adding user `debian' ...
Adding new group `debian' (1001) ...
Adding new user `debian' (1001) with group `debian' ...
Creating home directory `/home/debian' ...
Copying files from `/etc/skel' ...
Enter new UNIX password:    
# 追加するユーザーのパスワードを設定

Retype new UNIX password:    
# 確認再入力

passwd: password updated successfully
Changing the user information for debian
Enter the new value, or press ENTER for the default
    Full Name []:    
# 必要であれば入力, なければ空Enter

    Room Number []:
    Work Phone []:
    Home Phone []:
    Other []:
Is the information correct? [Y/n]
y

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

debian@mail:~$
mail debian@localhost

# CC の宛先 (不要な場合は空Enter)
Cc:
# 件名
Subject: Test Mail#1
# 本文
This is the first mail.

# 本文を終了する場合は Ctrl+D

# 受信メール参照

debian@mail:~$
mail

"/home/debian/Maildir": 2 messages 2 unread
>U   1 Server World                      20/723   Test Mail #5
 U   2 debian                              20/674   Test Mail#1

# 表示したいメールの番号を入力
? 2
Return-Path: <debian@mail.srv.world>
X-Original-To: debian@localhost
Delivered-To: debian@localhost
Received: from mail.srv.world (localhost [127.0.0.1])
        by mail.srv.world (Postfix) with ESMTP id EA44515F32C
        for <debian@localhost>; Thu, 29 Jun 2017 19:26:23 +0900 (JST)
Received: by mail.srv.world (Postfix, from userid 1001)
        id C5D5915F385; Thu, 29 Jun 2017 19:26:23 +0900 (JST)
To: <debian@localhost>
Subject: Test Mail#1
X-Mailer: mail (GNU Mailutils 3.1.1)
Message-Id: <20170629012623.C5D5915F385@mail.srv.world>
Date: Thu, 29 Jun 2017 19:26:23 +0900 (JST)
From: debian@mail.srv.world (debian)

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