我没什么主意了。有人能给我启发吗?
ps -ef
告诉我。
/usr/sbin/sendmail -FCronDaemon -i -odi -oem -oi -t -f root
/usr/sbin/postdrop -r
有人知道这是什么原因造成的吗?
答案1
如果您运行(在类似 Debian 的系统上)apt-file search /usr/sbin/sendmail
那么apt-file search /usr/sbin/postdrop
您可能会得到以下结果:
# apt-file search /usr/sbin/postdrop
postfix: /usr/sbin/postdrop
这意味着该文件是由postfix
包安装的。
您可以使用以下方法删除它(如果您确定不需要它):
sudo apt remove postfix
答案2
您的系统似乎使用 Postfix 来传递邮件。
/usr/sbin/sendmail
将调用CronDaemon为 cron 作业生成标准输出或标准错误输出,并将postdrop
写入某人的本地邮箱。
确认哪个 cron 作业条目将产生标准输出/标准错误检查 cron 日志或检查邮箱/var/spoool/邮件。
仅供参考:postdrop 手册页
http://www.postfix.org/postdrop.1.html