diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-09-25 20:02:41 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-09-25 20:02:41 +0000 |
commit | 95f82bd08d67a5ca66949846481d11159e38827b (patch) | |
tree | 9287c91ffe7aff90c67be297613b07eeeaafb700 /fetchmail.h | |
parent | 44d69d470268d3fe86342c74478b9b58258fdc03 (diff) | |
download | fetchmail-95f82bd08d67a5ca66949846481d11159e38827b.tar.gz fetchmail-95f82bd08d67a5ca66949846481d11159e38827b.tar.bz2 fetchmail-95f82bd08d67a5ca66949846481d11159e38827b.zip |
Explicit option is documented and set up in the data structure,
but doesn't work yet.
svn path=/trunk/; revision=145
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fetchmail.h b/fetchmail.h index 44dc2917..a50e4dd0 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -70,6 +70,7 @@ struct hostrec int fetchall; int flush; int norewrite; + int explicit; int port; /* state used for tracking UIDL ids */ @@ -79,8 +80,8 @@ struct hostrec int output; struct hostrec *next; -#if defined(HAVE_APOP_SUPPORT) /* internal use only */ +#if defined(HAVE_APOP_SUPPORT) char digest [DIGESTLEN]; #endif }; |