From: David G. <da...@dg...> - 2005-03-19 18:57:32
|
Matthias Andree wrote: >The code is not up-to-date, and I don't see this problem when using my >version against a server that does not support CAPA. > >May I ask you to try >http://home.pages.de/~mandree/tmp/fetchmail-6.2.5.991.tar.bz2 >first and report here if your problem persists in 6.2.5.991? > > it does... >That is newer code (2005-03-01) in spite of the lower version number >(the "6.2.6" snapshot is from 2004-11-10). > > I didn't configure --with-ssl :) I think this is the correct fix. --- fetchmail-6.2.5.991-dg/pop3.c Sat Mar 19 11:35:59 2005 +++ fetchmail-6.2.5.991/pop3.c Sun Feb 27 20:19:35 2005 @@ -361,10 +361,7 @@ static int pop3_getauth(int sock, struct * These authentication methods are blessed by RFC1734, * describing the POP3 AUTHentication command. */ - if ( -#ifdef SSL_ENABLE - (ctl->use_ssl != FLAG_FALSE) || -#endif /* SSL_ENABLE (*/ + if ((ctl->use_ssl != FLAG_FALSE) || (ctl->server.authenticate == A_ANY) || (ctl->server.authenticate == A_GSSAPI) || (ctl->server.authenticate == A_KERBEROS_V4) || |