markus-96

Results 13 comments of markus-96

there are at least 1000€ that I could spend.. And a connection to Germany that I could offer over VPN (up to 100MBit/s).. You only have to reply, a possible...

Ok, the Received: - headers look like this: ``` Received: from server.sub.domain.tld by server.sub.domain.tld with LMTP id VkDEIcl0n2KqqwUAOBn1Dw (envelope-from ) for ; Tue, 07 Jun 2022 17:54:49 +0200 Received: from...

maybe it is because of `action="#"` in changecustompwd.tpl... I dont know if `&custompwdindex=N` is also submitted there, but should be. Maybe changing `action="#"` to `action=""` (although this SHOULD not have...

I do not know if this should be a new issue, but I am also running into issues following your instructions for installing. It also might an issue with bcrypt,...

Still the same issue: ``` strut/deps/access-token-jwt |  WARN  Unsupported engine: wanted: {"node":"^12.19.0 || ^14.15.0 || ^16.13.0 || ^18.12.0"} (current: {"node":"v19.9.0","pnpm":"8.3.0"}) Scope: all 61 workspace projects strut/server |  WARN  deprecated [email protected]...

OK, seams like uwsgi ran out of memory, so I decided to increase the accessible RAM of the VM `v.memory` to `1024`. The `Vagrantfile` now looks like this: ``` #...

> Jfyi I don't forget about it, just very busy with other tasks. If you were notified by my merges of upstream, sry for that. Had to do the merges...

> I'm looking for a maintainer for this project, as I've not been able to spend much time on it recently. Please let me know if you are interested. That's...

just change ```py if TYPE_CHECKING: from foo import Foo ``` to ```py from foo import Foo ``` during runtime, TYPE_CHECKING is always False. So it won't import Foo. Full example,...

the following is working, but a little bit ugly, but it should be more compliant to PEP8 (imports to the top of the file): ```py from typing import TYPE_CHECKING import...