Debian 10.0にssmtp
をインストールしようとしましたが、エラーが発生します
Package ssmtp is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or is only available from another source
しかし、私はどちらの結果も得ませんapt search ssmpt
も:
$ apt-file search ssmtp
monitoring-plugins-basic: /usr/lib/nagios/plugins/check_ssmtp
sosreport: /usr/share/sosreport/sos/plugins/ssmtp.py
Debianバスターにssmtpをインストールするにはどうすればよいですか?
apt install msmtp
パッケージは現在メンテナンスされていません
このパッケージは2019-03-19からみなしご化されています。
msmtp
を代わりに使用できます。
ssmtpは現在メンテナンスされていませんが、msmtp
をインストールして構成することもできます。
Gmailの場合(2要素ログインが無効になっている場合)/etc/msmtprc
:
# Set default values for all following accounts.
defaults
port 587
tls on
tls_trust_file /etc/ssl/certs/ca-certificates.crt
account gmail
Host smtp.gmail.com
from <user>@gmail.com
auth on
user <user>
password <your password>
# Set a default account
account default : gmail
テストを実行するには
echo -e "Subject: msmtp test\nhello test." | msmtp _recipient_address_
すぐに、送信した電子メールが受信者の受信ボックスに表示されます。