[dovecot-cvs] dovecot/src/pop3-login client-authenticate.c,1.6,1.7

cras at procontrol.fi cras at procontrol.fi
Wed May 28 01:46:46 EEST 2003


Update of /home/cvs/dovecot/src/pop3-login
In directory danu:/tmp/cvs-serv11530

Modified Files:
	client-authenticate.c 
Log Message:
STLS was missing from capability list.



Index: client-authenticate.c
===================================================================
RCS file: /home/cvs/dovecot/src/pop3-login/client-authenticate.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- client-authenticate.c	16 May 2003 17:05:42 -0000	1.6
+++ client-authenticate.c	27 May 2003 21:46:44 -0000	1.7
@@ -15,6 +15,7 @@
 #include "auth-common.h"
 #include "client.h"
 #include "client-authenticate.h"
+#include "ssl-proxy.h"
 
 static enum auth_mech auth_mechs = 0;
 static char *auth_mechs_capability = NULL;
@@ -45,6 +46,7 @@
 	}
 
 	client_send_line(client, t_strconcat("+OK\r\n" POP3_CAPABILITY_REPLY,
+					     ssl_initialized ? "STLS\r\n" : "",
 					     auth_mechs_capability,
 					     "\r\n.", NULL));
 	return TRUE;



More information about the dovecot-cvs mailing list