ubuntu Postfix安装使用

前端之家收集整理的这篇文章主要介绍了ubuntu Postfix安装使用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

postfix安装

sudo apt-get install postfix
sudo apt-get install mailutils

创建用户

sudo useradd -m -s /bin/bash incoming
sudo passwd incoming

启动postfix

sudo postfix status
sudo postfix start

测试

telnet localhost 25
# 填写邮箱信息
ehlo localhost
mail from: root@localhost
rcpt to: incoming@localhost
data
Subject: Re: Some issue

Sounds good!
.
quit

配置postfix使用Maildir-style mailBoxes

sudo postconf -e "home_mailBox = Maildir/"
sudo service postfix restart

用户添加使用邮箱

su - incoming
mkdir /home/incoming/Maildir
MAIL=/home/incoming/Maildir
mail

postfix常用命令

# 会列出当前在postfix发送队列中的所有邮件
mailq

# 删除当前等待发送队列的所有邮件包括发送失败的退信
postsuper -d ALL
原文链接:https://www.f2er.com/ubuntu/352145.html

猜你在找的Ubuntu相关文章