Quando hai digitato sudo sendmailconfig
, dovresti aver richiesto di configurare sendmail.
Per riferimento, i file che vengono aggiornati durante la configurazione si trovano nel seguente (nel caso in cui si desideri aggiornarli manualmente):
/etc/mail/sendmail.conf
/etc/cron.d/sendmail
/etc/mail/sendmail.mc
Puoi testare sendmail per vedere se è correttamente configurato e impostato digitando quanto segue nella riga di comando:
$ echo "My test email being sent from sendmail" | /usr/sbin/sendmail myemail@domain.com
Quanto segue ti permetterà di aggiungere l'inoltro smtp a 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 ..
Aggiungere le seguenti linee al sendmail.mc, ma prima il MAILERDEFINITIONS
. Assicurati di aggiornare il tuo server 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
Richiamare la creazione sendmail.cf (in alternativa eseguito make -C /etc/mail
):
m4 sendmail.mc > sendmail.cf
Riavvia il demone sendmail:
service sendmail restart