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
- the server is working (I can send mail with Lagrange UI)
Sep 02 · 3 months ago · 👍 A161
3 Comments ↓
Just removed port from request header and now it works \o/
Unfortunately, no. I see a 20 status code, but the mailbox is empty. Should I use the user certificate anyway?
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!