The 'master user' account and password may now
[citadel.git] / citadel / modules / pop3 / serv_pop3.c
index 74b3255c957c74563bb3674fc657268afee5798c..e8f975c4dc5999508a6db56ed31aea114f86a0c6 100644 (file)
@@ -98,9 +98,14 @@ void pop3_greeting(void) {
  */
 void pop3s_greeting(void) {
        CtdlModuleStartCryptoMsgs(NULL, NULL, NULL);
+
+/* kill session if no crypto */
 #ifdef HAVE_OPENSSL
-       if (!CC->redirect_ssl) CC->kill_me = 1;         /* kill session if no crypto */
+       if (!CC->redirect_ssl) CC->kill_me = 1;
+#else
+       CC->kill_me = 1;
 #endif
+
        pop3_greeting();
 }