Lines Matching defs:response
179 string_t *response = t_str_new(256);
182 str_append(response, "* URLFETCH ");
183 imap_append_astring(response, reply->url);
189 str_printfa(response, " {%"PRIuUOFF_T"}", reply->size);
190 client_send_line(cmd->client, str_c(response));
198 str_append(response, " (");
201 str_append(response, "BODYPARTSTRUCTURE (");
202 str_append(response, reply->bodypartstruct);
203 str_append_c(response, ')');
209 str_append_c(response, ' ');
211 str_append(response, "BODY ");
213 str_append(response, "BINARY ");
215 str_append_c(response, '~');
217 str_printfa(response, "{%"PRIuUOFF_T"}", reply->size);
220 str_append_c(response, ')');
224 client_send_line(cmd->client, str_c(response));
272 string_t *response = t_str_new(128);
274 str_append(response, "* URLFETCH ");
275 imap_append_astring(response, reply->url);
276 str_append(response, " NIL");
277 client_send_line(client, str_c(response));