I've installed Bugzilla in CentOS 5.5. But when I try to configure the Email I find there is no SMTP option in mail_delivery_method list. There are only Test/Sendmail/None. What can I do if I want use gmail server to send email.
Asked
Active
Viewed 358 times
3 Answers
1
Set up your local postfix/exim to relay everything through gmail with your account details.

HopelessN00b
- 53,795
- 33
- 135
- 209

Dennis Kaarsemaker
- 19,277
- 2
- 44
- 70
1
This means that Email::Send->new()->all_mailers() is not returning an SMTP option (see Bugzilla's MTA.pm). Perhaps you don't have Net::SMTP installed?
Gerv

Gervase Markham
- 386
- 1
- 4
0
Configure Sendmail to use Gmail for SMTP:
http://appgirl.net/blog/2009/configuring-sendmail-to-relay-through-gmail-smtp/ http://www.phinesolutions.com/sendmail-gmail-smtp-relay-howto.html

af-at-work
- 670
- 1
- 6
- 12
-
I used "my $method = 'SMTP';" instead of "my $method = Bugzilla->params->{'mail_delivery_method'};" in "Bugzilla/Mailer.pm" and it works fine. – Jonas Sun Mar 29 '13 at 01:06