Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
b7fbcf61
Commit
b7fbcf61
authored
Apr 23, 2010
by
Frédéric Buclin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 561362: Remove the 'sendmailnow' parameter
r=justdave a=LpSolit
parent
5bb84b3c
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
2 additions
and
41 deletions
+2
-41
MTA.pm
Bugzilla/Config/MTA.pm
+0
-6
Mailer.pm
Bugzilla/Mailer.pm
+0
-2
administration.xml
docs/en/xml/administration.xml
+0
-16
glossary.xml
docs/en/xml/glossary.xml
+0
-2
installation.xml
docs/en/xml/installation.xml
+2
-7
mta.html.tmpl
template/en/default/admin/params/mta.html.tmpl
+0
-8
No files found.
Bugzilla/Config/MTA.pm
View file @
b7fbcf61
...
...
@@ -65,12 +65,6 @@ sub get_param_list {
},
{
name
=>
'sendmailnow'
,
type
=>
'b'
,
default
=>
1
},
{
name
=>
'smtpserver'
,
type
=>
't'
,
default
=>
'localhost'
...
...
Bugzilla/Mailer.pm
View file @
b7fbcf61
...
...
@@ -145,8 +145,6 @@ sub MessageToMTA {
push
(
@args
,
"-f$from_email"
)
if
$from_email
;
}
}
push
(
@args
,
"-ODeliveryMode=deferred"
)
if
!
Bugzilla
->
params
->
{
"sendmailnow"
};
}
else
{
# Sendmail will automatically append our hostname to the From
...
...
docs/en/xml/administration.xml
View file @
b7fbcf61
...
...
@@ -766,22 +766,6 @@
<varlistentry>
<term>
sendmailnow
</term>
<listitem>
<para>
When Bugzilla is using Sendmail older than 8.12, turning this option
off will improve performance by not waiting for Sendmail to actually
send mail. If Sendmail 8.12 or later is being used, there is
nothing to gain by turning this off. If another MTA is being used,
such as Postfix, then this option *must* be turned on (even if you
are using the fake sendmail executable that Postfix provides).
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
whinedays
</term>
<listitem>
...
...
docs/en/xml/glossary.xml
View file @
b7fbcf61
...
...
@@ -271,8 +271,6 @@
Perl module, which Bugzilla uses to send email, can be configured to
use many different underlying implementations for actually sending the
mail using the
<option>
mail_delivery_method
</option>
parameter.
Implementations other than
<literal>
sendmail
</literal>
require that the
<option>
sendmailnow
</option>
param be set to
<literal>
on
</literal>
.
</para>
</glossdef>
</glossentry>
...
...
docs/en/xml/installation.xml
View file @
b7fbcf61
...
...
@@ -1786,13 +1786,8 @@ C:\perl> <command>ppm install <module name></command>
<ulink
url=
"http://www.postfix.org/"
>
Postfix
</ulink>
is used as the built-in email server. Postfix provides an executable
that mimics sendmail enough to fool Bugzilla, as long as Bugzilla can
find it.
</para>
<para>
As of version 2.20, Bugzilla will be able to find the fake
sendmail executable without any assistance. However, you will have
to turn on the sendmailnow parameter before you do anything that would
result in email being sent. For more information, see the description
of the sendmailnow parameter in
<xref
linkend=
"parameters"
/>
.
</para>
find it. Bugzilla is able to find the fake sendmail executable without
any assistance.
</para>
</section>
...
...
template/en/default/admin/params/mta.html.tmpl
View file @
b7fbcf61
...
...
@@ -55,14 +55,6 @@
_ " won't get sent). This affects all mail sent by $terms.Bugzilla,"
_ " not just $terms.bug updates.",
sendmailnow => "Sites using anything older than version 8.12 of 'sendmail' " _
"can achieve a significant performance increase in the " _
"UI -- at the cost of delaying the sending of mail -- by " _
"disabling this parameter. Sites using 'sendmail' 8.12 or " _
"higher should leave this on, as they will see no benefit from " _
"turning it off. Sites using an MTA other than 'sendmail' " _
"<b>must</b> leave it on, or no $terms.bug mail will be sent.",
smtpserver => "The SMTP server address (if using SMTP for mail delivery).",
smtp_username => "The username to pass to the SMTP server for SMTP authentication. " _
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment