Results 18 issues of lovetox

## Environment - ejabberd version: 19.05 ## Bug description If a user removes his account via IBR ``, ejabberd doesn't end the stream with the appropriate stream error ``. Further...

Component:XMPP Compliance

Hi, Not a real big issue but something i found while looking at the code Seems all digest need to be passed as `str` and get then converted to `bytes`...

Smuxi misses the node attr when answering entity caps requests ``` ``` Answer ``` ```

## Environment - ejabberd version: 18.05 - OS: Linux (Debian) - Installed from: distro package ## Bug description After stopping mod_muc, the first presence that arrives from a remote server...

Kind:Bug
Component:S2S

Currently Context.get_target() returns the abstract base class `Surface`. Making Context a Generic allows the type checker to remember the type that was passed to the Context at creation.

Currently if a application sets a Pixbuf as icon on a Gio.Notification object, it depends on if the org.gtk.Notification is available or not if the icon makes it through. (org.gtk.Notification...

enhancement
help wanted

Hi, i did setup a project with the basic xmpp server connect example from the documentation [Documentation](http://smiley22.github.io/S22.Xmpp/Documentation/) it works with some servers, but i get the following exception `Sharp.Xmpp.XmppDisconnectionException: Unrecoverable...

Hi, i see all extensions are loaded when i create an instance of `XmppClient`. but there is no enabling iq request send cause the function `EnableCarbons()` is never called, and...

instead of using XmppCore.cs: `sslStream.AuthenticateAsClient(hostname)` which defaults always to TLS 1.0 we should use something like this `sslStream.AuthenticateAsClient(hostname, null, SslProtocols.Tls12 | SslProtocols.Tls11 | SslProtocols.Tls, false);` which allows every TLS Version.

debug code is missing in `XmppCore.HandleIqResponse()` i fixed it with putting `if (debugStanzas) System.Diagnostics.Debug.WriteLine(iq.ToString());` at the end.