summaryrefslogtreecommitdiffstats
path: root/docs/sgml/installation.sgml
diff options
context:
space:
mode:
authorjake%bugzilla.org <>2003-02-13 12:50:37 +0100
committerjake%bugzilla.org <>2003-02-13 12:50:37 +0100
commit9daaa3f95694c434f6332c6dfa230ee4b71fe941 (patch)
tree9ca9ab196a7bb38e12e9d1ba3f4c0b66b5be4394 /docs/sgml/installation.sgml
parentcc844939fdd2d88127bdf1ae6b70e84441b6107c (diff)
downloadbugzilla-9daaa3f95694c434f6332c6dfa230ee4b71fe941.tar.gz
bugzilla-9daaa3f95694c434f6332c6dfa230ee4b71fe941.tar.xz
Bug 192511 - Removing all occurances of 'processmail' from the documentation now that bug 124174 is FIXED.
Diffstat (limited to 'docs/sgml/installation.sgml')
-rw-r--r--docs/sgml/installation.sgml24
1 files changed, 14 insertions, 10 deletions
diff --git a/docs/sgml/installation.sgml b/docs/sgml/installation.sgml
index b25a2bcab..f7607d2e3 100644
--- a/docs/sgml/installation.sgml
+++ b/docs/sgml/installation.sgml
@@ -597,7 +597,7 @@
<para>
<programlisting>
-perl -pi -e 's@#\!/usr/bonsaitools/bin/perl@#\!/usr/bin/perl@' *cgi *pl Bug.pm processmail syncshadowdb
+perl -pi -e 's@#\!/usr/bonsaitools/bin/perl@#\!/usr/bin/perl@' *cgi *pl Bug.pm syncshadowdb
</programlisting>
Change <filename>/usr/bin/perl</filename> to match the location
@@ -1424,19 +1424,14 @@ my $webservergid = '8'
the <function>system</function> call. For example, you'll need to
change:
</para>
-<!-- We'll need a different example when there's no more processmail -->
<programlisting>
-system("./processmail", $id, $exporter);
+system("$webdotbase","-Tpng","-o","$pngfilename","$filename");
</programlisting>
<para>with</para>
<programlisting>
-system("C:\\perl\\bin\\perl", "processmail", $id, $exporter);
+system("C:\\perl\\bin\\perl", "$webdotbase","-Tpng","-o","$pngfilename","$filename");
</programlisting>
- <para>Notice that the <computeroutput>./</computeroutput> is also
- removed.
- </para>
-
<tip>
<para>The <command>grep</command> command is very helpful in finding
these <function>system</function> calls, assuming you have the
@@ -1444,6 +1439,16 @@ system("C:\\perl\\bin\\perl", "processmail", $id, $exporter);
</para>
</tip>
+ <note>
+ <para>It appears that the only <function>system</function> call
+ remaining in the Bugzilla codebase is in
+ <filename>showdependencygraph.cgi</filename>. Not changing this
+ file will only cause dependency graphs to not function if the
+ <option>webdotbase</option> paramater points to a local
+ installation of <ulink url="http://www.graphviz.org">GraphViz</ulink>.
+ </para>
+ </note>
+
</section>
</section>
@@ -1613,7 +1618,7 @@ AllowOverride Limit
<para><filename>$BUGZILLA_HOME/.htaccess</filename>
<programlisting><![CDATA[
# don't allow people to retrieve non-cgi executable files or our private data
-<FilesMatch ^(.*\.pl|.*localconfig.*|processmail|runtests.sh)$>
+<FilesMatch ^(.*\.pl|.*localconfig.*|runtests.sh)$>
deny from all
</FilesMatch>
<FilesMatch ^(localconfig.js|localconfig.rdf)$>
@@ -1721,7 +1726,6 @@ deny from all
ns_register_filter preauth GET /bugzilla/localconfig filter_deny
ns_register_filter preauth GET /bugzilla/*.pl filter_deny
ns_register_filter preauth GET /bugzilla/localconfig filter_deny
-ns_register_filter preauth GET /bugzilla/processmail filter_deny
ns_register_filter preauth GET /bugzilla/syncshadowdb filter_deny
ns_register_filter preauth GET /bugzilla/runtests.sh filter_deny