Bugzilla SMTP authentication

爷,独闯天下 提交于 2019-12-03 21:08:37
Dinesh

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"},

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.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!