This plugin by default will assume that people who write an @ symbol are posting links.
So if a new member says "@Glow, I love your mod!", it will flag that as spam and put it in the moderation queue. Or if they say "I had a great time @ Disney last weekend.", etc. Anything with an @ is spam.
But wait, there's a fix!
In the plugin named "GlowHost - Spam-O-Matic: Replies Control" find this line:
PHP Code:
$link_count += substr_count($this->fetch_field('pagetext', 'post'), '@');
replace it with:
PHP Code:
if (preg_match('/\\b[A-Z0-9._%+-]+@[A-Z0-9.-]+\\.[A-Z]{2,4}\\b/i',$this->fetch_field('pagetext', 'post'),$m)) $link_count += count($m);