blob: 3cd48cebe7f1b4797f9d8128a1cde0f4c06e47ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef POP3_CAPABILITY_H
#define POP3_CAPABILITY_H
#define POP3_CAPABILITY_REPLY \
"CAPA\r\n" \
"TOP\r\n" \
"UIDL\r\n" \
"RESP-CODES\r\n" \
"PIPELINING\r\n" \
"AUTH-RESP-CODE\r\n"
/* + SASL */
#endif
|