M HYPE SPLASH
// news

How do I set up ssmtp for use with Fastmail?

By Sarah Scott

There are plenty of guides on the web about setting up ssmtp for Gmail, but it's a bit different for different providers.

How should it be done for fastmail.com?

1 Answer

After installing ssmtp (sudo apt install ssmtp is all it takes), go to Password & Security settings, and create an App Password. It only needs permission for SMTP, nothing else.

Then, edit /etc/ssmtp/ssmtp.conf to resemble the following:

root=
AuthUser=
AuthPass=passwordGoesHere123
mailhub=smtp.fastmail.com:465
hostname=fastmail.com
FromLineOverride=NO
UseTLS=YES
UseSTARTTLS=NO

Replace with your actual Fastmail email address (which may not be @fastmail.com, but one of their other domain names) and use the App Password you created above for AuthPass.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy