Displaying 3 results from an estimated 3 matches for "t_strarray_join".
2005 Mar 30
2
test65 killed by SIGSEV
...28291 (auth) killed with signal 11
To be precise, the problem occurs in the
"ldap_lookup_pass" function (auth/passdb-ldap.c)
just before loging the ldap request parameters
(auth_request_log_debug) and to actually perform the search
(db_ldap_search). The signal occurs on the call of
t_strarray_join(attr_names, ",")
What I'm observing is that the "attr_names" array of the
"passdb_ldap_conn" ldap connection doesn't seem to hold the right
attributes : while in the test62 version it holded 'uid' and
'userPassword', it holds now 'uid'...
2008 Feb 13
1
How to log uid and keywords of delivered mail?
...0) {
return ret;
}
if (dest_mail != NULL) {
const char *const *kw_list;
i_info("dest mail seq: %u, uid: %u", dest_mail->seq, dest_mail->uid);
kw_list = mail_get_keywords(dest_mail);
i_info("dest mail kw: %s", kw_list ? t_strarray_join(kw_list, ",") : "NONE");
}
return ret;
}
Some mail data, such as flags and headers, can be retrieved OK.
I'm using dovecot-1.0.10 and dovecot-sieve-1.0.2.
Any help in getting the uid and keywords by mail_log plugin will be
greatly appreciated.
Thanks,
Ron...
2012 Oct 02
2
[PATCH] Add SCRAM-SHA-1 password scheme
...uth_request,
+ request->server_first_message,
+ strlen(request->server_first_message));
break;
case PASSDB_RESULT_INTERNAL_FAILURE:
auth_request_internal_failure(auth_request);
@@ -333,8 +323,6 @@
request->client_final_message_without_proof =
p_strdup(request->pool, t_strarray_join(fields, ","));
- auth_request_lookup_credentials(&request->auth_request, "PLAIN",
- credentials_callback);
return TRUE;
}
@@ -345,22 +333,35 @@
struct scram_auth_request *request =
(struct scram_auth_request *)auth_request;
const char *error = NULL;
+ co...