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)
Posted in: s/misfin
๐ป ps
2025-09-02 ยท 9 months ago ยท ๐ A161
๐ป ps [OP] ยท 2025-09-02 at 06:56:
Just removed port from request header and now it works \o/
๐ป ps [OP] ยท 2025-09-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] ยท 2025-09-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!
๐ cipres ยท Mar 02 at 21:43:
@ps Also you can use the python client:
โ https://gitlab.com/cipres/misfin
misfin send-as -s "Subject" my-cert.pem someone@gemini.org "My message"