<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
	<link rel="self" type="application/atom+xml" href="https://forum.eggheads.org/app.php/feed/topic/2913" />

	<title>egghelp/eggheads community</title>
	<subtitle>Discussion of eggdrop bots, shell accounts and tcl scripts.</subtitle>
	<link href="https://forum.eggheads.org/index.php" />
	<updated>2002-10-30T15:19:07-04:00</updated>

	<author><name><![CDATA[egghelp/eggheads community]]></name></author>
	<id>https://forum.eggheads.org/app.php/feed/topic/2913</id>

		<entry>
		<author><name><![CDATA[Illidan]]></name></author>
		<updated>2002-10-30T15:19:07-04:00</updated>

		<published>2002-10-30T15:19:07-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=12609#p12609</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=12609#p12609"/>
		<title type="html"><![CDATA[No!Spam 1.7.2 leaf help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=12609#p12609"><![CDATA[
ppslim,<br><br>I will try it and do some testing tomorrow when I wake up. Will keep you updated soon.<br><br>Thanks<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2097">Illidan</a> — Wed Oct 30, 2002 3:19 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2002-10-30T14:45:47-04:00</updated>

		<published>2002-10-30T14:45:47-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=12608#p12608</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=12608#p12608"/>
		<title type="html"><![CDATA[No!Spam 1.7.2 leaf help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=12608#p12608"><![CDATA[
It seems, a lot of my looking, had been on an outdated copy, but how it get where it did, I don't know.<br><br>Try the following change<br><br>edit no.spam.tcl and locate line number 609<br><br>change the end of this line from<div class="codebox"><p>Code: </p><pre><code>"$rsn" "$data"]"}</code></pre></div>to<div class="codebox"><p>Code: </p><pre><code>"$rsn" [list $data]]"}</code></pre></div>I hadn't got a clue if this will help, because I plain don't have the time to try and fully debug the situation.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Wed Oct 30, 2002 2:45 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Illidan]]></name></author>
		<updated>2002-10-30T12:09:04-04:00</updated>

		<published>2002-10-30T12:09:04-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=12601#p12601</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=12601#p12601"/>
		<title type="html"><![CDATA[No!Spam 1.7.2 leaf help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=12601#p12601"><![CDATA[
ppslim,<br><br>In no.spam.leaf.tcl there's no line that state [lindex $rest 1] . Are you referring to this instead?<br><br>hs_handle $from [lindex $arg 0] [lindex $arg 1] [lindex $arg 2] [lindex $arg 3] [lindex $arg 4] [lindex $arg 5] [lindex $arg 6] [lindex $arg 7] [lindex $arg 8] [lindex $arg 9] [lindex $arg 10] [lindex $arg 11]<br><br>change it to<br><br>hs_handle $from [lindex $arg 0] <strong class="text-strong">[join [lrange $arg 1 end] :]</strong> [lindex $arg 2] [lindex $arg 3] [lindex $arg 4] [lindex $arg 5] [lindex $arg 6] [lindex $arg 7] [lindex $arg 8] [lindex $arg 9] [lindex $arg 10] [lindex $arg 11]<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2097">Illidan</a> — Wed Oct 30, 2002 12:09 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2002-10-30T10:13:41-04:00</updated>

		<published>2002-10-30T10:13:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=12598#p12598</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=12598#p12598"/>
		<title type="html"><![CDATA[No!Spam 1.7.2 leaf help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=12598#p12598"><![CDATA[
I have located the problem, though, I would have to do a lot of test work, the following should fix it.<br><br>It is all to do, with the ability to send multiple word arguments from one script to another. This is done using lists. However, when obtaining the last arguement of the passed text, it will not obtain it correctly, if it contains a : character, the way filenames can do.<br><br>This is not normaly an issue, as the script will simply break in what is logged, by displaying only the drive letter (IE c). But in windows, directories are navigated using the \ character, which is special in *nix (an escape character). This seems to break the script.<br><br>In no.spam.leaf.tcl, you should locate line number 79 (starting hs_handler)<br><br>Using a editor, that will save unix files correctly, and does not do line wraps (vi in linux), change the end of the line as follows.<br><div class="codebox"><p>Code: </p><pre><code>[lindex $rest 1]</code></pre></div>Should become<div class="codebox"><p>Code: </p><pre><code>[join [lrange $rest 1 end] :]</code></pre></div>After looking at the code, I can see it needs a major re-write, as it doesn't pass things as it should (though I could be wrong, I aint touched it for 9 months).<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Wed Oct 30, 2002 10:13 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Illidan]]></name></author>
		<updated>2002-10-30T09:20:51-04:00</updated>

		<published>2002-10-30T09:20:51-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=12594#p12594</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=12594#p12594"/>
		<title type="html"><![CDATA[No!Spam 1.7.2 leaf help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=12594#p12594"><![CDATA[
ppslim,<br><br>I have confirmed that the problem is not the nickname problem. I'll be trying the filename instead<br><br>Cause this error was c:\netsol.scr and previously the bot was able to ban without an error when filename was like c:netsol.scr or netsol.scr and when it is like c:\netsol.scr there's an error.<br><br>An example is like<br>_Squa||_!~<a href="mailto:dennis17@uu.net">dennis17@uu.net</a> was sending: c:windowsfable.pif to people in: #test<br><br>or <br><br>lancer-82!<a href="mailto:ber@uu.net">ber@uu.net</a> was sending: a-picture-of-me.jpg.vbs to people in: #test<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2097">Illidan</a> — Wed Oct 30, 2002 9:20 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2002-10-30T08:17:33-04:00</updated>

		<published>2002-10-30T08:17:33-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=12592#p12592</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=12592#p12592"/>
		<title type="html"><![CDATA[No!Spam 1.7.2 leaf help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=12592#p12592"><![CDATA[
Possibly.<br><br>Just to clarify.<br><br>Everything worked fine when the nick didn't have a| in (in your examples)?<br><br>This does allways mean this is the problem. If the filenames where the same, but the nick different, I would say yes. But due to the large differance in the filenames, I can't tell.<br><br>I will be using these as tests though.<br><br>I was due to start testing some issues last week, but this has been set back, due to a glibc bug, causing mayhem on my linux machine. I would roll back, but I didn't enable this option until after the nasty updates. I would re-install, but then I lose a lot of work (2.5GB, which can't be uploaded easily) which I can't backup for at least 2 months.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Wed Oct 30, 2002 8:17 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Illidan]]></name></author>
		<updated>2002-10-30T07:57:34-04:00</updated>

		<published>2002-10-30T07:57:34-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=12591#p12591</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=12591#p12591"/>
		<title type="html"><![CDATA[No!Spam 1.7.2 leaf help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=12591#p12591"><![CDATA[
ppslim,<br><br>This error occurs when my bot detected this<br><br>[18:24] Refused DCC SEND: D3v1L^BO|!<a href="mailto:DeViLs@uu.net">DeViLs@uu.net</a><br>[19:30] CTCP SEND: c:\netol.scr 3399242123 2716 49816 from D3v1L^BO| (<a href="mailto:DeViLs@uu.net">DeViLs@uu.net</a>)<br><br>and send a msg to my leaf bot to have him ban it will display <br>Tcl error [hs_handler]: unmatched open brace in list<br><br>but when my bot detected the <br><br>-^_^DaNieL (~<a href="mailto:mi_too@uu.net">mi_too@uu.net</a>)- DCC Send LOVE-LETTER-FOR-YOU.HTM <br>Refused DCC SEND: ^_^DaNieL!~<a href="mailto:mi_too@uu.net">mi_too@uu.net</a><br>CTCP SEND: LOVE-LETTER-FOR-YOU.HTM 3413975787 1560 16122 from ^_^DaNieL (~<a href="mailto:mi_too@uu.net">mi_too@uu.net</a>)<br><br> [no!spam(Uruk-Hai)] 10/30/02 07:50:20 PM: ^_^DaNieL!~<a href="mailto:mi_too@uu.net">mi_too@uu.net</a> was sending: love-letter-for-you.htm to people in: #test<br><br>-------------<br><br>Is it because of the "|" in the nickname which causing the problem?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2097">Illidan</a> — Wed Oct 30, 2002 7:57 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2002-10-30T07:20:52-04:00</updated>

		<published>2002-10-30T07:20:52-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=12590#p12590</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=12590#p12590"/>
		<title type="html"><![CDATA[No!Spam 1.7.2 leaf help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=12590#p12590"><![CDATA[
THis occurs when an incorect verion of no.spam.tcl and no.spam.leaf.tcl are being used.<br><br>IE, the script versions are mixed, or old. In you case, it could be mixed.<br><br>The first thing you should do, is issue a ".restart". This will clear all the loaded scripts in memory, this, make sure any issues are removed from past installs (in theory).<br><br>The only time anything is called int he leaf script, is when a spam message is seen. This makes locating what causes thsi a little simpler.<br><br>First, when you see this message in the partyline of the leaf, some form of spam was sent to a channel, this we know. You should make an exact note of the channel, type of spam attack, the full text that caused it and the mask used to detect the spam (EG *join*#*).<br><br>Let this happen at least twice, and reply with the information above, I will then look into helping some more.<br><br>Please do help by doing the above, as I hope to release a new version soon, and I would rather be rid of this bug<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Wed Oct 30, 2002 7:20 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Illidan]]></name></author>
		<updated>2002-10-30T06:52:59-04:00</updated>

		<published>2002-10-30T06:52:59-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=12588#p12588</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=12588#p12588"/>
		<title type="html"><![CDATA[No!Spam 1.7.2 leaf help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=12588#p12588"><![CDATA[
Hi,<br><br>Recently I notice that my bot keep displaying this <br><br>TCL error [hs_handler]: unmatched open brace in list <br><br>There's absolutely nothing wrong with the leaf.tcl file but I just don't understand why it keep displaying it in my dcc with the bot.<br><br>Thanks<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2097">Illidan</a> — Wed Oct 30, 2002 6:52 am</p><hr />
]]></content>
	</entry>
	</feed>
