From 2c7110830d2e10fb3fc9599e8947e2edb4d509e5 Mon Sep 17 00:00:00 2001 From: "dmose%netscape.com" Date: Wed, 6 Nov 2002 07:00:52 +0000 Subject: [PATCH] Temporarily disable front-end code for turning on spam filtering for news, since more work still needs to be done; part of ongoing spam front end work (bug 169638); r/sr=sspitzer@netscape.com --- mailnews/news/src/nsNntpService.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mailnews/news/src/nsNntpService.cpp b/mailnews/news/src/nsNntpService.cpp index 08791f07a8d5..449cdd484a48 100644 --- a/mailnews/news/src/nsNntpService.cpp +++ b/mailnews/news/src/nsNntpService.cpp @@ -1454,7 +1454,9 @@ NS_IMETHODIMP nsNntpService::GetCanGetIncomingMessages(PRBool *aCanGetIncomingMessages) { NS_ENSURE_ARG_POINTER(aCanGetIncomingMessages); - *aCanGetIncomingMessages = PR_TRUE; + // temporarily returns PR_FALSE because we don't yet support spam + // filtering in news. this will change. + *aCanGetIncomingMessages = PR_FALSE; return NS_OK; }