dma
dma copied to clipboard
The DragonFly Mail Agent, a small Mail Transport Agent (MTA), designed for home and office use.
Hi, Low priority. dma version: 0.7 Unable to compile on Solaris 9 or 10. The yacc does not support the -o option. Setting YACC to bison fixes that... get-version.sh need...
Implementation of the feature discussed in #121. Some remarks: * I shortened "DELIVERYMODE" to "DELIVERY" for brevity; * I fixed one unrelated bug along the way: specifying `FINGERPRINT` without an...
I am using systemd timers to schedule backup runs. Mails sent after backup never arrive, presumably because: 1. backup software invokes `mail` 2. `mail` invokes `dma` (as `sendmail`) 3. `dma`...
- Initialize libssl using non-deprecated APIs OpenSSL 3 deprecated `SSL_library_init` and `SSL_load_error_strings` in favor of `OPENSSL_init_ssl`. Use `OPENSSL_init_ssl` when dealing with OpenSSL 1.1 and newer to unbreak the build with...
Refer to source files using .CURDIR instead of relying on the build to be done with NO_OBJ, etc. Adjust .gitignore to ignore files left behind as part of FreeBSD's bsd.prog.mk...
In my use case, I'd like to receive mail from system daemons / cron jobs / etc. but don't want to set up authentication for an external/third-party SMTP relay. Partly...
I'm looking to use `dma` to send mail to different mail servers. Ideally it would choose the server based on the sender address header. I've done some reading but can't...
Free the allocated 'sender' string when returning NULL on error.
I had the same problem as described in https://github.com/corecode/dma/issues/75. It has bugged me quite a few times and I saw the work already done by jjakob in https://github.com/corecode/dma/pull/96 and so...