<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest posts for the topic "Free LinkPage"]]></title>
		<link>https://proxy2.de/forum/posts/list/4.php</link>
		<description><![CDATA[Latest messages posted in the topic "Free LinkPage"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>Free LinkPage</title>
				<description><![CDATA[ Hallo,<br /> hat jemand eine Ahnung, was ich bei dem Script ändern muss, um bei neuen Einträgen benachrichtigt zu werden. Vielen Dank]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4244/14186.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4244/14186.php</link>
				<pubDate><![CDATA[Wed, 9 Feb 2005 13:24:26]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title>Re: Free LinkPage</title>
				<description><![CDATA[ [quote="Peter"]Hallo,<br /> hat jemand eine Ahnung, was ich bei dem Script ändern muss, um bei neuen Einträgen benachrichtigt zu werden. Vielen Dank[/quote]<br /> <br /> Hi Peter - <br /> <br /> I don't speak German - I used freetranslation.com to understand your message. I added some lines to the perl script to tell it to send me a notice - are you interested in that? Post a response and I can post the information here. <br /> <br /> Thank you<br /> ----------------------------------------<br /> Hallo Peter -<br /> <br /> Ich spreche Deutsch nicht - ich habe freetranslation benutzt. com, Ihre Nachricht zu verstehen. Habe ich der perl Schriftart einige Linien hinzugefügt zu erzählen, dass es mir eine Notiz schickt - interessieren sich Sie für das? Stellen Sie eine Erwiderung auf und ich kann die Informationen hier aufstellen. <br /> <br /> Vielen Dank.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4244/14196.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4244/14196.php</link>
				<pubDate><![CDATA[Wed, 9 Feb 2005 20:28:02]]> GMT</pubDate>
				<author><![CDATA[ ET]]></author>
			</item>
			<item>
				<title>Free LinkPage</title>
				<description><![CDATA[ Hallo ET<br /> <br /> yes, that is what I`m am looking for. Please publish your code.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4244/14217.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4244/14217.php</link>
				<pubDate><![CDATA[Thu, 10 Feb 2005 11:12:31]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title>Re: Free LinkPage</title>
				<description><![CDATA[ [quote="Peter"]Hallo ET<br /> <br /> yes, that is what I`m am looking for. Please publish your code.[/quote]<br /> <br /> I inserted send_mail variables between the "arrow.gif" variable and above "end of setup" as shown in the code below:<br /> [code]# image<br /> $imageurl = &quot;arrow.gif&quot;;<br /> <br /> ### LOCATION OF SENDMAIL &#40;adjust as needed&#41;<br /> $sendmail_loc = &quot;/usr/sbin/sendmail -t&quot;;<br /> <br /> ### DEFAULT SENDER NAME FROM VAR = name<br /> $sender_name = &quot;Webmaster&quot;;<br /> <br /> ### DEFAULT FROM EMAIL SENT FROM VAR = from&#58;<br /> ### Must have \ before @ -  i.e.me\@yahoo.com<br /> $from_email = &quot;noreply\@yoursite.com&quot;;<br /> <br /> ### DEFAULT EMAIL SUBJECT VAR = subject&#58;<br /> $mail_subject = &quot;FFA Link Added&quot;;<br /> <br /> ### TO PERSON RECEIVING EMAIL NOTICE VAR = to&#58;<br /> ##This to_email cannot be the same at the from_email address<br /> #$to_email = &quot;jane\@192.168.9.7&quot;; <br /> $to_email = &quot;webmaster\@yoursite.com&quot;;<br /> <br /> ## MESSAGE INSIDE EMAIL = message&#58;<br /> $message = &quot;Someone has added their site to your FFA Links Pages&quot;;<br /> ### End of Sendmail Info<br /> <br /> # End setup<br /> ############################################[/code]<br /> <br /> Then I added inside the subroutine "success" and immediately after it the following information as noted: <br /> [code]<br /> sub success &#123;<br /> print &quot;Content-type&#58; text/html\n\n&quot;;<br /> print &lt;&lt;SuccessHTML ;<br /> ... the output remains the same ...<br /> SuccessHTML<br /> ## I added this<br /> &amp;send_email&#40;$sendmail_loc, $sender_name, $from_email, $to_email, $mail_subject, $message&#41;;<br /> ## in here<br /> exit&#40;0&#41;;<br /> &#125;<br /> <br /> ## Added the subroutine send_mail for notification setup<br /> sub send_email &#123;<br /> my&#40;$sendmail_loc, $sender_name, $from_email, $to_email, $mail_subject, $message&#41; = @_;<br /> open &#40;SENDMAIL, &quot;| $sendmail_loc&quot;&#41;;<br /> print SENDMAIL &lt;&lt;End_of_Mail;<br /> To&#58; $to_email<br /> From&#58; &quot;$sender_name&quot; &lt;$from_email&gt;<br /> Reply-To&#58; $from_email<br /> Subject&#58; $mail_subject<br /> $message<br /> End_of_Mail<br /> close SENDMAIL;<br /> &#125;<br /> ### and keep the remaining information in the script in place<br /> [/code]<br /> <br /> Hoping that helps and that you can understand the process.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4244/14219.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4244/14219.php</link>
				<pubDate><![CDATA[Thu, 10 Feb 2005 11:45:20]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title>Re: Free LinkPage</title>
				<description><![CDATA[ I forgot to login before posting and the line as follows:<br /> <br /> [quote="Anonymous"]<br /> Then I added inside the subroutine "success" and immediately after it the following information as noted: <br /> [/quote]<br /> <br /> would be better stated as <br /> [quote]Then I added inside the subroutine "success" and immediately after that subroutine, the following information ...[/quote]<br /> <br /> Best of luck to you and hoping you have success with the sendmail function.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4244/14221.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4244/14221.php</link>
				<pubDate><![CDATA[Thu, 10 Feb 2005 11:50:32]]> GMT</pubDate>
				<author><![CDATA[ ET]]></author>
			</item>
			<item>
				<title>Free LinkPage</title>
				<description><![CDATA[ Klasse, funktioniert ohne Probleme! Vielen Dank.<br /> <br /> Great, it works fine! Thank you!]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4244/14227.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4244/14227.php</link>
				<pubDate><![CDATA[Thu, 10 Feb 2005 13:15:09]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title>Free LinkPage</title>
				<description><![CDATA[ Gibt es vielleicht eine Möglichkeit, in der Mail die Kategorie und die URL des neuen Eintrages anzuzeigen?<br /> <br /> Is there a chance to show the category and the URL in the mail?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4244/14230.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4244/14230.php</link>
				<pubDate><![CDATA[Thu, 10 Feb 2005 14:30:34]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title>Re: Free LinkPage</title>
				<description><![CDATA[ [quote="Peter"]Gibt es vielleicht eine Möglichkeit, in der Mail die Kategorie und die URL des neuen Eintrages anzuzeigen?<br /> <br /> Is there a chance to show the category and the URL in the mail?[/quote]<br /> <br /> Yes, the category and URL data would be possible with a little more tweeking of the script.  If I get some spare time thrown at me in the next few weeks, I'll see what I can come up with. <br /> <br /> Glad the script works for you.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4244/14250.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4244/14250.php</link>
				<pubDate><![CDATA[Thu, 10 Feb 2005 20:39:38]]> GMT</pubDate>
				<author><![CDATA[ ET]]></author>
			</item>
			<item>
				<title>Re:Free LinkPage</title>
				<description><![CDATA[ Die Dinge, die Sie hier geteilt haben, sind erstaunlich, dieses Wissen, das ich vorher nicht kannte, also habe ich sehr hart gearbeitet. Herzlichen Dank [url=https://basketball-legends.online]basketball legends[/url]]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4244/30184.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4244/30184.php</link>
				<pubDate><![CDATA[Wed, 3 Nov 2021 08:56:02]]> GMT</pubDate>
				<author><![CDATA[ goalken]]></author>
			</item>
	</channel>
</rss>