Nathan Osman
Nathan Osman
Any update on this?
I'm seeing this too: > failed to run `rustc` to learn about target-specific information Opening VS Code's terminal and running `cargo build` works fine.
So, further update: in my case, the problem was caused by some bad flags that were being passed to `rustc` through `RUSTFLAGS`. Removing these made the error disappear.
This would indeed need to be implemented at the PHP extension level, although a script could (in theory) override `mail()` using something like this: http://php.net/manual/en/function.override-function.php
@scher200 hey, that's pretty cool.
@scher200 How does PHP normally pass attachments to `sendmail`?
Hectane accepts raw MIME messages (like the example you provided). You might be able to send this directly to Hectane using the `/v1/raw` method: https://github.com/hectane/hectane/wiki/Hectane%20Daemon#api
I tried sending your email with the `/v1/raw` method to my own email server and it worked without any problems. However, Gmail was dropping it. It is worth noting that...
Rather than using environment variables, the options are now passed as flags. Your example would look something like this: ``` image: hectane/hectane command: | -username=myuser -password=mypassword -debug=1 -disable-ssl-verification=1 container_name: hectane...
The DKIM code is still quite new and hasn't been included in an official release yet. However, if you build Hectane from source, you can enable the feature by: 1....