]> Pileus Git - ~andy/fetchmail/blob - smtp.h
Expose the ESMTP name and password options.
[~andy/fetchmail] / smtp.h
1 /*
2  * smtp.h -- prototypes for smtp handling code
3  *
4  * For license terms, see the file COPYING in this directory.
5  */
6
7 #ifndef _POPSMTP_
8 #define _POPSMTP_
9
10 #define         SMTPBUFSIZE     256
11
12 /* SMTP error values */
13 #define         SM_OK              0
14 #define         SM_ERROR           128
15 #define         SM_UNRECOVERABLE   129
16
17 /* ESMTP extension option masks (not all options are listed here) */
18 #define ESMTP_8BITMIME  0x01
19 #define ESMTP_SIZE      0x02
20 #define ESMTP_ETRN      0x04
21 #define ESMTP_ATRN      0x08            /* used with ODMR, RFC 2645 */
22 #define ESMTP_AUTH      0x10
23
24 void SMTP_setmode(char);
25 int SMTP_helo(int socket,const char *host);
26 int SMTP_ehlo(int socket,const char *host, char *name, char *passwd, int *opt);
27 int SMTP_from(int socket,const char *from,const char *opts);
28 int SMTP_rcpt(int socket,const char *to);
29 int SMTP_data(int socket);
30 int SMTP_eom(int socket);
31 int SMTP_rset(int socket);
32 int SMTP_quit(int socket);
33 int SMTP_ok(int socket);
34
35 extern char smtp_response[MSGBUFSIZE];
36
37 #endif