view src/pop3-login/client-authenticate.h @ 22325:e01bc3015b2f

lib-index: Check .log.2 rotation only when syncing Instead of also whenever appending transactions to .log file. This shouldn't change the behavior much, and it's needed for the following change to work correctly.
author Timo Sirainen <timo.sirainen@dovecot.fi>
date Tue, 11 Jul 2017 15:33:56 +0300
parents e456e1bce47f
children
line wrap: on
line source

#ifndef CLIENT_AUTHENTICATE_H
#define CLIENT_AUTHENTICATE_H

void pop3_client_auth_result(struct client *client,
			     enum client_auth_result result,
			     const struct client_auth_reply *reply,
			     const char *text);

bool cmd_capa(struct pop3_client *client, const char *args);
bool cmd_user(struct pop3_client *client, const char *args);
bool cmd_pass(struct pop3_client *client, const char *args);
bool cmd_auth(struct pop3_client *client, const char *args);
bool cmd_apop(struct pop3_client *client, const char *args);

#endif