Lines Matching refs:isSpam
369 $this->isSpam = true;
425 $isSpam = $cached;
429 $isSpam = $this->mollomCheck->checkContent(
440 $this->setCache('mollom'.md5(serialize($data)),$isSpam);
444 $isSpam = array('spam'=> 'exception');
448 if ($isSpam['spam'] == 'spam') {
452 $this->isSpam = true;
508 $this->setCache('akismet'.md5(serialize($data)),$isSpam);
512 if ( 'true' == $isSpam ) {
516 $this->isSpam = true;
755 $this->isSpam = $this->isSpam || $isSfsSpam > 0;
786 function isSpam($data,$checkAll = false) { function in botBouncer
798 $isSpam = 0;
812 $isSpam++;
821 if ((!$isSpam || $checkAll)) {
827 $isSpam += $num;
833 if ((!$isSpam || $checkAll) && $this->akismetEnabled) {
838 $isSpam++;
845 if ((!$isSpam || $checkAll) && $this->mollomEnabled) {
850 $isSpam++;
863 if ($isSpam) {
880 $this->dbg('overall SpamScore '.sprintf('%d',$isSpam));
881 $this->isSpam = (bool) $isSpam > 0;
882 if ($this->isSpam) {
883 $this->addLogEntry('munin-graph.log','TOTAL LEVEL '.$isSpam);
886 return $isSpam;