Lines Matching refs:line
110 const char *line)
119 if (base64_decode(line, strlen(line), NULL, str) < 0) {
145 int pop3_proxy_parse_line(struct client *client, const char *line)
157 if (strncmp(line, "+OK", 3) != 0) {
160 str_sanitize(line, 160)));
165 strncmp(line+3, " [XCLIENT]", 10) == 0;
179 if (strncmp(line, "+OK", 3) != 0) {
182 str_sanitize(line, 160)));
198 if (strncmp(line, "+OK", 3) != 0) {
201 str_sanitize(line, 160)));
210 if (strncmp(line, "+OK", 3) != 0)
220 if (strncmp(line, "+ ", 2) == 0 &&
224 line+2) < 0) {
230 if (strncmp(line, "+OK", 3) != 0)
233 /* Login successful. Send this line to client. */
234 line = t_strconcat(line, "\r\n", NULL);
235 o_stream_nsend_str(client->output, line);
258 if (strncmp(line, "-ERR ", 5) != 0) {
262 client_send_raw(client, t_strconcat(line, "\r\n", NULL));
266 if (strncmp(line, "-ERR ", 5) == 0)
267 line += 5;
268 client_proxy_log_failure(client, line);