Displaying 4 results from an estimated 4 matches for "mech_password".
2005 Mar 29
2
Multiple auth method problem
Hi,
I'm having issues getting the multiple authentication methods of dovecot
1.0-test65 to work correctly on NetBSD. I am combining a MySQL database
of virtual host accounts with the system password database of local
machine accounts. Both work correctly when enabled on their own, but
when enabled together only the one listed first in the "auth default"
section of dovecot.conf
2006 May 15
1
dovecot ldap auth bind and different directories
..._malloc(sizeof(static_tab) + (dc_count*(sizeof(char) +
sizeof(char *))));
memcpy(tab, static_tab, sizeof(static_tab));
tab[0].value = escape_func(auth_request->user);
@@ -886,6 +907,27 @@
tab[7].value = dec2str(auth_request->client_pid);
if (auth_request->mech_password != NULL)
tab[8].value = escape_func(auth_request->mech_password);
+
+ char *domain = p_strdup(auth_request->pool,
strchr(auth_request->user, '@'));
+ if (domain != NULL) {
+ int count = 0;
+ str = domain + strlen(domain);
+...
2010 May 10
1
authentification failure: double quotes in password
we use Passdb LDAP with authentication binds against an Active Directory
Server. The problem with one of our users seems to be the usage of
double quotes in his password, as the windows-login works:
/var/log/dovecot-info.log
auth(default): Info: ldap(testuser 77.22.xx.xxx): invalid credentials
(given password: xxxxx"xxxxxxx)
Which chars in passwords does the dovecot auth process not
2013 Dec 13
4
Accessing plain text password from memory
Is there a way to retrieve the client's password in plain text from memory ?
I don't store the password in plain text in my postgreSQL but I need it
when the client is connected to make crypto computation.
If I write a plugin to do the job, how could I retrieve the plain text
password from master ?
Thank you for your help,
Regards,
Stan.