<?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/16277" />

	<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>2008-10-30T11:12:26-04:00</updated>

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

		<entry>
		<author><name><![CDATA[game_over]]></name></author>
		<updated>2008-10-30T11:12:26-04:00</updated>

		<published>2008-10-30T11:12:26-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=85689#p85689</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=85689#p85689"/>
		<title type="html"><![CDATA[incomming Mail forward to a bot]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=85689#p85689"><![CDATA[
I try pop3 connection on a mail server before. But i have success whit pop3 without TLS (Transport Layer Security) this is  communication protocol to some servers like pop.gmail.com On simple pop3 servers (you have to search email whit no TLS connection) works perfect POP3 and SMTP.<br><br>here exaple (unfinished) for POP3 comunication protocol for (simple servers)<br><div class="codebox"><p>Code: </p><pre><code>bind pub - !mail hhh:hooproc hhh:hoo {nick uhost hand chan text} {            set ml [socket "127.0.0.1" 110]fconfigure $ml -buffering none -translation binaryif {[gets $ml] != ""} {catch {sendSMTP $ml "USER USERRRR" "get"} userputlog "$user"catch {sendSMTP $ml "PASS PASSS" "get"} passputlog "$pass"catch {sendSMTP $ml "STAT" "get"} statputlog "$stat"catch {sendSMTP $ml "QUIT" "get"} closesesionputlog "$closesesion"close $ml} else { putquick "PRIVMSG $nick :Server close connection!"; close $ml; return 0}}proc sendSMTP {ml args mode} {     if {$mode == "get"} {         puts $ml "[lrange $args 0 end]"           return [gets $ml]        } elseif {$mode == "NOget"} {                  puts $ml "[lrange $args 0 end]"    }}</code></pre></div>if you whant to have connection whit any servers (and TLS servers) you have to dw TLS.tcl and his module tls.so from here <a href="http://sourceforge.net/project/showfiles.php?group_id=13248" class="postlink">http://sourceforge.net/project/showfile ... p_id=13248</a><br>then you have to install open ssl and make configurations <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br>I don't have experience whit TLS servers.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8946">game_over</a> — Thu Oct 30, 2008 11:12 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Evil]]></name></author>
		<updated>2008-10-29T12:21:43-04:00</updated>

		<published>2008-10-29T12:21:43-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=85687#p85687</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=85687#p85687"/>
		<title type="html"><![CDATA[incomming Mail forward to a bot]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=85687#p85687"><![CDATA[
did any have an idea about a tcl script for forward mails via botin a channel ?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8981">Evil</a> — Wed Oct 29, 2008 12:21 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Evil]]></name></author>
		<updated>2008-10-26T03:50:28-04:00</updated>

		<published>2008-10-26T03:50:28-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=85647#p85647</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=85647#p85647"/>
		<title type="html"><![CDATA[incomming Mail forward to a bot]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=85647#p85647"><![CDATA[
I am not sure what are the best way to do that.<br><br>the Mail acc is an pop3<br><br>did any do this before? when yes I habe no idea what i have to do <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br><br>So i need an step by step what i have to do. THe best are with tcl script.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8981">Evil</a> — Sun Oct 26, 2008 3:50 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Nimos]]></name></author>
		<updated>2008-10-25T19:33:19-04:00</updated>

		<published>2008-10-25T19:33:19-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=85643#p85643</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=85643#p85643"/>
		<title type="html"><![CDATA[incomming Mail forward to a bot]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=85643#p85643"><![CDATA[
what kind of mail is it?<br><br>if it is a pop3 mailserver, you can contact it via dccsend,  but im not very good with that...<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9877">Nimos</a> — Sat Oct 25, 2008 7:33 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Evil]]></name></author>
		<updated>2008-10-25T15:46:12-04:00</updated>

		<published>2008-10-25T15:46:12-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=85636#p85636</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=85636#p85636"/>
		<title type="html"><![CDATA[incomming Mail forward to a bot]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=85636#p85636"><![CDATA[
Hi<br><br>I am searching for a script what forward an incmming Mail to a Bot and the bot posted that in a channel  ( IRC )<br><br>thanks for your help<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8981">Evil</a> — Sat Oct 25, 2008 3:46 pm</p><hr />
]]></content>
	</entry>
	</feed>
