Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

There was an error sending email from "bugzilla-daemon" to "[email protected]": no sender

I'd like to research about bugzilla. So I use bugzilla-5.0 to setup my bugzilla in local VM. But When I tried to create a bug or comment something in bugzilla. It noticed that: There was an error sending email from "bugzilla-daemon" to "[email protected]": no sender.

Although I configured mail_delivery_methos is "Sendmail" in Administrator/Email/mail_delivery_method and mailfrom is "bugzilla-daemon". But It was failed.

Does anybody have any idea for that problem?

like image 634
Jason Dang Avatar asked Jul 20 '15 04:07

Jason Dang


4 Answers

Bugzilla 5.0.2 in centos
Had same issue, but got solved by following steps

1. locate 'params.json'.
In my case @ '/var/www/html/bugzilla/data/params.json'.

2. find and change to,
"mail_delivery_method" : "SMTP",
"mailfrom" :"mail-id given while install",
"maintainer" : "mail-id given while install"

DONE

like image 94
benjolly1989 Avatar answered Nov 12 '22 08:11

benjolly1989


It started working for me when I changed the sender from "bugzilla-daemon" to a fully qualified address (eg [email protected]).

like image 45
Hamish Moffatt Avatar answered Nov 12 '22 08:11

Hamish Moffatt


Through administrator menu, select Parameters, 'Email'. Change input field for'mailfrom' to a valid email-address.

like image 5
jit Avatar answered Nov 12 '22 09:11

jit


I have change following and it was successfull make following field blanlk

'mail_delivery_method' => '',

and add (this fileds may be blank initialy)

'smtp_password' => 'your password'

'smtp_username' => 'admin email'

like image 2
Anidu chathuranga Avatar answered Nov 12 '22 09:11

Anidu chathuranga