diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-02-17 22:06:17 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-02-17 22:06:17 +0000 |
commit | 73b592a0450107cfb62ec95e910bd064c20d186d (patch) | |
tree | 1e59544ae5f00d228e8a715b3041b8eb099c1c52 | |
parent | 828b8f6279f5bdd0eb9d53de892209e1fd679cde (diff) | |
download | fetchmail-73b592a0450107cfb62ec95e910bd064c20d186d.tar.gz fetchmail-73b592a0450107cfb62ec95e910bd064c20d186d.tar.bz2 fetchmail-73b592a0450107cfb62ec95e910bd064c20d186d.zip |
Cleanup.
svn path=/trunk/; revision=1643
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | fetchmail.h | 8 | ||||
-rw-r--r-- | uid.c | 6 |
3 files changed, 7 insertions, 8 deletions
@@ -9,6 +9,7 @@ * Read from /etc/fetchmailrc before ~/.fetchmailrc? * Do is_host_alias checks by comparing IP addresses rather than names? * Make the antispam response configurable. +* Handle multi-homed hosts correctly. Other TO-DO items: diff --git a/fetchmail.h b/fetchmail.h index 2b42de37..50ce5640 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -8,10 +8,10 @@ #define P_POP3 3 #define P_IMAP 4 #define P_IMAP_K4 5 -#define P_APOP 6 -#define P_RPOP 7 -#define P_ETRN 8 -#define P_IMAP_GSS 9 +#define P_IMAP_GSS 6 +#define P_APOP 7 +#define P_RPOP 8 +#define P_ETRN 9 #if INET6 #define KPOP_PORT "kpop" @@ -42,11 +42,9 @@ * not respond to the request for a UID listing. * * Each time a message is fetched, we can check its UID against the - * `oldsaved' list to see if it is old. If not, it should be downloaded - * (and possibly deleted). It should be downloaded anyway if --all - * is on. It should not be deleted if --keep is on. + * `oldsaved' list to see if it is old. * - * Each time a message is deleted, we mark its id UID_DELETED from the + * Each time a message is deleted, we mark its id UID_DELETED in the * `newsaved' member. When we want to assert that an expunge has been * done on the server, we call expunge_uid() to register that all * deleted messages are gone by marking them UID_EXPUNGED. |