localhostに送信された電子メールはsSMTPレコードを使用しますか?

localhostに送信された電子メールはsSMTPレコードを使用しますか?

sSMTPがlocalhostからメールを送信するのに適していないと思いますか?

nicholas@mordor:~$ 
nicholas@mordor:~$ sudo cat /etc/ssmtp/ssmtp.conf
#
# Config file for sSMTP sendmail
#
# The person who gets all mail for userids < 1000
# Make this empty to disable rewriting.
root=postmaster

# 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=mail

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

# The full hostname
hostname=mordor.saundersconsulting.tech

# 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
nicholas@mordor:~$ 
nicholas@mordor:~$ sudo cat /etc/ssmtp/revaliases
# sSMTP aliases
# 
# Format:   local_account:outgoing_address:mailhub
#
# Example: root:[email protected]:mailhub.your.domain[:port]
# where [:port] is an optional port number that defaults to 25.
nicholas@mordor:~$ 
nicholas@mordor:~$ swaks --to [email protected] --from [email protected] --server mordor.saundersconsulting.tech
=== Trying mordor.saundersconsulting.tech:25...
*** Error connecting to mordor.saundersconsulting.tech:25:
***     IO::Socket::INET6: connect: Connection refused
nicholas@mordor:~$ 
nicholas@mordor:~$ hostname
mordor.saundersconsulting.tech
nicholas@mordor:~$ 
nicholas@mordor:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 23.10
Release:    23.10
Codename:   mantic
nicholas@mordor:~$ 

以前に試した mail.log と mail.err の gmail 以外は言及されていません。 私が知る限り、sSMTPは電子メールのみを中継します。

注目すべき結果:

nicholas@mordor:~$ 
nicholas@mordor:~$ ssmtp [email protected]
subject:ping

ssmtp: Cannot open mail:25
nicholas@mordor:~$ 

sSMTPはポート25を開くことができませんか?

ベストアンサー1

Linux/debianパッケージの説明ssmtp

パッケージ:ssmtp
...

Description-en:システムからメールセンターにメールを送信する非常に簡単なMTAです。システムからメールセンターにメールを送信する安全で効率的で簡単な方法です。これにはsuidバイナリやその他の危険な内容は含まれていません。見なければならないメールスプールもなく、バックグラウンドで実行されるデーモンもありません。メールは設定されたメールホストに転送されます。構成は非常に簡単です。 。
警告:メールを受け入れたり、エイリアスを拡張したり、キューを管理したりすることはすべてです。これはシステム管理者のメールセンターに属します。

おすすめ記事