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,115
Replies
4
Views
4,549
Replies
13
Views
6,235
Newer threads
Replies
5
Views
6,924
Replies
0
Views
5,043
Replies
0
Views
5,281
Replies
3
Views
4,291
Latest threads
Replies
1
Views
69
Replies
1
Views
85
Replies
1
Views
220
Replies
0
Views
229
Replies
0
Views
248
Recommended threads
Replies
17
Views
4,343
Replies
10
Views
1,555
Replies
47
Views
13,334

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