X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=citadel%2Fmodules%2Fpop3%2Fserv_pop3.c;h=e8f975c4dc5999508a6db56ed31aea114f86a0c6;hp=74b3255c957c74563bb3674fc657268afee5798c;hb=0526fe52327b7b7c24eaf436f3437b524ec3b75b;hpb=3e130843962a7383c2446c181f6ae64077fa0f14 diff --git a/citadel/modules/pop3/serv_pop3.c b/citadel/modules/pop3/serv_pop3.c index 74b3255c9..e8f975c4d 100644 --- a/citadel/modules/pop3/serv_pop3.c +++ b/citadel/modules/pop3/serv_pop3.c @@ -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(); }