เมื่อคุณพิมพ์sudo sendmailconfig
คุณควรได้รับแจ้งให้กำหนดค่า sendmail
สำหรับการอ้างอิงไฟล์ที่ถูกอัพเดตระหว่างการตั้งค่าจะอยู่ในรายการต่อไปนี้ (ในกรณีที่คุณต้องการอัพเดตด้วยตนเอง):
/etc/mail/sendmail.conf
/etc/cron.d/sendmail
/etc/mail/sendmail.mc
คุณสามารถทดสอบ sendmail เพื่อดูว่ามีการกำหนดค่าและตั้งค่าอย่างถูกต้องหรือไม่โดยพิมพ์ข้อความต่อไปนี้ในบรรทัดคำสั่ง:
$ echo "My test email being sent from sendmail" | /usr/sbin/sendmail myemail@domain.com
ต่อไปนี้จะช่วยให้คุณเพิ่ม smtp relay ไปยัง sendmail:
#Change to your mail config directory:
cd /etc/mail
#Make a auth subdirectory
mkdir auth
chmod 700 auth
#Create a file with your auth information to the smtp server
cd auth
touch client-info
#In the file, put the following, matching up to your smtp server:
AuthInfo:your.isp.net "U:root" "I:user" "P:password"
#Generate the Authentication database, make both files readable only by root
makemap hash client-info < client-info
chmod 600 client-info
cd ..
เพิ่มบรรทัดต่อไปนี้เพื่อ sendmail.mc แต่ก่อน MAILERDEFINITIONS
ตรวจสอบให้แน่ใจว่าคุณอัปเดตเซิร์ฟเวอร์ smtp ของคุณ
define(`SMART_HOST',`your.isp.net')dnl
define(`confAUTH_MECHANISMS', `EXTERNAL GSSAPI DIGEST-MD5 CRAM-MD5 LOGIN PLAIN')dnl
FEATURE(`authinfo',`hash -o /etc/mail/auth/client-info.db')dnl
เรียกใช้การสร้าง sendmail.cf (หรือเรียกใช้make -C /etc/mail
):
m4 sendmail.mc > sendmail.cf
รีสตาร์ท sendmail daemon:
service sendmail restart