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,017
Replies
4
Views
4,531
Replies
13
Views
6,219
Newer threads
Replies
5
Views
6,794
Replies
0
Views
4,930
Replies
0
Views
5,153
Replies
3
Views
4,279
Latest threads
Replies
0
Views
115
Replies
2
Views
319
Replies
4
Views
407
Recommended threads
Replies
2
Views
2,224
Replies
0
Views
3,063
Replies
11
Views
5,291
Replies
17
Views
11,091

Latest postsNew 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