summaryrefslogtreecommitdiffstats
path: root/docs/en/xml/installation.xml
diff options
context:
space:
mode:
authorjake%bugzilla.org <>2008-04-04 13:46:36 +0200
committerjake%bugzilla.org <>2008-04-04 13:46:36 +0200
commit25baaa26c4b1762754372bd701150ab2119586d2 (patch)
tree2838b0b8aaaafd45d6ff7461f33154e23fd46cfc /docs/en/xml/installation.xml
parent938c535f8ca7934c3d7c9597024316596192eea8 (diff)
downloadbugzilla-25baaa26c4b1762754372bd701150ab2119586d2.tar.gz
bugzilla-25baaa26c4b1762754372bd701150ab2119586d2.tar.xz
Bug 145965 - Mention the sendmail -> SMTP change for Bugzilla on win32
Patch by Jean-Sebastien Guay <jean_seb@hybride.com>
Diffstat (limited to 'docs/en/xml/installation.xml')
-rw-r--r--docs/en/xml/installation.xml40
1 files changed, 39 insertions, 1 deletions
diff --git a/docs/en/xml/installation.xml b/docs/en/xml/installation.xml
index 7914200ee..6686a47eb 100644
--- a/docs/en/xml/installation.xml
+++ b/docs/en/xml/installation.xml
@@ -1,5 +1,5 @@
<!-- <!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"> -->
-<!-- $Id: installation.xml,v 1.45 2008/04/04 06:46:35 jake%bugzilla.org Exp $ -->
+<!-- $Id: installation.xml,v 1.46 2008/04/04 06:46:36 jake%bugzilla.org Exp $ -->
<chapter id="installation">
<title>Installation</title>
@@ -1226,6 +1226,44 @@ my $webservergid = '8'
</programlisting>
</section>
+ <section id="win32-code-bugmail">
+ <title>Changes to <filename>BugMail.pm</filename></title>
+
+ <para>To make bug e-mail work on Win32 (until bug 124174 lands), the
+ simplest way is to have Net::SMTP installed and change this (in
+ <filename>Bugzilla/BugMail.pm</filename>):</para>
+
+ <programlisting>
+open(SENDMAIL, "|/usr/lib/sendmail $sendmailparam -t -i") ||
+ die "Can't open sendmail";
+
+print SENDMAIL trim($msg) . "\n";
+close SENDMAIL;
+ </programlisting>
+ <para>to</para>
+ <programlisting>
+use Net::SMTP;
+$smtp_server = 'smtp.mycompany.com'; # change this
+
+# Use die on error, so that the mail will be in the 'unsent mails' and
+# can be sent from the sanity check page.
+my $smtp = Net::SMTP->new($smtp_server) ||
+ die 'Cannot connect to server \'$smtp_server\'';
+
+$smtp->mail('bugzilla-daemon@mycompany.com'); # change this
+$smtp->to($person);
+$smtp->data();
+$smtp->datasend($msg);
+$smtp->dataend();
+$smtp->quit;
+ </programlisting>
+
+ <para>Don't forget to change the name of your SMTP server and the
+ domain of the sending e-mail address (after the '@') in the above
+ lines of code.</para>
+
+ </section>
+
</section>
<section id="win32-http">