smtp: SSL_CTX_load_verify_locations: такого файла или каталога нет.
Debian GNU/Linux 11.4 (яблочко), Linux 5.10.0-17-amd64
УстановленOpenSMTPD 6.8.0p2-3 amd64
(включаяopensmtpd-extras 6.7.1-2 amd64
) и попробовал проверить отправку почты, но каждый разsmtp
позвонить (кромеsmtp -h
) приводит к такому сообщению об ошибке:
~# smtp -v
smtp: SSL_CTX_load_verify_locations: No such file or directory
Сам сервер работает:
:~# telnet localhost 25
Trying ::1...
Connected to localhost.
Escape character is '^]'.
220 SERVERNAME.local ESMTP OpenSMTPD
quit
221 2.0.0 Bye
Connection closed by foreign host.
Где генерируется это сообщение об ошибке? Какой именно файл или каталог он ищет? Поиск этого сообщения об ошибке в Интернете не дал мне никаких результатов.
smtpd.conf
выглядит так:
# $OpenBSD: smtpd.conf,v 1.10 2018/05/24 11:40:17 gilles Exp $
# This is the smtpd server system-wide configuration file.
# See smtpd.conf(5) for more information.
table aliases file:/etc/aliases
# To accept external mail, replace with: listen on all
#
listen on localhost
action "local" maildir alias <aliases>
action "relay" relay host "smtp://mailrelay.local" mail-from "@mydomain.info"
# Uncomment the following to accept external mail for domain "example.org"
#
# match from any for domain "example.org" action "local"
match for local action "local"
match from local for any action "relay"