smtp-client icon indicating copy to clipboard operation
smtp-client copied to clipboard

SMTP Client Library in C

Results 9 smtp-client issues
Sort by recently updated
recently updated
newest added

Thanks for this piece of code, so good! However, I've found some deprecation warnings when compiling on OSX with openssl 3.0.5, installed with brew: ``` gcc -DSMTP_OPENSSL -I/usr/local/Cellar/openssl@3/3.0.5/include smtp/smtp.c -c...

System is ubuntu 20.04, though I am not sure its important. After ./configure, make stops with an error when doxygen reports that there is no @return for functions that are...

I had to disable warning warning C4389: '==': signed/unsigned mismatch around the macro FD_SET. This is the new code to disable this warning. #ifdef SMTP_IS_WINDOWS #pragma warning( push ) #pragma...

Can you please give some instructions about compiling for windows using Visual Studio?? Thanks

Hi, Your library is working great and I am very happy with it. I am trying to do more complicated things like adding an image to the content of the...

On raspberry pi gcc has version 6.3.0 20170516 (Raspbian 6.3.0-18+rpi1+deb9u1) and flags -Wrestrict -Wduplicated-branches -Wstringop-overflow=4 are not recognized. gcc: error: unrecognized command line option ‘-Wduplicated-branches’; did you mean ‘-Wduplicated-cond’? gcc:...

smtp_auth was failing for me. When I traced through the smtp_parse_cmd_line calls in a debugger, I saw several 250 lines like "250-CHUNKING", and finally "250 HELP". Since that does not...

This PR tries to fix https://github.com/somnisoft/smtp-client/issues/15

The behavior of SMTPUTF8 support of the library isn't compliant with [RFC 6531](https://www.rfc-editor.org/rfc/rfc6531). If one of recipients uses i18n email address, the smtp connection will fail. sample code (based on...