/dovecot/src/log/ |
H A D | log-error-buffer.h | 10 const char *text; member in struct:log_error
|
H A D | log-connection.c | 113 if (strncmp(failure->text, "ip=", 3) == 0) 114 (void)net_addr2ip(failure->text + 3, &client->ip); 115 else if (strncmp(failure->text, "prefix=", 7) == 0) { 117 client->prefix = i_strdup(failure->text + 7); 125 const char *prefix, const char *text) 142 err.text = text; 149 i_log_type(ctx, "%s", text); 280 client_log_ctx(log, &failure_ctx, log_time, prefix, failure.text); 122 client_log_ctx(struct log_connection *log, const struct failure_context *ctx, const struct timeval *log_time, const char *prefix, const char *text) argument
|
/dovecot/src/imap/ |
H A D | mail-storage-callbacks.c | 9 const char *text, void *context) 19 str = t_strconcat("* OK ", text, "\r\n", NULL); 26 const char *text, void *context) 36 str = t_strconcat("* NO ", text, "\r\n", NULL); 8 notify_ok(struct mailbox *mailbox ATTR_UNUSED, const char *text, void *context) argument 25 notify_no(struct mailbox *mailbox ATTR_UNUSED, const char *text, void *context) argument
|
/dovecot/src/lib/ |
H A D | test-base32.c | 100 const char *text; member in struct:test_base32_decode_output 135 strcmp(output[i].text, str_c(str)) == 0 &&
|
H A D | test-base64.c | 34 const char *text; member in struct:test_base64_decode_output 71 strcmp(output[i].text, str_c(str)) == 0 &&
|
H A D | test-istream-base64-encoder.c | 40 static void encode_test(const char *text, unsigned int chars_per_line, argument 43 unsigned int i, text_len = strlen(text); 50 input_data = test_istream_create_data(text, text_len);
|
H A D | test-str-find.c | 10 const unsigned char *text = (const unsigned char *)str_find_text; local 17 /* divide text into every possible block combination and test that 26 if (str_find_more(ctx, text+pos, j-pos+1)) { 35 if (str_find_more(ctx, text+pos, j-pos)) 73 /* we'll get a search key for all substrings of text */
|
H A D | failures.h | 33 const char *text; member in struct:failure_line
|
/dovecot/src/lib-smtp/ |
H A D | smtp-reply.c | 10 const char *text) 14 text_lines[0] = text; 9 smtp_reply_init(struct smtp_reply *reply, unsigned int status, const char *text) argument
|
H A D | smtp-server-reply.c | 62 str_free(&reply->content->text); 139 reply->content->text = str_new(default_pool, 256); 158 smtp_reply_write(reply->content->text, from); 178 const char *text) 180 string_t *textbuf = reply->content->text; 184 if (*text == '\0') 192 p = strchr(text, '\n'); 195 str_append(textbuf, text); 196 text = NULL; 198 if (p > text 177 smtp_server_reply_add_text(struct smtp_server_reply *reply, const char *text) argument 305 const char *text; local 370 const char *text, *p; local 409 char *text; local [all...] |
H A D | smtp-params.c | 68 int smtp_param_parse(pool_t pool, const char *text, argument 76 if (text == NULL || *text == '\0') { 82 smtp_parser_init(&parser, pool, text);
|
H A D | smtp-reply-parser.c | 348 const char *text = str_c(parser->strbuf); local 351 smtp_reply_parse_enhanced_code(parser, &text); 356 text = p_strdup(parser->reply_pool, text); 357 array_append(&parser->state.reply_lines, &text, 1); 413 /* SP [ textstring ] CRLF ; allow missing text */ 477 "Encountered stray CR in reply text"); 480 "Encountered stray %s in reply text",
|
/dovecot/src/pop3-login/ |
H A D | client-authenticate.c | 53 const char *text) 60 client_send_reply(client, POP3_CMD_REPLY_TEMPFAIL, text); 71 client_send_reply(client, POP3_CMD_REPLY_AUTH_ERROR, text); 74 client_send_reply(client, POP3_CMD_REPLY_ERROR, text); 50 pop3_client_auth_result(struct client *client, enum client_auth_result result, const struct client_auth_reply *reply ATTR_UNUSED, const char *text) argument
|
H A D | pop3-proxy.c | 282 void pop3_proxy_error(struct client *client, const char *text) argument 284 client_send_reply(client, POP3_CMD_REPLY_ERROR, text);
|
H A D | client.c | 239 bool success, const char *text) 242 client_send_reply(client, POP3_CMD_REPLY_OK, text); 244 client_send_reply(client, POP3_CMD_REPLY_ERROR, text); 252 const char *text) 264 if (text[0] == '[') 278 str_append(line, text); 288 const char *text) 291 client_send_reply(client, POP3_CMD_REPLY_TEMPFAIL, text); 293 client_send_reply(client, POP3_CMD_REPLY_ERROR, text); 238 pop3_client_notify_starttls(struct client *client, bool success, const char *text) argument 251 client_send_reply(struct client *client, enum pop3_cmd_reply reply, const char *text) argument 286 pop3_client_notify_disconnect(struct client *client, enum client_disconnect_reason reason, const char *text) argument
|
/dovecot/src/doveadm/ |
H A D | client-connection.c | 103 const char *text) 110 if (text[0] == '\0') 113 str = t_strdup_printf("[%s %s]", conn->name, text); 102 client_connection_set_proctitle(struct client_connection *conn, const char *text) argument
|
/dovecot/src/imap-login/ |
H A D | client-authenticate.c | 38 const char *text) 71 str_c(referral), text); 74 str_c(referral), text); 79 client_send_reply(client, IMAP_CMD_REPLY_BAD, text); 83 if (text[0] == '[') 84 client_send_reply(client, IMAP_CMD_REPLY_NO, text); 87 "ALERT", text); 92 IMAP_RESP_CODE_AUTHZFAILED, text); 96 IMAP_RESP_CODE_UNAVAILABLE, text); 101 IMAP_RESP_CODE_PRIVACYREQUIRED, text); 35 imap_client_auth_result(struct client *client, enum client_auth_result result, const struct client_auth_reply *reply, const char *text) argument [all...] |
H A D | imap-proxy.c | 457 void imap_proxy_error(struct client *client, const char *text) argument 460 IMAP_RESP_CODE_UNAVAILABLE, text);
|
/dovecot/src/submission-login/ |
H A D | client-authenticate.c | 86 const char *text) 109 smtp_server_reply(cmd, 454, "4.7.0", "%s", text); 118 smtp_server_reply(cmd, 501, "5.5.2", "%s", text); 126 smtp_server_reply(cmd, 501, "5.5.2", "%s", text); 142 smtp_server_reply(cmd, 530, "5.7.0", "%s", text); 151 mechanism. This is primarily intended for use with clear text 155 smtp_server_reply(cmd, 523, "5.7.10", "%s", text); 165 smtp_server_reply(cmd, 504, "5.5.4", "%s", text); 179 smtp_server_reply(cmd, 525, "5.7.13", "%s", text); 219 smtp_server_reply(cmd, 535, "5.7.8", "%s", text); 83 submission_client_auth_result(struct client *client, enum client_auth_result result, const struct client_auth_reply *reply ATTR_UNUSED, const char *text) argument [all...] |
H A D | submission-proxy.c | 173 strip_enhanced_code(const char *text, const char **enh_code_r) argument 175 const char *p = text; 181 return text; 184 return text; 193 return text; 202 return text; 203 *enh_code_r = t_strdup_until(text, p); 225 const char *text = NULL, *enh_code = NULL; local 232 str_parse_uint(line, &status, &text) < 0 || 236 text 446 submission_proxy_error(struct client *client, const char *text) argument [all...] |
H A D | client.c | 110 const char *text) 121 smtp_server_connection_terminate(&conn, "4.4.2", text); 124 smtp_server_connection_terminate(&conn, "4.3.2", text); 128 smtp_server_connection_terminate(&conn, "4.0.0", text); 108 submission_client_notify_disconnect(struct client *_client, enum client_disconnect_reason reason, const char *text) argument
|
/dovecot/src/lib-otp/ |
H A D | otp-parse.c | 232 int otp_parse_dbentry(const char *text, struct otp_state *state) argument 237 ret = otp_read_new_params(text, &end, state);
|
/dovecot/src/plugins/fts/ |
H A D | fts-indexer.c | 80 const char *text; local 82 text = t_strdup_printf("Indexed %d%% of the mailbox, " 86 notify_ok(ctx->box, text,
|
/dovecot/src/login-common/ |
H A D | client-common-auth.c | 276 static void client_proxy_error(struct client *client, const char *text) argument 278 client->v.proxy_error(client, text); 473 const struct client_auth_reply *reply, const char *text) 476 client->v.auth_result(client, result, reply, text); 594 void client_auth_fail(struct client *client, const char *text) argument 596 sasl_server_auth_failed(client, text, NULL); 472 client_auth_result(struct client *client, enum client_auth_result result, const struct client_auth_reply *reply, const char *text) argument
|
/dovecot/src/plugins/old-stats/ |
H A D | stats-plugin.c | 237 stats_notify_ok(struct mailbox *box, const char *text, void *context) argument 246 sstorage->old_callbacks.notify_ok(box, text, context);
|