diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-12-07 20:37:55 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-12-07 20:37:55 +0000 |
commit | e0c6254d3e0ddd6d9eec93c796f25aa59c0c7652 (patch) | |
tree | f83822e5a909b0004cf9501858d40834299dfd95 /fetchmail.h | |
parent | 266a5f4a342a15bf30053ba7b7b0f53fb824c3c2 (diff) | |
download | fetchmail-e0c6254d3e0ddd6d9eec93c796f25aa59c0c7652.tar.gz fetchmail-e0c6254d3e0ddd6d9eec93c796f25aa59c0c7652.tar.bz2 fetchmail-e0c6254d3e0ddd6d9eec93c796f25aa59c0c7652.zip |
Minor cleanup.
svn path=/trunk/; revision=2267
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fetchmail.h b/fetchmail.h index f3522c51..b7a048b6 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -370,9 +370,9 @@ int gen_transact (); extern int phase; /* mark values for name lists */ -#define XMIT_ACCEPT 1 -#define XMIT_REJECT 2 -#define XMIT_ANTISPAM 3 +#define XMIT_ACCEPT 1 /* accepted; matches local domain or name */ +#define XMIT_REJECT 2 /* rejected; no match */ +#define XMIT_RCPTBAD 3 /* SMTP listener rejected the name */ /* sink.c: forwarding */ int stuffline(struct query *, char *); |