blob: d7c13c497296104311ae67c24bb0332877c1578f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef RSPAMD_LMTP_H
#define RSPAMD_LMTP_H
#include "config.h"
#include "main.h"
#define LMTP_GREETING 220
#define LMTP_QUIT 221
#define LMTP_OK 250
#define LMTP_DATA 354
#define LMTP_ERROR_PROCESS 500
#define LMTP_FAILURE 530
#define LMTP_AUTH_ERROR 503
#define LMTP_BAD_CMD 503
#define LMTP_NO_RCPT 554
#define LMTP_TEMP_FAIL 421
void start_lmtp_worker (struct rspamd_worker *worker);
#endif
|