Configure sendmail on CentOS to send mails from server?

Jovani

Active member
Joined
Jul 10, 2012
Messages
338
Points
28
Hi there,

Are there any ways how to configure sendmail on CentOS to send mails from server?

thanks in advanced :)
 

Alex Thompson

Moderator
Joined
Jun 6, 2013
Messages
651
Points
43
Hi there,

Are there any ways how to configure sendmail on CentOS to send mails from server?

thanks in advanced :)
If you simply want your server can send mail to the outside, you can use sendmail application. Once installed and configured, you can use the mail() function of PHP to send mail.

Install sendmail

Code:
sudo yum install sendmail sendmail-cf
Configuring sendmail

Code:
nano /etc/mail/sendmail.mc
Note not edit sendmail.cf file because this file is automatically generated from sendmail.mc file

Configure DAEMON_OPTIONS to allow sending mail from localhost/smtp

DAEMON_OPTIONS(`Port=smtp,Addr=127.0.0.1, Name=MTA')dnl

Edit LOCAL_DOMAIN to hostname

Code:
LOCAL_DOMAIN(`example.com')dnl
Update sendmail configuration

Code:
sudo make -C /etc/mail
Restart

Code:
sudo service sendmail restart
Check sendmail

Code:
echo "Subject: your subject" | /usr/lib/sendmail -v [email protected]
In order to facilitate the sending of mail, you should note hostname in CentOS install exactly.
 
Older threads
Replies
2
Views
4,156
Replies
4
Views
4,553
Replies
13
Views
6,238
Newer threads
Replies
5
Views
6,979
Replies
0
Views
5,092
Replies
0
Views
5,334
Replies
3
Views
4,294
Latest threads
Replies
1
Views
100
Replies
1
Views
121
Replies
1
Views
240
Replies
0
Views
251
Replies
0
Views
262
Recommended threads

Referral contests

Referral link for :

Sponsors

Popular tags

You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an alternative browser.

Top