diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2002-02-02 05:29:48 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2002-02-02 05:29:48 +0000 |
commit | 3024ae71682868cd23c636f7f38aff173ae5452b (patch) | |
tree | a15b48e4bd78e9180b244bb4d81992ba52b17119 | |
parent | 4f0728eb7de5b48de9a00715d2548fb55a8c911f (diff) | |
download | fetchmail-3024ae71682868cd23c636f7f38aff173ae5452b.tar.gz fetchmail-3024ae71682868cd23c636f7f38aff173ae5452b.tar.bz2 fetchmail-3024ae71682868cd23c636f7f38aff173ae5452b.zip |
GSSAPI and ODMR fixes.
svn path=/trunk/; revision=3575
-rw-r--r-- | Makefile.in | 2 | ||||
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | sink.c | 4 |
3 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index fe0cd9af..cdc91945 100644 --- a/Makefile.in +++ b/Makefile.in @@ -4,7 +4,7 @@ # So just uncomment all the lines marked QNX. PACKAGE = fetchmail -VERSION = 5.9.6 +VERSION = 5.9.7 # Ultrix 2.2 make doesn't expand the value of VPATH. srcdir = @srcdir@ @@ -10,6 +10,7 @@ * UIDL bug fix by Matthias Andree. * Use smtpaddress, if present, to set the return path on warning mail. * Tell parser to object when SSL keyboard is used with SSL not compiled. +* GSSAPI and ODMR fixes by Tom Hughes. fetchmail-5.9.6 (Fri Dec 14 04:03:50 EST 2001), 21247 lines: @@ -143,7 +143,11 @@ int smtp_open(struct query *ctl) /* return immediately for ODMR */ if (ctl->server.protocol == P_ODMR) + { + set_timeout(0); + phase = oldphase; return(ctl->smtp_socket); /* success */ + } /* are we doing SMTP or LMTP? */ SMTP_setmode(ctl->listener); |