http://www.spi-box.co.uk/media/1087/spiboxmanual_1.pdf
I've managed to be successful in doing this for gmail, but now I want to use smtp with hotmail's outgoing smtp server:
http://windows.microsoft.com/en-GB/wind ... e-from-app
This is what I have in /etc/ssmtp/ssmtp.conf but nothing is working:
I've tried port 25.#
# Config file for sSMTP sendmail
#
# The person who gets all mail for userids < 1000
# Make this empty to disable rewriting.
root=raging_rush@hotmail.co.uk
# The place where the mail goes. The actual machine name is required no
# MX records are consulted. Commonly mailhosts are named mail.domain.com
mailhub=smtp-mail.outlook.com:587
# Where will the mail seem to come from?
#rewriteDomain=
# The full hostname
hostname=raspberrypi
# Are users allowed to set their own From: address?
# YES - Allow the user to specify their own From: address
# NO - Use the system generated From: address
FromLineOverride=YES
#Username
AuthUser=raging_rush@hotmail.co.uk
#Password
AuthPass=(takenOut)
UseSTARTTLS=YES
UseTLS=Yes
http://edoceo.com/howto/ssmtp
Maybe I have to use the TLS certificate indicated in the above at
Code: Select all
/etc/ssl/certs/ssmtp.pemI'm terribly new at this, what could someone suggest?