如何接收新邮件?

如何接收新邮件?
mail -f  /home/debian9/Maildir

当新邮件到来时,如何在mailutils界面中接收它?
我的 /home/debian9/Maildir 中有 1 封电子邮件。
在此输入图像描述

使用命令从 admin 向 debian9 发送了一封电子邮件:

echo "This is the message body of new emial" | mail -s "This is the new subject " debian9

无法显示新电子邮件。

在此输入图像描述

? list
alias alternates Copy cd chdir copy decode delete discard dp dt echo edit else 
endif envelope exit Followup file folder folders followup from group headers 
help hold if ignore incorporate list mail mbox next nos nounfold Print pipe 
preserve previous print quit Reply Respond reply respond retain Save save 
sendheader set setq sen setenv shell size source struct summary Type tag top 
touch type unalias undelete unfold unset untag variable version visual 
warranty Write write xit z ? ! = # * + | - 

哪个命令可以接收新邮件?

答案1

您不需要特定的命令来接收邮件,邮件会/var/spool/mail/username由适当的邮件传递代理自动传递并存储在计算机的文件系统(通常在 )上。

Mailutils 是一个邮件用户代理。要阅读收到的邮件,请使用以下命令之一:

mail -p
mail --print
mail --read

来源:Mailutils 文档

答案2

我用

cd /var/spool/mail
vi <username>

这将在文本编辑器 vim 中打开你的收件箱

相关内容