Podczas wpisywania sudo sendmailconfig
powinien pojawić się monit o skonfigurowanie sendmaila.
Dla porównania pliki aktualizowane podczas konfiguracji znajdują się w następującej lokalizacji (na wypadek, gdybyś chciał je zaktualizować ręcznie):
/etc/mail/sendmail.conf
/etc/cron.d/sendmail
/etc/mail/sendmail.mc
Możesz przetestować sendmaila, aby sprawdzić, czy jest poprawnie skonfigurowany i skonfigurowany, wpisując w wierszu poleceń:
$ echo "My test email being sent from sendmail" | /usr/sbin/sendmail myemail@domain.com
Poniższe pozwoli ci dodać przekaźnik smtp do sendmaila:
#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 ..
Dodaj poniższe linie do sendmail.mc, ale przedMAILERDEFINITIONS
. Upewnij się, że zaktualizowałeś swój serwer 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
Wywołaj tworzenie sendmail.cf (alternatywnie uruchom make -C /etc/mail
):
m4 sendmail.mc > sendmail.cf
Uruchom ponownie demona sendmaila:
service sendmail restart