sendmail/qmail both run on the same server. Which used to send emails?
sendmail and qmail both run on the same server. How can I know the which one is used to send email ?
I have a PHP application that sends email via the mail() function. The SMTP server it uses has both process running.
It is a server used for live applications, so I can't stop one process to do some tests.
email sendmail
add a comment |
sendmail and qmail both run on the same server. How can I know the which one is used to send email ?
I have a PHP application that sends email via the mail() function. The SMTP server it uses has both process running.
It is a server used for live applications, so I can't stop one process to do some tests.
email sendmail
I'd make sure that the machine really is as you describe. It's possible to get confused about these things, especially as most Unix/Linux MTSes have asendmail
program image file that is nothing whatsoever to do with the Sendmail software package. There's almost never a need to set up a system in this way with two different MTS softwares running in parallel. (Multiple instances of one package is as exotic a configuration as things normally get.)
– JdeBP
Jun 18 '11 at 12:45
add a comment |
sendmail and qmail both run on the same server. How can I know the which one is used to send email ?
I have a PHP application that sends email via the mail() function. The SMTP server it uses has both process running.
It is a server used for live applications, so I can't stop one process to do some tests.
email sendmail
sendmail and qmail both run on the same server. How can I know the which one is used to send email ?
I have a PHP application that sends email via the mail() function. The SMTP server it uses has both process running.
It is a server used for live applications, so I can't stop one process to do some tests.
email sendmail
email sendmail
edited Dec 5 at 13:25
asked Jun 17 '11 at 12:15
Cedric
482148
482148
I'd make sure that the machine really is as you describe. It's possible to get confused about these things, especially as most Unix/Linux MTSes have asendmail
program image file that is nothing whatsoever to do with the Sendmail software package. There's almost never a need to set up a system in this way with two different MTS softwares running in parallel. (Multiple instances of one package is as exotic a configuration as things normally get.)
– JdeBP
Jun 18 '11 at 12:45
add a comment |
I'd make sure that the machine really is as you describe. It's possible to get confused about these things, especially as most Unix/Linux MTSes have asendmail
program image file that is nothing whatsoever to do with the Sendmail software package. There's almost never a need to set up a system in this way with two different MTS softwares running in parallel. (Multiple instances of one package is as exotic a configuration as things normally get.)
– JdeBP
Jun 18 '11 at 12:45
I'd make sure that the machine really is as you describe. It's possible to get confused about these things, especially as most Unix/Linux MTSes have a
sendmail
program image file that is nothing whatsoever to do with the Sendmail software package. There's almost never a need to set up a system in this way with two different MTS softwares running in parallel. (Multiple instances of one package is as exotic a configuration as things normally get.)– JdeBP
Jun 18 '11 at 12:45
I'd make sure that the machine really is as you describe. It's possible to get confused about these things, especially as most Unix/Linux MTSes have a
sendmail
program image file that is nothing whatsoever to do with the Sendmail software package. There's almost never a need to set up a system in this way with two different MTS softwares running in parallel. (Multiple instances of one package is as exotic a configuration as things normally get.)– JdeBP
Jun 18 '11 at 12:45
add a comment |
1 Answer
1
active
oldest
votes
You will have to look in your php.ini
file, under [mail function]
. Here, the path to the mail sending binary is specified. Whatever is specified here, the mail()
function in PHP will use.
sendmail_path = /usr/sbin/sendmail -t -i
The above one should be the default. So, if you haven't changed anything, PHP will use sendmail
.
As @JdeBP mentions, you can also take a quick look at the headers of the mails received. If you look under the various Received
sections, you will find some identification of the server software being used.
Some systems havesendmail
as a symlink to the actual binary provided by the MTA, e.g.sendmail.sendmail
orsendmail.qmail
.
– Ignacio Vazquez-Abrams
Jun 17 '11 at 12:25
Oh, okay. Yeah, I'd trace down that one. Like your option though.
– slhck
Jun 17 '11 at 12:28
+1. The suggestion in the PHP manual is to pointsendmail_path
directly atqmail_inject
, which will be directly indicative with no further research. But in the general case finding out whose binarysendmail_path
is pointing to is the right answer for PHP on Unix/Linux.
– JdeBP
Jun 18 '11 at 12:40
While you're at it, you could mention in your answer that theReceived:
header fields in the received messages will yield very strong clues as to which software, Sendmail or qmail, processed the mail. Sendmail and qmail write trace information in different forms.
– JdeBP
Jun 18 '11 at 12:50
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f298494%2fsendmail-qmail-both-run-on-the-same-server-which-used-to-send-emails%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You will have to look in your php.ini
file, under [mail function]
. Here, the path to the mail sending binary is specified. Whatever is specified here, the mail()
function in PHP will use.
sendmail_path = /usr/sbin/sendmail -t -i
The above one should be the default. So, if you haven't changed anything, PHP will use sendmail
.
As @JdeBP mentions, you can also take a quick look at the headers of the mails received. If you look under the various Received
sections, you will find some identification of the server software being used.
Some systems havesendmail
as a symlink to the actual binary provided by the MTA, e.g.sendmail.sendmail
orsendmail.qmail
.
– Ignacio Vazquez-Abrams
Jun 17 '11 at 12:25
Oh, okay. Yeah, I'd trace down that one. Like your option though.
– slhck
Jun 17 '11 at 12:28
+1. The suggestion in the PHP manual is to pointsendmail_path
directly atqmail_inject
, which will be directly indicative with no further research. But in the general case finding out whose binarysendmail_path
is pointing to is the right answer for PHP on Unix/Linux.
– JdeBP
Jun 18 '11 at 12:40
While you're at it, you could mention in your answer that theReceived:
header fields in the received messages will yield very strong clues as to which software, Sendmail or qmail, processed the mail. Sendmail and qmail write trace information in different forms.
– JdeBP
Jun 18 '11 at 12:50
add a comment |
You will have to look in your php.ini
file, under [mail function]
. Here, the path to the mail sending binary is specified. Whatever is specified here, the mail()
function in PHP will use.
sendmail_path = /usr/sbin/sendmail -t -i
The above one should be the default. So, if you haven't changed anything, PHP will use sendmail
.
As @JdeBP mentions, you can also take a quick look at the headers of the mails received. If you look under the various Received
sections, you will find some identification of the server software being used.
Some systems havesendmail
as a symlink to the actual binary provided by the MTA, e.g.sendmail.sendmail
orsendmail.qmail
.
– Ignacio Vazquez-Abrams
Jun 17 '11 at 12:25
Oh, okay. Yeah, I'd trace down that one. Like your option though.
– slhck
Jun 17 '11 at 12:28
+1. The suggestion in the PHP manual is to pointsendmail_path
directly atqmail_inject
, which will be directly indicative with no further research. But in the general case finding out whose binarysendmail_path
is pointing to is the right answer for PHP on Unix/Linux.
– JdeBP
Jun 18 '11 at 12:40
While you're at it, you could mention in your answer that theReceived:
header fields in the received messages will yield very strong clues as to which software, Sendmail or qmail, processed the mail. Sendmail and qmail write trace information in different forms.
– JdeBP
Jun 18 '11 at 12:50
add a comment |
You will have to look in your php.ini
file, under [mail function]
. Here, the path to the mail sending binary is specified. Whatever is specified here, the mail()
function in PHP will use.
sendmail_path = /usr/sbin/sendmail -t -i
The above one should be the default. So, if you haven't changed anything, PHP will use sendmail
.
As @JdeBP mentions, you can also take a quick look at the headers of the mails received. If you look under the various Received
sections, you will find some identification of the server software being used.
You will have to look in your php.ini
file, under [mail function]
. Here, the path to the mail sending binary is specified. Whatever is specified here, the mail()
function in PHP will use.
sendmail_path = /usr/sbin/sendmail -t -i
The above one should be the default. So, if you haven't changed anything, PHP will use sendmail
.
As @JdeBP mentions, you can also take a quick look at the headers of the mails received. If you look under the various Received
sections, you will find some identification of the server software being used.
edited Mar 20 '17 at 10:17
Community♦
1
1
answered Jun 17 '11 at 12:23
slhck
159k47438462
159k47438462
Some systems havesendmail
as a symlink to the actual binary provided by the MTA, e.g.sendmail.sendmail
orsendmail.qmail
.
– Ignacio Vazquez-Abrams
Jun 17 '11 at 12:25
Oh, okay. Yeah, I'd trace down that one. Like your option though.
– slhck
Jun 17 '11 at 12:28
+1. The suggestion in the PHP manual is to pointsendmail_path
directly atqmail_inject
, which will be directly indicative with no further research. But in the general case finding out whose binarysendmail_path
is pointing to is the right answer for PHP on Unix/Linux.
– JdeBP
Jun 18 '11 at 12:40
While you're at it, you could mention in your answer that theReceived:
header fields in the received messages will yield very strong clues as to which software, Sendmail or qmail, processed the mail. Sendmail and qmail write trace information in different forms.
– JdeBP
Jun 18 '11 at 12:50
add a comment |
Some systems havesendmail
as a symlink to the actual binary provided by the MTA, e.g.sendmail.sendmail
orsendmail.qmail
.
– Ignacio Vazquez-Abrams
Jun 17 '11 at 12:25
Oh, okay. Yeah, I'd trace down that one. Like your option though.
– slhck
Jun 17 '11 at 12:28
+1. The suggestion in the PHP manual is to pointsendmail_path
directly atqmail_inject
, which will be directly indicative with no further research. But in the general case finding out whose binarysendmail_path
is pointing to is the right answer for PHP on Unix/Linux.
– JdeBP
Jun 18 '11 at 12:40
While you're at it, you could mention in your answer that theReceived:
header fields in the received messages will yield very strong clues as to which software, Sendmail or qmail, processed the mail. Sendmail and qmail write trace information in different forms.
– JdeBP
Jun 18 '11 at 12:50
Some systems have
sendmail
as a symlink to the actual binary provided by the MTA, e.g. sendmail.sendmail
or sendmail.qmail
.– Ignacio Vazquez-Abrams
Jun 17 '11 at 12:25
Some systems have
sendmail
as a symlink to the actual binary provided by the MTA, e.g. sendmail.sendmail
or sendmail.qmail
.– Ignacio Vazquez-Abrams
Jun 17 '11 at 12:25
Oh, okay. Yeah, I'd trace down that one. Like your option though.
– slhck
Jun 17 '11 at 12:28
Oh, okay. Yeah, I'd trace down that one. Like your option though.
– slhck
Jun 17 '11 at 12:28
+1. The suggestion in the PHP manual is to point
sendmail_path
directly at qmail_inject
, which will be directly indicative with no further research. But in the general case finding out whose binary sendmail_path
is pointing to is the right answer for PHP on Unix/Linux.– JdeBP
Jun 18 '11 at 12:40
+1. The suggestion in the PHP manual is to point
sendmail_path
directly at qmail_inject
, which will be directly indicative with no further research. But in the general case finding out whose binary sendmail_path
is pointing to is the right answer for PHP on Unix/Linux.– JdeBP
Jun 18 '11 at 12:40
While you're at it, you could mention in your answer that the
Received:
header fields in the received messages will yield very strong clues as to which software, Sendmail or qmail, processed the mail. Sendmail and qmail write trace information in different forms.– JdeBP
Jun 18 '11 at 12:50
While you're at it, you could mention in your answer that the
Received:
header fields in the received messages will yield very strong clues as to which software, Sendmail or qmail, processed the mail. Sendmail and qmail write trace information in different forms.– JdeBP
Jun 18 '11 at 12:50
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f298494%2fsendmail-qmail-both-run-on-the-same-server-which-used-to-send-emails%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I'd make sure that the machine really is as you describe. It's possible to get confused about these things, especially as most Unix/Linux MTSes have a
sendmail
program image file that is nothing whatsoever to do with the Sendmail software package. There's almost never a need to set up a system in this way with two different MTS softwares running in parallel. (Multiple instances of one package is as exotic a configuration as things normally get.)– JdeBP
Jun 18 '11 at 12:45