Bugzilla:Windows Gmail: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
(Bugzilla supports Gmail natively, no need to confuse people with hacks) |
||
| Line 1: | Line 1: | ||
Bugzilla 4.4 and newer support Gmail as SMTP server natively, without any need to hack the source code. When running checksetup.pl, make sure that Net::SMTP::SSL is installed: | |||
Checking for Net-SMTP-SSL (v1.01) ok: found v1.01 | |||
Then edit the following parameters (under Administration > Parameters > Email): | |||
mail_delivery_method = SMTP | |||
mailfrom = your_email_address@gmail.com | |||
smtpserver = smtp.gmail.com:465 | |||
smtp_username = your_email_address@gmail.com | |||
smtp_password = your_gmail_password | |||
smtp_ssl = on | |||
Do not forget to save your changes. And that's all, Bugzilla can now use your Gmail account to send email notifications. | |||
If you are running Bugzilla 4.2 or older, then you should apply [https://bug466419.bugzilla.mozilla.org/attachment.cgi?id=552569 this patch]. Once applied, you can follow the steps above. | |||
Revision as of 11:40, 9 November 2012
Bugzilla 4.4 and newer support Gmail as SMTP server natively, without any need to hack the source code. When running checksetup.pl, make sure that Net::SMTP::SSL is installed:
Checking for Net-SMTP-SSL (v1.01) ok: found v1.01
Then edit the following parameters (under Administration > Parameters > Email):
mail_delivery_method = SMTP mailfrom = your_email_address@gmail.com smtpserver = smtp.gmail.com:465 smtp_username = your_email_address@gmail.com smtp_password = your_gmail_password smtp_ssl = on
Do not forget to save your changes. And that's all, Bugzilla can now use your Gmail account to send email notifications.
If you are running Bugzilla 4.2 or older, then you should apply this patch. Once applied, you can follow the steps above.