aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.h
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-01-08 22:24:23 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-01-08 22:24:23 +0000
commit961c949249137dceec492ad84edc2a4d2ad12796 (patch)
tree5d68d6da50220270105c763a494f7f229a8794d9 /fetchmail.h
parenta44cd4f05642454a89c60e8dc6a87bd04da2a9d2 (diff)
downloadfetchmail-961c949249137dceec492ad84edc2a4d2ad12796.tar.gz
fetchmail-961c949249137dceec492ad84edc2a4d2ad12796.tar.bz2
fetchmail-961c949249137dceec492ad84edc2a4d2ad12796.zip
Added the preconnect feature.
svn path=/trunk/; revision=719
Diffstat (limited to 'fetchmail.h')
-rw-r--r--fetchmail.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/fetchmail.h b/fetchmail.h
index 7b194c24..bced71ba 100644
--- a/fetchmail.h
+++ b/fetchmail.h
@@ -25,6 +25,7 @@
#define DIGESTLEN 33 /* length of MD5 digest */
#define MDALEN 256 /* length of delivery agent command */
#define IDLEN 128 /* length of UIDL message ID */
+#define CMDLEN 128 /* length of initialization command */
/* exit code values */
#define PS_SUCCESS 0 /* successful receipt of messages */
@@ -74,9 +75,10 @@ struct query
/* per-user data */
char remotename [USERNAMELEN+1];
char password [PASSWORDLEN+1];
- char mailbox [FOLDERLEN];
+ char mailbox [FOLDERLEN+1];
char smtphost[HOSTLEN+1];
char mda [MDALEN+1];
+ char preconnect [CMDLEN+1];
/* per-user control flags */
int keep;