Bugzilla SMTP 身份验证

发布于 2024-12-04 14:16:26 字数 1022 浏览 2 评论 0原文

我已经在本地计算机(Windows 7)中安装了 bugzilla,并且运行良好。但是当我尝试创建一个新帐户时它说

[电子邮件受保护][电子邮件受保护]
无法设置 FROM:
530 5.5.1 需要身份验证。
要了解更多信息,请访问 C:/Perl/site/lib/Email/Send/SMTP/TLS.pm 第 49 行。

我应该在 TLS.pm 中进行哪些更改?

我什至在 bugzilla 中配置了参数>电子邮件部分:

mail_delivery_method = SMTP::TLS,
mailfrom = [电子邮件受保护],
smtpserver = smtp.gmail.com:587,
smtp_username = 我的 Gmail 用户名,
smtp_password = 我的 Gmail 密码,

TLS.pm 文件第 49 行显示:$SMTP->mail($from);

我是否还留下了其他内容来使用 SMTP?

I've installed bugzilla in my local machine (Windows 7) and its working good. But when I try to create a new account it says

There was an error sending mail from [email protected] to [email protected]:
Could't set FROM:
530 5.5.1 Authentication Required.
Learn more at at C:/Perl/site/lib/Email/Send/SMTP/TLS.pm line 49.

What changes shall I do in TLS.pm?

I've even configured the parameter>Email section in bugzilla:

mail_delivery_method = SMTP::TLS,
mailfrom = [email protected],
smtpserver = smtp.gmail.com:587,
smtp_username = my gmail username,
smtp_password = my gmail password,

The TLS.pm file line 49 says: $SMTP->mail($from);

Have I left anything else to work SMTP?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

热鲨 2024-12-11 14:16:26

确保您在 Mailer.pm 中有以下内容。只需打开文件并编辑它。请注意,字段名称是'User'而不是'username'。为避免兼容性问题(如果有),请保留两者。

User => Bugzilla->params->{"smtp_username"},  
Password => Bugzilla->params->{"smtp_password"},

Make sure that you have following in Mailer.pm. Just open the file and edit it. Note that the field name is 'User' not 'username'. To avoid compatibility issues, if any, keep both.

User => Bugzilla->params->{"smtp_username"},  
Password => Bugzilla->params->{"smtp_password"},
淡写薰衣草的香 2024-12-11 14:16:26

我面临着同样的问题。就我而言,我搞砸了 passwordPassword 属性。我发现一篇博客提到密码,全是小写字母。但它不起作用。但是当我按照上面 Dinesh 提到的那样将 p 大写时,它就起作用了。因此请检查哈希键是否正确写入。

I was facing the same problem. In my case I messed up with password vs Password attribute. I found a blog mentioned password, all small letters. And it didnt work. But when I capitalized the p as mentioned by Dinesh above, it worked. So check if the hash keys are properly written.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文