]> Pileus Git - ~andy/fetchmail/blob - smtp.h
Sunil Shetye's fix for SSL configuration.
[~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 #include "config.h"
11
12 #define         SMTPBUFSIZE     256
13
14 /* SMTP error values */
15 #define         SM_OK              0
16 #define         SM_ERROR           128
17 #define         SM_UNRECOVERABLE   129
18
19 /* ESMTP extension option masks (not all options are listed here) */
20 #define ESMTP_8BITMIME  0x01
21 #define ESMTP_SIZE      0x02
22 #define ESMTP_ETRN      0x04
23 #define ESMTP_ATRN      0x08            /* used with ODMR, RFC 2645 */
24 #define ESMTP_AUTH      0x10
25
26 extern time_t last_smtp_ok;
27
28 void SMTP_setmode(char);
29 int SMTP_helo(int socket,const char *host);
30 int SMTP_ehlo(int socket,const char *host, char *name, char *passwd, int *opt);
31 int SMTP_from(int socket,const char *from,const char *opts);
32 int SMTP_rcpt(int socket,const char *to);
33 int SMTP_data(int socket);
34 int SMTP_eom(int socket);
35 int SMTP_rset(int socket);
36 int SMTP_quit(int socket);
37 int SMTP_ok(int socket);
38
39 extern char smtp_response[MSGBUFSIZE];
40
41 #endif