Griffon 1.2 - 邮件插件不看邮件主机参数

时间:2013-03-04 12:30:44

标签: griffon

我安装了Griffon 1.2和邮件插件。

griffon install-plugin mail

我创建了一个测试:

 sendMail(mailhost: '192.168.0.19', 
                to: 'me@home.com', 
                from: 'me@home.com', 
                subject: 'Test Mail', 
                text:'''
            Hello
            World''')

但它不使用mailhost参数。它尝试使用localhost:

javax.mail.MessagingException: Could not connect to SMTP host: localhost, port: 25

我通过telnet命令验证了SMTP服务器,并且可以正常运行。

1 个答案:

答案 0 :(得分:0)

来自https://github.com/griffon/griffon-mail-plugin/blob/master/src/main/griffon/plugins/mail/MailSender.groovy的第70行显示mailhost被考虑在内,至少在设置属性时是这样。

然而,这听起来更像是一个错误报告,而不是一个实际的问题。如果是这样,我建议您将问题发布到Griffon用户列表中。如果发现它是一个错误,那么应该向http://jira.codehaus.org/browse/griffon

报告