aboutsummaryrefslogtreecommitdiffstats
path: root/smtp.h
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-01-22 22:48:24 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-01-22 22:48:24 +0000
commit267d78cd2d5eedbe4fc5ef40931d73c8927e6d8b (patch)
treeb020c9065e9c0b2255f90ef4a69139a1eaa217c3 /smtp.h
parenta0b445a903dd44b04ea114e1fb0ca48375017444 (diff)
downloadfetchmail-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.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/smtp.h b/smtp.h
index ff3f7ac3..53b5c5c0 100644
--- a/smtp.h
+++ b/smtp.h
@@ -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