- 论坛徽章:
- 0
|
我的问题是这样的:
有一个邮件服务器,在远程。
我需要每天运行 mailx -s [email]xxx@xxx.com[/email] < xxx.txt 来给自己发信。
所以sendmail配置都是默认的。
在 Berkeley versions of sendmail 上程序测试通过,最多就是新版本上修改一下
D{MTAHost}[127.0.0.1]就可以了。
Solaris 8 version of sendmail也是没有问题,但是solaris9下就怎么改都不成。
sendmail的日志:
Feb 25 21:04:35 knet-db sendmail[27093]: [ID 801593 mail.info] l1PD4Zb2027093: from=root, size=130, class=0, nrcpts=1, msgid=<[email]200702251304.l1PD4Zb2027093@knet-db.xxx.com[/email]>, relay=root@localhost
Feb 25 21:04:35 knet-db sendmail[27093]: [ID 801593 mail.info] l1PD4Zb2027093: to=sa@xxx.com, delay=00:00:00, mailer=relay, pri=30130, dsn=4.4.3, stat=queued
我做了如下修改,但是问题依旧:
Modify /etc/mail/submit.cf so that mail is sent via your smtp host.
The easiest way to modify /etc/mail/submit.cf is to change /usr/lib/mail/cf/submit.mc.
Add to that the following directives
define(`SMART_HOST', `your.smtp.server.')dnl
define(`MAIL_HUB',`your.smtp.server.')dnl
define(`LOCAL_RELAY',`your.smtp.server')dnl
prior to the line that says:
FEATURE(`msp',`[127.0.0.1]')dnl
then "make submit.cf" in /usr/lib/mail/cf
copy the resulting submit.cf to /etc/mail.
You should now be able to send mail without sendmail running.
[url]http://www.sendmail.org/vendor/sun/solaris9.html[/url]
我查到这个,但是没明白是什么意思。不支持了么?还是要修改其他什么地方?请sendmail达人告之。
[[i] 本帖最后由 我是大宇 于 2007-2-26 12:13 编辑 [/i]] |
|