dovecot-2.0: auth: Added support for EXTERNAL SASL mechanism.

dovecot at dovecot.org dovecot at dovecot.org
Tue May 26 03:35:49 EEST 2009


details:   http://hg.dovecot.org/dovecot-2.0/rev/8e7dcb58bd89
changeset: 9362:8e7dcb58bd89
user:      Timo Sirainen <tss at iki.fi>
date:      Mon May 25 20:35:41 2009 -0400
description:
auth: Added support for EXTERNAL SASL mechanism.

diffstat:

2 files changed, 4 insertions(+)
src/auth/Makefile.am |    1 +
src/auth/mech.c      |    3 +++

diffs (38 lines):

diff -r 116d94937979 -r 8e7dcb58bd89 src/auth/Makefile.am
--- a/src/auth/Makefile.am	Mon May 25 20:34:33 2009 -0400
+++ b/src/auth/Makefile.am	Mon May 25 20:35:41 2009 -0400
@@ -74,6 +74,7 @@ dovecot_auth_SOURCES = \
 	mech-login.c \
 	mech-cram-md5.c \
 	mech-digest-md5.c \
+	mech-external.c \
 	mech-gssapi.c \
 	mech-ntlm.c \
 	mech-otp.c \
diff -r 116d94937979 -r 8e7dcb58bd89 src/auth/mech.c
--- a/src/auth/mech.c	Mon May 25 20:34:33 2009 -0400
+++ b/src/auth/mech.c	Mon May 25 20:35:41 2009 -0400
@@ -68,6 +68,7 @@ extern const struct mech_module mech_apo
 extern const struct mech_module mech_apop;
 extern const struct mech_module mech_cram_md5;
 extern const struct mech_module mech_digest_md5;
+extern const struct mech_module mech_external;
 extern const struct mech_module mech_ntlm;
 extern const struct mech_module mech_otp;
 extern const struct mech_module mech_skey;
@@ -89,6 +90,7 @@ void mech_init(const struct auth_setting
 	mech_register_module(&mech_apop);
 	mech_register_module(&mech_cram_md5);
 	mech_register_module(&mech_digest_md5);
+	mech_register_module(&mech_external);
 	if (set->use_winbind) {
 		mech_register_module(&mech_winbind_ntlm);
 		mech_register_module(&mech_winbind_spnego);
@@ -114,6 +116,7 @@ void mech_deinit(const struct auth_setti
 	mech_unregister_module(&mech_apop);
 	mech_unregister_module(&mech_cram_md5);
 	mech_unregister_module(&mech_digest_md5);
+	mech_unregister_module(&mech_external);
 	if (set->use_winbind) {
 		mech_unregister_module(&mech_winbind_ntlm);
 		mech_unregister_module(&mech_winbind_spnego);


More information about the dovecot-cvs mailing list