|
|
(One intermediate revision by one other user not shown) |
Line 1: |
Line 1: |
| Unfortunately, the solution at http://www.dawood.in/bugzilla_alerts_using_gmail.html
| | See http://bugzilla.readthedocs.org/en/latest/installing/essential-post-install-config.html#gmail . |
| does not help Windows users. A Perl class that Email::Send::SMTP::TLS is dependent on is
| |
| REQUIRED to be compiled with the same compiler used to compile Perl. If you are running
| |
| windows, chances are you have ActivePerl or StrawberryPerl installed, both of which are binary
| |
| installers, and don't need to be compiled. Thus Email::Send::SMTP::TLS will never function.
| |
| | |
| To configure Bugzilla to send mail through Gmail's smtp server:
| |
| #Download Glob's sendmail wrapper for windows at http://glob.com.au/sendmail/,<br>and unzip
| |
| #copy sendmail.exe and sendmail.ini to \usr\lib on the drive where<br>Bugzilla is installed. So if Bugzilla is installed at C:\Bugzilla,<br>create a 'usr' folder at the root level of the C: drive,<br>with a 'lib' folder within that.
| |
| #open up sendmail.ini.
| |
| #within sendmail.ini copy and paste these values on the appropriate lines:
| |
| #*smtp_server=smtp.gmail.com:587
| |
| #*smtp_ssl=tls
| |
| #*auth_username=<INSERT GMAIL USERNAME HERE>
| |
| #*auth_password=<INSERT GMAIL PASSWORD HERE>
| |
| #*if your gmail server runs on a specific domain, make sure to<br>uncomment and fill in the default_domain parameter.
| |
| #now go to the Administration tab on your Bugzilla homepage, and select Parameters
| |
| #Choose Email from the sidebar on the left.
| |
| #In the pulldown menu under mail_delivery_method, select Sendmail.
| |
| #You're done! Bugzilla will send email through gmail's smtp server. | |