本文共 1915 字,大约阅读时间需要 6 分钟。
在Linux下配置简单的邮件发送,mail 加上uuencode方式或者mutt方式,都不是很理想。因此还是继续使用之前用过的sendEmail来实现邮件发送,这还真不巧,遭遇invalid SSL_version,同时对于使用腾讯的免费企业邮箱也有一些问题,下面是故障描述及解决方案。
# sendEmail -f cgh@163.com -t leshami@qq.com -u "TestMail" -s smtp.163.com -xu cgh -xp passwd \> -m "This is test mail from Robinson" ******************************************************************* Using the default of SSL_verify_mode of SSL_VERIFY_NONE for client is deprecated! Please set SSL_verify_mode to SSL_VERIFY_PEER together with SSL_ca_file|SSL_ca_path for verification. If you really don't want to verify the certificate and keep the connection open to Man-In-The-Middle attacks please set SSL_verify_mode explicitly to SSL_VERIFY_NONE in your application.******************************************************************* at /usr/local/bin/sendEmail line 1906.invalid SSL_version specified at /usr/share/perl5/vendor_perl/IO/Socket/SSL.pm line 415
# cat /etc/redhat-release CentOS Linux release 7.2.1511 (Core)
415 ${ *$self}{ '_SSL_ctx'} = IO::Socket::SSL::SSL_Context->new($arg_hash) || return;# perl -vThis is perl 5, version 16, subversion 3 (v5.16.3) built for x86_64-linux-thread-multi(with 29 registered patches, see perl -V for more detail)由于在CentOS 7下perl的版本为5.16,而centos6.5的是5.10,版本不兼容
a、卸载现有的perl版本,安装老版本(不推荐)b、增加参数-o tls=no 选项# sendEmail -f cgh@163.com -t leshami@qq.com -u "TestMail" -s smtp.163.com -xu cgh -xp passwd \> -m "This is test mail from Robinson" -o tls=noSep 28 09:49:55 hn249 sendEmail[127791]: Email was sent successfully!
# sendEmail -f chengguohua@htyjie.com -t leshami@qq.com -u "TestMail" -s smtp.exmail.qq.com -xu chengguohua -xp passwd \> -m "This is test mail from Robinson" -o tls=noSep 28 10:00:16 hn249 sendEmail[127844]: ERROR => ERROR => SMTP-AUTH: Authentication to smtp.exmail.qq.com:25 failed.
sendEmail用法:
转载地址:http://grjil.baihongyu.com/