is this setup correctly?

These are old archives. They are kept for historic purposes only.
Post Reply
DragonRyder
Posts: 51
Joined: Tue Feb 21, 2006 5:02 am
Location: USA, OH
Contact:

is this setup correctly?

Post 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.";
};
Jobe
Official supporter
Posts: 1180
Joined: Wed May 03, 2006 7:09 pm
Location: United Kingdom

Post 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.
DragonRyder
Posts: 51
Joined: Tue Feb 21, 2006 5:02 am
Location: USA, OH
Contact:

Post 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.
Jason
Posts: 570
Joined: Mon Jun 14, 2004 5:09 pm

Post 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.
Why the hell can't my signature be empty?
"Your message contains too few characters."
DragonRyder
Posts: 51
Joined: Tue Feb 21, 2006 5:02 am
Location: USA, OH
Contact:

Post by DragonRyder »

ty Jason, now i can go and update my spamfilter.

appreciate the time everyone took to look it over.
Post Reply