view src/lmtp/commands.h @ 22656:1789bf2a1e01

director: Make sure HOST-RESET-USERS isn't used with max_moving_users=0 The reset command would just hang in that case. doveadm would never have sent this, so this is just an extra sanity check.
author Timo Sirainen <timo.sirainen@dovecot.fi>
date Sun, 05 Nov 2017 23:51:56 +0200
parents 297192cfbd37
children
line wrap: on
line source

#ifndef COMMANDS_H
#define COMMANDS_H

struct client;

int cmd_lhlo(struct client *client, const char *args);
int cmd_starttls(struct client *client);
int cmd_mail(struct client *client, const char *args);
int cmd_rcpt(struct client *client, const char *args);
int cmd_quit(struct client *client, const char *args);
int cmd_vrfy(struct client *client, const char *args);
int cmd_rset(struct client *client, const char *args);
int cmd_noop(struct client *client, const char *args);
int cmd_data(struct client *client, const char *args);
int cmd_xclient(struct client *client, const char *args);

#endif