diff options
| author | Eric S. Raymond <esr@thyrsus.com> | 1996-09-28 13:31:48 +0000 | 
|---|---|---|
| committer | Eric S. Raymond <esr@thyrsus.com> | 1996-09-28 13:31:48 +0000 | 
| commit | 0bcddca0b9aebb44d6076cf12c93f316463dd310 (patch) | |
| tree | 91e773d44b6034d656cb8206b3647e0b42176ca8 /fetchmail.h | |
| parent | 13e2bb7fa077c96437eb9cbdfd75731af7174261 (diff) | |
| download | fetchmail-0bcddca0b9aebb44d6076cf12c93f316463dd310.tar.gz fetchmail-0bcddca0b9aebb44d6076cf12c93f316463dd310.tar.bz2 fetchmail-0bcddca0b9aebb44d6076cf12c93f316463dd310.zip | |
Give up on POP3 UIDs, they're a dead loss.
svn path=/trunk/; revision=173
Diffstat (limited to 'fetchmail.h')
| -rw-r--r-- | fetchmail.h | 19 | 
1 files changed, 0 insertions, 19 deletions
| diff --git a/fetchmail.h b/fetchmail.h index 12aaf11e..1f29c921 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -56,13 +56,6 @@  #define		SIZETICKER	1024	/* print 1 dot per this many bytes */ -struct idlist -{ -    int num; -    char *id; -    struct idlist *next; -}; -  struct hostrec  {      /* per-host data */ @@ -85,12 +78,8 @@ struct hostrec      int norewrite;      int skip; -    /* previous state of mailbox (initially from .fetchids) */ -    struct idlist *saved; -      /* internal use */      struct hostrec *next;	/* next host in chain */ -    struct idlist *mailbox;	/* current state of mailbox */  #if defined(HAVE_APOP_SUPPORT)      char digest [DIGESTLEN];  #endif @@ -141,14 +130,6 @@ int doPOP2 (struct hostrec *);  int doPOP3 (struct hostrec *);  int doIMAP (struct hostrec *); -void initialize_saved_lists(struct hostrec *, char *); -void save_uid(struct idlist **, int, char *); -void free_uid_list(struct idlist **); -int delete_uid(struct idlist **, char *); -int uid_in_list(struct idlist **, char *); -void update_uid_lists(struct hostrec *); -void write_saved_lists(struct hostrec *, char *); -  int parsecmdline (int, char **, struct hostrec *);  int setdefaults (struct hostrec *);  char *getnextserver (int argc, char **, int *); | 
