Explicitly set the desired SASL mech to ANONYMOUS if no username is provided.
This commit is contained in:
parent
1b00b7e8df
commit
96ff2d43c0
1 changed files with 3 additions and 0 deletions
|
@ -32,6 +32,9 @@ class FeatureMechanisms(BasePlugin):
|
|||
def plugin_init(self):
|
||||
self.use_mech = self.config.get('use_mech', None)
|
||||
|
||||
if not self.use_mech and not self.xmpp.boundjid.user:
|
||||
self.use_mech = 'ANONYMOUS'
|
||||
|
||||
def tls_active():
|
||||
return 'starttls' in self.xmpp.features
|
||||
|
||||
|
|
Loading…
Reference in a new issue