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

This commit is contained in:
dmose%netscape.com 2002-11-06 07:00:52 +00:00
Родитель 60088a2cf1
Коммит 2c7110830d
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -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;
}