How to send Misfin message with CLI?

Trying this one cmd but getting 53 code (DOMAIN NOT SERVICED):

echo -e "misfin://test@misfin1:1958 \r\naaa" | openssl s_client -connect misfin1:1958 -ign_eof
Posted in: s/misfin
👻 ps

Sep 02 · 3 months ago · 👍 A161

3 Comments ↓

👻 ps [OP] · Sep 02 at 06:56:

Just removed port from request header and now it works \o/

👻 ps [OP] · Sep 02 at 07:00:

Unfortunately, no. I see a 20 status code, but the mailbox is empty. Should I use the user certificate anyway?

👻 ps [OP] · Sep 02 at 07:42:

I forgot about the sender with it certs :)

echo -e "misfin://test@localhost  < test@localhost2 Test \r\nMESSAGE" | openssl s_client -connect localhost:1958 -cert /path/to/cert.pem -key /path/to/key.pem -ign_eof

Done!