diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2003-02-28 20:58:32 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2003-02-28 20:58:32 +0000 |
commit | 34d54da64e3a09daa27709f3dbd12f7ffd934044 (patch) | |
tree | 629d7e4c73071bedbc6590e7a14b9553918579aa | |
parent | 494eab85f863146166a3e6359dfe0c2f34e33761 (diff) | |
download | fetchmail-34d54da64e3a09daa27709f3dbd12f7ffd934044.tar.gz fetchmail-34d54da64e3a09daa27709f3dbd12f7ffd934044.tar.bz2 fetchmail-34d54da64e3a09daa27709f3dbd12f7ffd934044.zip |
Support A_SSH authentication.
svn path=/trunk/; revision=3800
-rw-r--r-- | pop3.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -192,6 +192,10 @@ static int pop3_getauth(int sock, struct query *ctl, char *greeting) flag did_stls = FALSE; #endif /* SSL_ENABLE */ + if (ctl->server.authenticate == A_SSH) { + return PS_SUCCESS; + } + #ifdef SDPS_ENABLE /* * This needs to catch both demon.co.uk and demon.net. |