diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-01-13 20:56:00 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-01-13 20:56:00 +0000 |
commit | 1a4bd3b6e4bd25b98a763decd9000b118483b2a8 (patch) | |
tree | 4c169a0b728db0bd0371c0794717712322d47974 /fetchmail.h | |
parent | c06e61c324f5a377b407f0e13993978e93d0412c (diff) | |
download | fetchmail-1a4bd3b6e4bd25b98a763decd9000b118483b2a8.tar.gz fetchmail-1a4bd3b6e4bd25b98a763decd9000b118483b2a8.tar.bz2 fetchmail-1a4bd3b6e4bd25b98a763decd9000b118483b2a8.zip |
Better restoration of server options.
svn path=/trunk/; revision=753
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fetchmail.h b/fetchmail.h index f848ab64..105275a0 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -63,9 +63,7 @@ struct query { /* per-host data */ struct idlist *servernames; /* servername first, then akas */ - struct idlist *localnames; /* including calling user's name */ struct idlist *localdomains; /* list of pass-through domains */ - int wildcard; /* should unmatched names be passed through */ int protocol; int port; int authenticate; @@ -74,6 +72,8 @@ struct query int skip; /* per-user data */ + struct idlist *localnames; /* including calling user's name */ + int wildcard; /* should unmatched names be passed through */ char remotename [USERNAMELEN+1]; char password [PASSWORDLEN+1]; char mailbox [FOLDERLEN+1]; |