Results 141 comments of muquit

Fortunately format string is not externally controlled, but should be fixed. Could you test the following code and tell me the infer command you used? It should have the same...

I can. Any reason not to use mailsend-go?

Message body and attachments can not be mixed. You can attach the text file as inline and most mail readers will probably display it inline. Please have a look at...

What platform are you on? I suspect it could be the bug #108, which is fixed in the develop branch. If you are on Linux/Unix you can pull the branch...

I uploaded v1.20b for Windows in releases section. However, I could not reproduce the issue even with v1.19 from Windows 10 with gmail. Text attachment shows up inline. For text...

Not it's not supported at this time. It is mentioned in the Known Issues section (need to support RFC2047). Thanks

configure.in needs to be updated to detect if OpenSSL supports -ldl. However, mailsend should link with OpenSSL fine.

You can do it today without any change. This is an example on Ubuntu with OpenSSL 1.1.0i * Compile OpenSSL statically ``` ./config --prefix=/path/ssl110istatic -static make make test sudo make...

The code in trunk compiles fine with OpenSSL 1.1.1g. Here is how I tested it: * Compile and install OpenSSL 1.1.1g say in /usr/local/ssl111g ``` ./configure --prefix=/usr/local/ssl111g make sudo make...

Makes sense. ``` ./configure --help|grep openssl --with-openssl=PATH where the root of OpenSSL is installed --with-openssl-includes where the OpenSSL includes are. --with-openssl-libraris where the OpenSSL library is installed. ``` If headers...