diff options
| author | Matthias Andree <matthias.andree@gmx.de> | 2005-08-02 00:41:50 +0000 | 
|---|---|---|
| committer | Matthias Andree <matthias.andree@gmx.de> | 2005-08-02 00:41:50 +0000 | 
| commit | 2cabbf89f9f696a4786476a4eda7a59a1c16d486 (patch) | |
| tree | 83657a863dfb434ab4a07edcc90781db848b84e0 /pop3.c | |
| parent | aeec83fe86d05c61cc19ae8cb4cf07e959ab9ba1 (diff) | |
| download | fetchmail-2cabbf89f9f696a4786476a4eda7a59a1c16d486.tar.gz fetchmail-2cabbf89f9f696a4786476a4eda7a59a1c16d486.tar.bz2 fetchmail-2cabbf89f9f696a4786476a4eda7a59a1c16d486.zip | |
Remove port/service dualism and make everything a service.
svn path=/trunk/; revision=4219
Diffstat (limited to 'pop3.c')
| -rw-r--r-- | pop3.c | 9 | 
1 files changed, 0 insertions, 9 deletions
| @@ -449,11 +449,7 @@ static int pop3_getauth(int sock, struct query *ctl, char *greeting)  	 * rather than doing SASL.  	 */  	if (has_kerberos && -#ifdef INET6_ENABLE  	    ctl->server.service && (strcmp(ctl->server.service, KPOP_PORT)!=0) -#else /* INET6_ENABLE */ -	    ctl->server.port != KPOP_PORT -#endif /* INET6_ENABLE */  	    && (ctl->server.authenticate == A_KERBEROS_V4  	     || ctl->server.authenticate == A_KERBEROS_V5  	     || ctl->server.authenticate == A_ANY)) @@ -1243,13 +1239,8 @@ static int pop3_logout(int sock, struct query *ctl)  static const struct method pop3 =  {      "POP3",		/* Post Office Protocol v3 */ -#ifdef INET6_ENABLE      "pop3",		/* standard POP3 port */      "pop3s",		/* ssl POP3 port */ -#else /* INET6_ENABLE */ -    110,		/* standard POP3 port */ -    995,		/* ssl POP3 port */ -#endif /* INET6_ENABLE */      FALSE,		/* this is not a tagged protocol */      TRUE,		/* this uses a message delimiter */      pop3_ok,		/* parse command response */ | 
