Lorsque vous avez tapé, en sudo sendmailconfig
, vous devez avoir été invité à configurer sendmail.
Pour référence, les fichiers sont mis à jour lors de la configuration sont situés à la suivante (dans le cas où vous souhaitez les mettre à jour manuellement):
/etc/mail/sendmail.conf
/etc/cron.d/sendmail
/etc/mail/sendmail.mc
Vous pouvez tester sendmail pour voir si elle est correctement configuré et que le programme d'installation en tapant la commande suivante dans la ligne de commande:
$ echo "My test email being sent from sendmail" | /usr/sbin/sendmail myemail@domain.com
Ce qui suit va vous permettre d'ajouter smtp relais à 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 ..
#Add the following lines to sendmail.mc. Make sure you update your smtp server
define('SMART_HOST','your.isp.net')dnl
define('confAUTH_MECHANISMS', 'EXTERNAL GSSAPI DIGEST-MD5 CRAM-MD5 LOGIN PLAIN')dnl
FEATURE('authinfo','hash /etc/mail/auth/client-info')dnl
#Invoke creation sendmail.cf
m4 sendmail.mc > sendmail.cf
#Restart the sendmail daemon
service sendmail restart