Quote:
Originally Posted by trackpads
Also, is there a way to disable the killfile for mlists only? The killfile is an AWEOME addition and has really, really helped me on my site.
|
Yes you can. Find this:
PHP Code:
else if ($killfileresult = checkkillfile($message))
and change it to to:
PHP Code:
else if ($killfileresult = checkkillfile($message) AND $grouptype == 'news')
This will work on newsgroups only.
To work on mailing lists only:
PHP Code:
else if ($killfileresult = checkkillfile($message) AND $grouptype != 'news')
I haven't tried it, but it should work.