Lines Matching defs:pop3_client
24 static bool cmd_stls(struct pop3_client *client)
30 static bool cmd_quit(struct pop3_client *client)
37 static bool cmd_xclient(struct pop3_client *client, const char *args)
88 static bool client_command_execute(struct pop3_client *client, const char *cmd,
145 struct pop3_client *pop3_client = (struct pop3_client *)client;
155 if (client_command_execute(pop3_client, line,
170 struct pop3_client *pop3_client;
172 pop3_client = p_new(pool, struct pop3_client, 1);
173 return &pop3_client->common;
183 struct pop3_client *pop3_client = (struct pop3_client *)client;
185 i_free_and_null(pop3_client->last_user);
186 i_free_and_null(pop3_client->apop_challenge);
189 static char *get_apop_challenge(struct pop3_client *client)
217 struct pop3_client *pop3_client = (struct pop3_client *)client;
229 pop3_client->apop_challenge = get_apop_challenge(pop3_client);
230 if (pop3_client->apop_challenge != NULL)
231 str_printfa(str, " %s", pop3_client->apop_challenge);