mailx与maildir
在linux下有个简单的mail工具mailx,安装完mailx之后可以直接按以下命令发送邮件:echo "test"|mail xxx@xx.com (邮件内容为"test")或者 mail xxx@xx.com 在命令行提示下输入内容、标题、转发等等。但默认的mailx只支持mbox邮箱格式,其邮箱目录一般为/var/mail/USER,为了使mailx支持maildir,可以按
·
在linux下有个简单的mail工具mailx,安装完mailx之后可以直接按以下命令发送邮件:
echo "test"|mail xxx@xx.com (邮件内容为"test")
或者 mail xxx@xx.com 在命令行提示下输入内容、标题、转发等等。
但默认的mailx只支持mbox邮箱格式,其邮箱目录一般为/var/mail/USER,为了使mailx支持maildir,可以按以下步骤:
1、安装mailutils, sudo apt-get install mailutils
2、修改/etc/pam.d目录下的以下文件内容:
- login: default login shells
session optional pam_mail.so dir=~/Maildir standard
- su: set up for proper MAIL when using su; nopen does not show 'new mail' message
session optional pam_mail.so dir=~/Maildir nopen
- sshd: set up MAIL properly when logging in with ssh; this line probably has a noenv by default which needs removed to set this properly
session optional pam_mail.so dir=~/Maildir standard
3、重启即可
ps: 当前用户下的邮箱目录路径一般保存在MAIL变量下,可以用echo $MAIL查看
参考资料:
http://www.ashtech.net/~syntax/blog/archives/162-Debian-5-Mailutils-and-Maildir.html
更多推荐
已为社区贡献1条内容
所有评论(0)