Sascha Kattelmann
Sascha Kattelmann
The MIM implementation of XEP-0012 is session based meaning that the peer in question is considered 'online' when there is a connected resource. Sending an 'unavailable' presence does not have...
This can actually be 'fixed' by consecutively using `ejabberd_sm:get_session_pid/3` and `ejabberd_c2s:get_presence/1` to check the presence for each resource [at this place](https://github.com/esl/MongooseIM/blob/04f5926069839e8f657aa5ee2f33b79499fae57f/apps/ejabberd/src/mod_last.erl#L203).
I actually do several decrypts on one boot procedure. My feeling is that the number of power cycles matters, e.g. I always cut off the power of the device and...
@cplappert Many thanks for the research in the spec! I could give the `tpm2_shutdown` a shot next week and will inform you about the results. However, this doesn't solve my...
From a first glance I would guess that the module is not found. Have you tried to execute ``` ExometerStatix.exometer_init([{hostname,"mitstatsd1.cmmint.net"},{port,8125}]) ``` to check if the module is loaded at all?...
@uwiger: I can now frequently generate this error within a larger test suite. I will come back with a better error description when I find the time.
@voltone Have you ever figured out how to define custom extensions with Erlang's certificate support?
@voltone thanks for the answer! However, I meant _custom_ extensions, e.g. _not_ standard extensions. I want to create my own extensions for client certificates. I'll test around throughout the week...
> You basically just need an OID and a blob of DER-encoded data. You can mint your own OIDs within the enterprise namespace if you have an OUI. Producing a...
> ```erlang > my_extension(Value) -> > %% ASN.1 universal tag value 4: Octet String > DER = asn1rt_nif:encode_ber_tlv({16, [{4, Value}]}), > #'Extension'{extnID = ?my_extension_oid, extnValue = DER}. > ``` What...