linux - 通过 sendmail 服务器发送邮件时遇到 sasl_decode 错误

标签 linux perl smtp sendmail

在RHEL workstation 6.3上安装了sendmail和openwebmail,我可以通过webmail(cgi-bin/openwebmail/openwebmail.pl)发送邮件,但是在Perl脚本中无法与sendmail服务器交互,如下:

use Net::SMTP;

my $smtpserver = 'mail.server.com';
my $smtpport = 25;
my $smtpuser   = 'test';
my $smtppassword = 'test';
my $smtp = Net::SMTP->new($smtpserver, Port=>$smtpport, Timeout => 10, Debug => 1);
die "Could not connect to server!\n" unless $smtp;
$smtp->auth($smtpuser, $smtppassword);
$smtp->mail("Ann");
$smtp->to("hello\@world.com");
$smtp->data();
$smtp->datasend("To: hello\@world.com\n");
$smtp->quit;

在 Windows 7 上运行此 Perl 脚本时,输出如下:

Net::SMTP>>> Net::SMTP(2.31)
Net::SMTP>>>   Net::Cmd(2.29)
Net::SMTP>>>     Exporter(5.64_01)
Net::SMTP>>>   IO::Socket::INET(1.31)
Net::SMTP>>>     IO::Socket(1.31)
Net::SMTP>>>       IO::Handle(1.28)
Net::SMTP=GLOB(0x2be1e80)<<< 220 mail.server.com ESMTP Sendmail 8.14.4/8.14.4
; Fri, 11 Apr 2014 19:48:30 +0800
Net::SMTP=GLOB(0x2be1e80)>>> EHLO localhost.localdomain
Net::SMTP=GLOB(0x2be1e80)<<< 250-mail.server.com Hello [9.110.10.236], please
d to meet you
Net::SMTP=GLOB(0x2be1e80)<<< 250-ENHANCEDSTATUSCODES
Net::SMTP=GLOB(0x2be1e80)<<< 250-PIPELINING
Net::SMTP=GLOB(0x2be1e80)<<< 250-8BITMIME
Net::SMTP=GLOB(0x2be1e80)<<< 250-SIZE
Net::SMTP=GLOB(0x2be1e80)<<< 250-DSN
Net::SMTP=GLOB(0x2be1e80)<<< 250-ETRN
Net::SMTP=GLOB(0x2be1e80)<<< 250-AUTH DIGEST-MD5 PLAIN
Net::SMTP=GLOB(0x2be1e80)<<< 250-DELIVERBY
Net::SMTP=GLOB(0x2be1e80)<<< 250 HELP
Net::SMTP=GLOB(0x2be1e80)>>> AUTH DIGEST-MD5
Net::SMTP=GLOB(0x2be1e80)<<< 334 bm9u...
3VnV5VXB6MlBJeHY5TVE9IixyZWFsbT0iaHV...
Net::SMTP=GLOB(0x2be1e80)>>> YXV0a...
Net::SMTP=GLOB(0x2be1e80)<<< 334 cnNwYXV0axODVhOA==
Net::SMTP=GLOB(0x2be1e80)>>>
Net::SMTP=GLOB(0x2be1e80)<<< 235 2.0.0 OK Authenticated
Net::SMTP=GLOB(0x2be1e80)>>> MAIL FROM:<hello>
Net::SMTP: Unexpected EOF on command channel at E:\tool\smtp.pl line 35

它表明客户端在调用“$smtp->mail()”后通过了身份验证但没有收到任何数据,似乎服务器此时关闭了连接。

在服务器端,有一些错误信息写入/var/log/maillog:

Apr 11 19:48:30 bill sendmail[16761]: AUTH=server, relay=[9.110.10.6], authid=test, mech=DIGEST-MD5, bits=128
Apr 11 19:48:30 bill sendmail[16761]: AUTH: sasl_decode error=-1
Apr 11 19:48:30 bill sendmail[16761]: s3BBmUQj016761: [9.110.10.236] did not issue MAIL/EXPN/VRFY/ETRN    during connection to MTA

邮件日志显示身份验证方法是 DIGEST-MD5,但无法调用 sasl_decode。

任何人都可以为这个问题提供任何线索吗?非常感谢。

PS:我的sendmail.mc 粘贴在github

最佳答案

这里我猜测是旧版本有bug。请查看此 CPAN RT

https://rt.cpan.org/Public/Bug/Display.html?id=58002

关于linux - 通过 sendmail 服务器发送邮件时遇到 sasl_decode 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23017929/

相关文章:

c - 在 Linux 中使用 Signal 发送信息

Linux操作系统下C语言的客户端和服务器通信

perl - 用 perl 创建 csv 文件

Perl strptime 解析毫秒

php - 无法使用 PHP 发送电子邮件

纯 C 中的并发编程 - Windows/Linux

c++ - Vortex86DX C++ 代码/工具链构建上的非法指令

perl - 有人可以解释这个 perl 片段吗?

java - 通过java在特定日期发送自动邮件

email - 如何启用应用程序从谷歌容器引擎发送电子邮件