Add Mail User Accounts#12018/11/13 |
Add Mail User Accounts to use Mail Service.
This example is for the case you use OS user accounts.
Configure basic Postfix settings, and
basic Dovecot settings first.
|
|
[1] | To use OS user accounts, that's only adding OS user like follows. |
# set environment variables to use Maildir [root@mail ~]# echo 'export MAIL=$HOME/Maildir' >> /etc/profile.d/mail.sh # add a user [fedora] [root@mail ~]# useradd fedora [root@mail ~]# passwd fedora |
[2] | Login as a user added in [1] and try to send an email. |
# send to myself [mail (username)@(hostname)] [fedora@mail ~]$ mail fedora@localhost # input subject Subject: Test Mail#1 # input messages This is the first mail. # to finish messages, input period(.) and Enter . EOT # see received emails [fedora@mail ~]$ mail Heirloom Mail version 12.5 7/5/10. Type ? for help. "/home/fedora/Maildir": 1 message 1 new >N 1 fedora@srv.world Mon Nov 12 19:31 17/525 "Test Mail#1" # input the number you'd like to see an email & 1 Message 1: From fedora@srv.world Mon Nov 12 19:31:01 2018 Return-Path: <fedora@srv.world> X-Original-To: fedora@localhost Delivered-To: fedora@localhost Date: Mon, 12 Nov 2018 19:31:01 +0900 To: fedora@localhost Subject: Test Mail#1 User-Agent: Heirloom mailx 12.5 7/5/10 Content-Type: text/plain; charset=us-ascii From: fedora@srv.world Status: R This is the first mail. # to quit, input [q] & q Held 1 message in /home/fedora/Maildir |
Sponsored Link |