From 7124e30a46f0601dcb04f8bb388f894200c0da98 Mon Sep 17 00:00:00 2001 From: Michel Oosterhof Date: Sat, 13 Dec 2014 06:45:19 +0000 Subject: [PATCH] reenable password authentication again --- kippo/core/auth.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/kippo/core/auth.py b/kippo/core/auth.py index d0572eb1..7685aa40 100644 --- a/kippo/core/auth.py +++ b/kippo/core/auth.py @@ -123,12 +123,10 @@ class HoneypotPublicKeyChecker: @implementer(ICredentialsChecker) class HoneypotPasswordChecker: """ - Checker that accepts keyboard-interactive + Checker that accepts "keyboard-interactive" and "password" """ -# credentialInterfaces = (IUsernamePassword, IPluggableAuthenticationModules) - - credentialInterfaces = (IPluggableAuthenticationModules,) + credentialInterfaces = (IUsernamePassword, IPluggableAuthenticationModules) def requestAvatarId(self, credentials): if hasattr(credentials, 'password'):