Khi bạn nhập sudo sendmailconfig
, bạn sẽ được nhắc cấu hình sendmail.
Để tham khảo, các tệp được cập nhật trong khi định cấu hình được đặt ở phần sau (trong trường hợp bạn muốn cập nhật chúng theo cách thủ công):
/etc/mail/sendmail.conf
/etc/cron.d/sendmail
/etc/mail/sendmail.mc
Bạn có thể kiểm tra sendmail để xem nó có được cấu hình và thiết lập đúng hay không bằng cách nhập dòng sau vào dòng lệnh:
$ echo "My test email being sent from sendmail" | /usr/sbin/sendmail myemail@domain.com
Sau đây sẽ cho phép bạn thêm chuyển tiếp smtp vào 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 ..
Thêm các dòng sau để sendmail.mc, nhưng trước khi sự MAILERDEFINITIONS
. Hãy chắc chắn rằng bạn cập nhật máy chủ smtp của bạn.
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
Gọi sendmail.cf tạo (chạy thay thế make -C /etc/mail
):
m4 sendmail.mc > sendmail.cf
Khởi động lại daemon sendmail:
service sendmail restart