Page 1 of 1

is this setup correctly?

Posted: Fri Nov 03, 2006 3:23 am
by DragonRyder
this is the stuff i have added to your common spamfilter you provide, but i would apprecaite anyone correcting any mistakes i made. this way i can learn from my mistakes.

thanks in advance.

Code: Select all

spamfilter {
	regex "Welcome to the Sizzling PC Blowout Sale"; 
	target private;
	action gzline;
	reason "[autobanned]: You are infected with ONJOIN spam. Please reinstall your copy of mIRC, then email: [email protected] with this full quit message.";
};

spamfilter {
	regex "Hey welcome to PRIMO PCS"; 
	target private;
	action gzline;
	reason "[autobanned]: You are infected with ONJOIN spam. Please reinstall your copy of mIRC, then email: [email protected] with this full quit message.";
};

spamfilter {
	regex "Super-cheap\, brand-new\, top of the line"; 
	target private;
	action gzline;
	reason "[autobanned]: You are spamming our users with an ONJOIN ad/msg. Please reinstall your copy of mIRC, then email: [email protected] with this full quit message.";
};

spamfilter {
	regex "Jaw-Dropping Electronics"; 
	target private;
	action gzline;
	reason "[autobanned]: You are spamming our users with an ONJOIN ad/msg. Please reinstall your copy of mIRC, then email: [email protected] with this full quit message.";
};

spamfilter {
	regex "a bot or a virus\. Msg me if you are unsure"; 
	target private;
	action gzline;
	reason "[autobanned]: You are spamming our users with an ONJOIN ad/msg. Please reinstall your copy of mIRC, then email: [email protected] with this full quit message.";
};

spamfilter {
	regex "http://.+\..+/.8k\..+\.com"; 
	target private;
	action gzline;
	reason "[autobanned]: You are spamming our users with an ONJOIN ad/msg. Please reinstall your copy of mIRC, then email: [email protected] with this full quit message.";
};

spamfilter {
	regex "http://.+\..+/.4t\..+\.com";
	target private;
	action gzline;
	reason "[autobanned]: You are spamming our users with an ONJOIN ad/msg. Please reinstall your copy of mIRC, then email: [email protected] with this full quit message.";
};

spamfilter {
	regex "http://.+\..+/mIRC\.Patch\..+\.exe";
	target private;
	action gzline;
	reason "[autobanned]: You are spamming our users with an ONJOIN ad/msg. Please reinstall your copy of mIRC, then email: [email protected] with this full quit message.";
};
spamfilter {
	regex "irc\.global-dimension\.org"; 
	target private;
	action gzline;
	reason "[autobanned]: You are spamming our users with an ONJOIN ad/msg. Please reinstall your copy of mIRC, then email: [email protected] with this full quit message.";
};
spamfilter {
	regex "irc\.global-dimension\.org"; 
	target channel;
	action gzline;
	reason "[autobanned]: You are spamming our users with an ONJOIN ad/msg. Please reinstall your copy of mIRC, then email: [email protected] with this full quit message.";
};

spamfilter {
	regex "http://.+\..+/.itgo\..+\.com";
	target private;
	action gzline;
	reason "[autobanned]: You are spamming our users with an ONJOIN ad/msg. Please reinstall your copy of mIRC, then email: [email protected] with this full quit message.";
};

spamfilter {
	regex "http://.+\..+/.tvheaven\..+\.com";
	target private;
	action gzline;
	reason "[autobanned]: You are spamming our users with an ONJOIN ad/msg. Please reinstall your copy of mIRC, then email: [email protected] with this full quit message.";
};

spamfilter {
	regex "http://.+\..+/.s5\..+\.com"; 
	target private;
	action gzline;
	reason "[autobanned]: You are spamming our users with an ONJOIN ad/msg. Please reinstall your copy of mIRC, then email: [email protected] with this full quit message.";
};

Posted: Fri Nov 03, 2006 12:25 pm
by Jobe
As far as i can see they all appear to be correct. Although someone else might be able to spot an error i missed so wait to see someone else's opinion.

Posted: Fri Nov 03, 2006 12:29 pm
by DragonRyder
i apprecaite that Jobe1986.

one of the main concerns i had with it was the irc.global-dimension.org, wanted to make sure i had that absolutely correct.

apprecaite you taking the time to look it over.

and thanks to anyone else taking the time to look this over as well.

Posted: Sat Nov 04, 2006 6:15 pm
by Jason
I don't see anything obviously wrong. You don't need to do \, though. You can just use ','. '.' is the only standard punctuation that needs escaping.

Posted: Sat Nov 04, 2006 8:34 pm
by DragonRyder
ty Jason, now i can go and update my spamfilter.

appreciate the time everyone took to look it over.