* honor the openssl configure define, so we don't die if we don't have it.
[citadel.git] / citadel / modules / pop3 / serv_pop3.c
index fadb9f50cc15b0096111c3f147f096b7905d3aff..74b3255c957c74563bb3674fc657268afee5798c 100644 (file)
@@ -98,7 +98,9 @@ void pop3_greeting(void) {
  */
 void pop3s_greeting(void) {
        CtdlModuleStartCryptoMsgs(NULL, NULL, NULL);
+#ifdef HAVE_OPENSSL
        if (!CC->redirect_ssl) CC->kill_me = 1;         /* kill session if no crypto */
+#endif
        pop3_greeting();
 }