Displaying 5 results from an estimated 5 matches for "mech_deinit".
2007 Jul 30
2
dovecot-auth core dumps
.....done.
Loaded symbols for /lib/libc.so.6
Reading symbols from /libexec/ld-elf.so.1...(no debugging symbols
found)...done.
Loaded symbols for /libexec/ld-elf.so.1
(gdb) bt full
#0 0x180abc22 in gss_delete_sec_context () from /usr/lib/libgssapi.so.8
No symbol table info available.
#1 0x08059246 in mech_deinit ()
No symbol table info available.
#2 0x08053f12 in auth_request_handler_unref ()
No symbol table info available.
#3 0x08050bef in auth_client_connection_destroy ()
No symbol table info available.
#4 0x08050ead in auth_client_connection_create ()
No symbol table info available.
#5 0x08065f54 in...
2004 Jul 22
1
[PATCH] add LOGIN authentication mechanism
...in);
+ else if (strcasecmp(*mechanisms, "LOGIN") == 0)
+ mech_register_module(&mech_login);
else if (strcasecmp(*mechanisms, "APOP") == 0)
mech_register_module(&mech_apop);
else if (strcasecmp(*mechanisms, "CRAM-MD5") == 0)
@@ -474,6 +477,7 @@ void mech_deinit(void)
timeout_remove(to_auth_failures);
mech_unregister_module(&mech_plain);
+ mech_unregister_module(&mech_login);
mech_unregister_module(&mech_apop);
mech_unregister_module(&mech_cram_md5);
mech_unregister_module(&mech_digest_md5);
-------------- next part --------...
2004 Jul 01
3
[PATCH, RFC] add APOP authentication mechanism
...else if (strcasecmp(*mechanisms, "APOP") == 0)
+ mech_register_module(&mech_apop);
else if (strcasecmp(*mechanisms, "CRAM-MD5") == 0)
mech_register_module(&mech_cram_md5);
else if (strcasecmp(*mechanisms, "DIGEST-MD5") == 0)
@@ -471,6 +474,7 @@ void mech_deinit(void)
timeout_remove(to_auth_failures);
mech_unregister_module(&mech_plain);
+ mech_unregister_module(&mech_apop);
mech_unregister_module(&mech_cram_md5);
mech_unregister_module(&mech_digest_md5);
mech_unregister_module(&mech_anonymous);
diff -udrpN -X /usr/share/don...
2004 Aug 09
1
[PATCH] RPA authentication mechanism
...mech_ntlm);
+ else if (strcasecmp(*mechanisms, "RPA") == 0)
+ mech_register_module(&mech_rpa);
else if (strcasecmp(*mechanisms, "ANONYMOUS") == 0) {
if (anonymous_username == NULL) {
i_fatal("ANONYMOUS listed in mechanisms, "
@@ -485,5 +488,6 @@ void mech_deinit(void)
mech_unregister_module(&mech_cram_md5);
mech_unregister_module(&mech_digest_md5);
mech_unregister_module(&mech_ntlm);
+ mech_unregister_module(&mech_rpa);
mech_unregister_module(&mech_anonymous);
}
diff -urpNX /usr/share/dontdiff dovecot-1.0-test32.vanilla/src/aut...
2010 Apr 09
4
Patch: support URLAUTH, BURL, CATENATE
...6 +87,7 @@
void mech_init(void)
{
mech_register_module(&mech_plain);
+ mech_register_module(&mech_x_plain_submit); /* APPLE - urlauth */
mech_register_module(&mech_login);
mech_register_module(&mech_apop);
mech_register_module(&mech_cram_md5);
@@ -112,6 +114,7 @@
void mech_deinit(void)
{
mech_unregister_module(&mech_plain);
+ mech_unregister_module(&mech_x_plain_submit); /* APPLE - urlauth */
mech_unregister_module(&mech_login);
mech_unregister_module(&mech_apop);
mech_unregister_module(&mech_cram_md5);
diff -Nur dovecot-1.2.11/src/auth/passdb-b...