Назад | Перейти на главную страницу

mailx по умолчанию ОТ: адрес

Я настраиваю уведомление по электронной почте для автоматического обновления на ubuntu 18.04. Похоже, что автоматические обновления не могут устанавливать адрес «ОТ» и полагаться на mailx.

В mailx я использую SMTP, поэтому адрес отправителя должен быть уточнен. Я получаю сообщение об ошибке: адрес отправителя - это root, а не root@mydomain.com.

Чтобы изменить это, мне нужно установить 5-й параметр для пользователя root в файле / etc / passwd.

Нет другого менее навязчивого варианта?

РЕДАКТИРОВАТЬ: добавление определений ssmtp (измененный домен и пользователь / пароль для безопасности)

#
# Config file for sSMTP sendmail
#
# The person who gets all mail for userids < 1000
# Make this empty to disable rewriting.
root=nir@domain.com

# 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=email-smtp.eu-west-1.amazonaws.com:587

# Where will the mail seem to come from?
rewriteDomain=domain.com

# The full hostname
hostname=domain.com

# 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


# Use SSL/TLS before starting negotiation
TLS_CA_FILE=/etc/ssl/certs/ca-certificates.crt
UseTLS=NO
UseSTARTTLS=YES




AuthUser=XXX
AuthPass=YYY
AuthMethod=LOGIN
# sSMTP aliases
# 
# Format:   local_account:outgoing_address:mailhub
#
# Example: root:your_login@your.domain:mailhub.your.domain[:port]
# where [:port] is an optional port number that defaults to 25.

root:nir@domain.com:email-smtp.eu-west-1.amazonaws.com:587