diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-01-22 22:48:24 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-01-22 22:48:24 +0000 |
commit | 267d78cd2d5eedbe4fc5ef40931d73c8927e6d8b (patch) | |
tree | b020c9065e9c0b2255f90ef4a69139a1eaa217c3 /smtp.h | |
parent | a0b445a903dd44b04ea114e1fb0ca48375017444 (diff) | |
download | fetchmail-267d78cd2d5eedbe4fc5ef40931d73c8927e6d8b.tar.gz fetchmail-267d78cd2d5eedbe4fc5ef40931d73c8927e6d8b.tar.bz2 fetchmail-267d78cd2d5eedbe4fc5ef40931d73c8927e6d8b.zip |
ESMTP SIZE option support.
svn path=/trunk/; revision=804
Diffstat (limited to 'smtp.h')
-rw-r--r-- | smtp.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -24,7 +24,10 @@ 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 |