| xff263 回复于:2003-06-19 11:29:07 |
| check your system date. -> $ man date
if it is false, set it -> $ man clock if the compilation don't work anyway, try this: $ find /path/to/sendmail-source -exec touch -t 042904001999.00 {} \; and then do a 'make' in the src dir. The system returns an error code, because the makefile and other files has an timestamp in the future. May be your clock screwed up?! 搜了一篇帖子,铁在上面,一检查机器的时间发现,不对当正确修改机器的时间后,便一切正常,不会吧,sendmail有这事? |
| gadfly 回复于:2003-06-19 12:34:10 |
| 有可能的。前面peng回答过这个问题,找找看吧 |
| peng 回复于:2003-06-19 13:34:57 |
| 因为你重新编译了sendmail.cf文件,生成的sendmail.cf文件时间和/etc/mail/*的时间不一制。
#touch /etc/mail/*,就应该ok了。 |