Andrew Arace
Andrew Arace
Seeing the same behavior. SslCaPem is set to a multi chain CA: ``` -----BEGIN CERTIFICATE----- (something) -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- (another) -----END CERTIFICATE----- ``` SslCertificatePem and SslKeyPem are set as...
`openssl s_client -connect (redacted_host):(port) -cert cert.txt -key key.pem -CAfile chain.txt -verify_return_error` appears to connect successfully without errors, and can reconnect and renegotiate with the `-reconnect` switch the "chain.txt" file has...
I don't believe there's a situation where the certificate for the main ssl certificate _could_ ever be a chain of multiple certs.
I implemented this exact functionality myself, and it's very possible. Here's a snapshot from the constructor of a custom responder that only responds to messages from me. When the bot...
Yes, correct. I just passed the Bot reference to the constructor (in this case). You could broadcast a message from a background thread from any responder, provided you have a...