Moritz Marquardt
Moritz Marquardt
I have the same problem, and I think that a "Login" button instead of a password field would make sense in that case.
FYI, I'm getting the same issue in the actions when running `PHP_VERSION="7.3" BRANCH="v4" VARIANT="cli" ./build-and-test.sh` locally, also on the main v4 branch, so this doesn't look like it's an issue...
Hm, doesn't work for me. What about adding something like [DMA](https://wiki.mageia.org/en/Dma_Dragonfly_Mail_Agent) to the image & then allowing to set the SMTP details through environment variables? Edit: DMA doesn't even need...
I've installed DMA & added documentation, but parsing the environment variables & generating the configuration is still to be done - I'll probably get that done in the next couple...
DMA doesn't really act like a full SMTP server - without anything, it just acts like the `sendmail` command usually does, so it sends the email directly to the recipient...
This solves issue #117 - if the baseUrl is ~~empty~~ unset (an empty string still means "the root of the current domain") or ".", it is dynamically set for every...
You might want to try my Mintlook template (https://github.com/moqmar/mintlook-couscous), it uses js-search and an indexer to provide a simple search function.
Workaround: ```python >>> class PickleableTomlDecoder(toml.TomlDecoder): ... def get_empty_inline_table(self): ... return self.get_empty_table() ... pickle.dumps(toml.loads("test = { fail = true }", decoder=PickleableTomlDecoder())) b'\x80\x04\x95\x16\x00\x00\x00\x00\x00\x00\x00}\x94\x8c\x04test\x94}\x94\x8c\x04fail\x94\x88ss.' ```
The same applies for some reason to `TLS_CA_CRT_PATH`, I couldn't find an obvious mistake here though... Edit: Seems like I'm only allowed to use either `_PATH` or `_FILENAME`?! Something weird...
Ah, just saw that this will be fixed with #8. The `_PATH` and `_FILENAME` options are still a bit confusing to me though.