aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.h
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1998-10-28 23:04:24 +0000
committerEric S. Raymond <esr@thyrsus.com>1998-10-28 23:04:24 +0000
commit0a040ad1ca1faf244a03ef15070656e8293a4a5c (patch)
treeda2ef8022447646a17e17a227894d590ca8b4943 /fetchmail.h
parenta9cfa71d5b0ff5280b21a8c7eb62d8ef4ce1d85f (diff)
downloadfetchmail-0a040ad1ca1faf244a03ef15070656e8293a4a5c.tar.gz
fetchmail-0a040ad1ca1faf244a03ef15070656e8293a4a5c.tar.bz2
fetchmail-0a040ad1ca1faf244a03ef15070656e8293a4a5c.zip
Added bsmtp option.
svn path=/trunk/; revision=2144
Diffstat (limited to 'fetchmail.h')
-rw-r--r--fetchmail.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/fetchmail.h b/fetchmail.h
index 99a8dfbe..7558984d 100644
--- a/fetchmail.h
+++ b/fetchmail.h
@@ -64,12 +64,14 @@
#define PS_EXCLUDE 8 /* client-side exclusion error */
#define PS_LOCKBUSY 9 /* server responded lock busy */
#define PS_SMTP 10 /* SMTP error */
-#define PS_DNS 11 /* fatal DNS error */
-#define PS_UNDEFINED 12 /* something I hadn't thought of */
-#define PS_TRANSIENT 13 /* transient failure (internal use) */
-#define PS_REFUSED 14 /* mail refused (internal use) */
-#define PS_RETAINED 15 /* message retained (internal use) */
-#define PS_TRUNCATED 16 /* headers incomplete (internal use) */
+#define PS_DNS 11 /* fatal DNS error */
+#define PS_BSMTP 12 /* output batch could not be opened */
+/* leave space for more codes */
+#define PS_UNDEFINED 23 /* something I hadn't thought of */
+#define PS_TRANSIENT 24 /* transient failure (internal use) */
+#define PS_REFUSED 25 /* mail refused (internal use) */
+#define PS_RETAINED 26 /* message retained (internal use) */
+#define PS_TRUNCATED 27 /* headers incomplete (internal use) */
/* output noise level */
#define O_SILENT 0 /* mute, max squelch, etc. */
@@ -222,6 +224,7 @@ struct query
char *smtpaddress; /* address we want to force in the delivery messages */
struct idlist *antispam; /* list of listener's antispam response */
char *mda; /* local MDA to pass mail to */
+ char *bsmtp; /* BSMTP output file */
char *preconnect; /* pre-connection command to execute */
char *postconnect; /* post-connection command to execute */