Results 141 comments of muquit

More information needed to figure out what's going on. Please tell exactly how you are running it from the cron job, make sure not to post your SMTP credentials. Thanks.

I did not know that original maintainer was missing. I need to think about it a bit. Thanks!

Yes. StartTLS, usually for port 587 and SSL, usually fort 465 are supported. To see if the server supports them, example: ``` mailsend-go -info -smtp smtp.gmail.com -port 587 mailsend-go -info...

I believe your last pull request fixed the bug in master branch. I just did not get any chance to make a build yet.

To see the list of mime types, type ``` mailsend -show-mime-types```. To sepecify a MIME type use the option ```-mime-type``` before every ```-attach``` option (order matters). Please look at FAQ...

Please note ```-msg-body``` is a hack, it just includes the file in the body of the message without any MIME boundary string. It is not a proper MIME mail. Also...

Yes there is no such thing as mime-type in mail header, it is Content-Type. mime-type is used to construct the type, character set, encoding etc. of the attachments in mail...

If `-msg-body` is used, only one file can be "included", all other attachments will be ignored. It is mentioned in FAQ #1. Including a file as body and attachments can...

At this time, please edit `libs/libmutils/Makefile` and add **-DTIME_WITH_SYS_TIME=1** at the end of **DEFS** line. Then, ``` make clean make ``` I will update the configure when get some time....

You are compiling without OpenSSL, the most SMTP servers require authentication, so the program will not be that useful if compiled without OpenSSL. Anyway, this function was mistakenly inside HAVE_OPENSSL...