eMail
eMail copied to clipboard
Command line SMTP client
Clang16 will not allow -Wimplicit-function-declaration will results in the error ``` checking if strftime is GNU or Non-GNU... /tmp/strftime_try.c:16:8: error: call to undeclared library function 'isdigit' with type 'int (int)';...
gcc-10 changed the default from -fcommon to fno-common: https://gcc.gnu.org/PR85678 As a result build fails as: ld: utils.o:include/email.h:81: multiple definition of `Mopts'; email.o:include/email.h:81: first defined here ld: utils.o:include/email.h:64: multiple definition of...
After ./configure, need to add -z muldefs to LDFLAGS in src/Makefile to stop errors due to multiple definitions of Mopts etc.
I just installed eMail on an Ubuntu 20.04 machine, I have configured an SMTP server, but when I attempt to send an email I get: ``` $ echo "Test the...
Using 3.2.3 (on Cygwin) I can successfully connect to my mail server, but then it times out: $ echo hello | email -V -f -n "name" -s "subject" -r smtp.xx.net...
How would I use multiple configurations for email.conf for several different smtp servers ? Can this be set on the command line when sending an email, or is it in...
With the TLS option, email supports only TLSv1.0, which is either obsolete, or rapidly becoming obsolete, depending on your point of view. Looks like in dlib, around line 175 of...
getting error: email: FATAL: Smtp error: 530 5.7.0 Must issue a STARTTLS command first. s31sm1331632ywa.30 - gsmtp not sure where to add this: props.put("mail.smtp.starttls.enable", "true");
Timezone
Hi, How can I change timezone¿? My emails are send (or received) +8 hours that present time. Thanx
Add TIMEOUT in the list of allowed config paramaters, make sure no random memory is parted for potential options and fix output when the parameters name entered is invalid. Note...