Коли ви ввели 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 до 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:
service sendmail restart