“管理員沒有郵件”,嘗試從命令列發送郵件

“管理員沒有郵件”,嘗試從命令列發送郵件

我重新安裝了 Postfix,重新配置了它,但當我使用mail程式開始發送新電子郵件時,我收到此訊息。

admin@mail:~$ 郵件
管理員沒有郵件

我該尋找什麼提示?

謝謝!

答案1

若要透過命令列傳送郵件,請使用 mail:

$ mail -s "Some Subject" admin
Type some stuff
.

點告訴郵件郵件已完成。您也可以將程式輸出重新導向到郵件,或傳送檔案的內容。

$ cat /etc/motd | mail -s "Message of the day" admin
$ mail -s "Message of the day" admin < /etc/motd

都會將 /etc/motd 的內容傳送給本機系統上的管理員使用者。您也可以將郵件傳送到網路。

$ tail -10 /var/log/mail.info | mail -s "Some mail logs for you" [email protected]

相關內容