blob: 44d47b4ea1d48e7d12740a00a244963e65a97ff2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/*
* smtp.h -- prototypes for smtp handling code
*
* For license terms, see the file COPYING in this directory.
*/
#ifndef _POPSMTP_
#define _POPSMTP_
#define SMTPBUFSIZE 256
/* SMTP error values */
#define SM_OK 0
#define SM_ERROR 128
#define SM_UNRECOVERABLE 129
/* ESMTP extension option masks (not all options are listed here) */
#define ESMTP_8BITMIME 0x01
#define ESMTP_SIZE 0x02
#define ESMTP_ETRN 0x04
int SMTP_helo(FILE *sockfp,char *host);
int SMTP_ehlo(FILE *sockfp,char *host,int *opt);
int SMTP_from(FILE *sockfp,char *from,char *opts);
int SMTP_rcpt(FILE *sockfp,char *to);
int SMTP_data(FILE *sockfp);
int SMTP_eom(FILE *sockfp);
int SMTP_rset(FILE *sockfp);
int SMTP_quit(FILE *sockfp);
int SMTP_ok(FILE *sockfp);
extern char smtp_response[MSGBUFSIZE];
#endif
|