Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thsmi/sieve.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schmid <schmid-thomas@gmx.net>2018-03-05 23:31:21 +0300
committerThomas Schmid <schmid-thomas@gmx.net>2018-03-05 23:31:21 +0300
commit137af32ae7569adacf38fb4d4f55e39efa5d2f82 (patch)
tree14164af3fa8dd3e097c61d47319a8e2780e2d198
parent361a1173f3f0f07ccef4c4ffa87358515749b272 (diff)
Fixes #100 - reload sasl mechanims after starttls0.2.11
-rwxr-xr-xsrc/common/libManageSieve/SieveAbstractSession.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/libManageSieve/SieveAbstractSession.js b/src/common/libManageSieve/SieveAbstractSession.js
index ef2344fa..95231c60 100755
--- a/src/common/libManageSieve/SieveAbstractSession.js
+++ b/src/common/libManageSieve/SieveAbstractSession.js
@@ -214,8 +214,11 @@
},
onAuthenticate: function (response) {
+
// update capabilites
this.sieve.setCompatibility(response.getCompatibility());
+ // update the sasl mechanism
+ this.sieve.capabilities.sasl = response.getSasl();
this._invokeListeners("onChannelStatus", 3, "progress.authenticating");