How to set up/manage services on a computer
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

677 B

lightweight email client

install

sudo apt install msmtp-mta mailutils

configure

edit /etc/msmtprc:

# A system wide configuration file is optional.
# If it exists, it usually defines a default account.
# This allows msmtp to be used like /usr/sbin/sendmail.

defaults
# Port 587 is preferred, because ISPs often block port 25
port 587
tls on
tls_starttls on
logfile /var/log/mail.log

account default
host $server
# Envelope-from address
from root@hostname
# Authentication
auth on
user $user
password $password

since you will be putting a plaintext password in this config file, make sure it's only readable by root:

chmod og-r /etc/msmtprc