You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

lmtp.h 456B

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