- 论坛徽章:
- 0
|
我写了一个邮件发送的测试程序(testMail.cgi),程序如下所示:
#!/usr/bin/perl
print "Content-type: text/html\n\n";
print "hello world";
#$sMailPath = '/usr/bin/mail';
$sMailPath = '/usr/sbin/sendmail';
$sPemail = 'test@sohu.com';
open(MAIL, "|$sMailPath $sPemail" || die("Unable to open Mail Program." ;
print MAIL "To: $sPemail\n";
print MAIL "From: jichitai\@www114.sakura.ne.jp\n";
print MAIL "Subject: test - Reply Notification\n";
print MAIL "Hello there!\n\n";
close(MAIL);
该段程序在命令行方式下运行,能发送邮件
但是如果在web状态下运行,却长时间没有响应,而且最终提示该页无法显示!
请问这是什么错误啊?为何会有这种差别呢?
同样的程序,在我自己的主机上是完全没有问题的,而到了外面租用的服务器上就不行了呢?
我们租用的服务器的操作系统是freebsd ,sendmail |
|