Lines Matching defs:reply
122 void imap_id_log_reply_append(string_t *reply, const char *key,
125 if (str_len(reply) > 0)
126 str_append(reply, ", ");
127 str_append(reply, str_sanitize(key, IMAP_ID_KEY_MAX_LEN));
128 str_append_c(reply, '=');
129 str_append(reply, value == NULL ? "NIL" : str_sanitize(value, 80));
136 string_t *reply;
145 reply = t_str_new(256);
165 imap_id_log_reply_append(reply, key, value);
169 return str_len(reply) == 0 ? NULL : str_c(reply);