<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>DanJay.co.uk &#187; Email</title>
	<atom:link href="http://www.danjay.co.uk/wordpress/tag/email/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.danjay.co.uk/wordpress</link>
	<description>Tips and Tricks from an IT guy...</description>
	<lastBuildDate>Mon, 16 Aug 2010 08:24:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Google Apps &#8211; Xerox Scan to Email</title>
		<link>http://www.danjay.co.uk/wordpress/2010/08/google-apps-xerox-scan-to-email/</link>
		<comments>http://www.danjay.co.uk/wordpress/2010/08/google-apps-xerox-scan-to-email/#comments</comments>
		<pubDate>Fri, 13 Aug 2010 09:08:27 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Apps]]></category>
		<category><![CDATA[Xerox]]></category>

		<guid isPermaLink="false">http://www.danjay.co.uk/wordpress/?p=235</guid>
		<description><![CDATA[Switched to Google Apps and now can&#8217;t get your Xerox printers to scan to email? It&#8217;s because Google&#8217;s servers require you to use SSL when sending email and the Xerox&#8217;s can&#8217;t send by SSL. To get it working, you&#8217;ve got two options (#2 is the far easier option): 1. You can use a program called [...]]]></description>
			<content:encoded><![CDATA[<p>Switched to Google Apps and now can&#8217;t get your Xerox printers to scan to email? It&#8217;s because Google&#8217;s servers require you to use SSL when sending email and the Xerox&#8217;s can&#8217;t send by SSL. To get it working, you&#8217;ve got two options (#2 is the far easier option):</p>
<p>1. You can use a program called <a href="http://www.stunnel.org/" target="_blank">Stunnel</a> to accept the Xerox&#8217;s SMTP transfer and transmit it to Google via a secure connection. More info <a href="http://www.google.com/support/forum/p/Google+Apps/thread?tid=1780781e814d05e6&amp;hl=en" target="_blank">here</a>.</p>
<p>2. Google actually accepts non-SSL SMTP connections on one of their servers, aspmx.l.google.com on port 25. Set the Xerox to send via that and set your username and password to a Google Apps account.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danjay.co.uk/wordpress/2010/08/google-apps-xerox-scan-to-email/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unspammable Email Link</title>
		<link>http://www.danjay.co.uk/wordpress/2009/09/unspammable-email-link/</link>
		<comments>http://www.danjay.co.uk/wordpress/2009/09/unspammable-email-link/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 17:14:34 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Spam]]></category>

		<guid isPermaLink="false">http://www.danjay.co.uk/wordpress/?p=68</guid>
		<description><![CDATA[Ever wondered how those sneaky spammers got your email address. Well they use robots to scan the internet and pick up email addresses off web pages. So if you ever publish your email address on a web page, sooner or later (most likely sooner), you&#8217;ll find you Inbox filling up with spam. There is however [...]]]></description>
			<content:encoded><![CDATA[<p>Ever wondered how those sneaky spammers got your email address. Well they use robots to scan the internet and pick up email addresses off web pages. So if you ever publish your email address on a web page, sooner or later (most likely sooner), you&#8217;ll find you Inbox filling up with spam. There is however another way.</p>
<p>Using the following piece of script, you can dynamically write your email address onto the page. It still creates a link, yet spammers robots can&#8217;t read it. Brilliant.</p>
<p>To use simply insert the script into the HTML code of your web page and change to reflect your email address.</p>
<blockquote><p>&lt;script language=&#8221;JavaScript&#8221;&gt;&lt;!&#8211;<br />
var name = &#8220;name&#8221;;<br />
var domain = &#8220;domain.com&#8221;;<br />
document.write(&#8216;&lt;a href=\&#8221;<a href="mailto:'%20+%20name%20+%20'@'%20+%20domain%20+%20'\">mailto:&#8217; + name + &#8216;@&#8217; + domain + &#8216;\</a>&#8220;&gt;&#8217;);<br />
document.write(‘TEXT TO DISPLAY ON WEBPAGE’ + &#8216;&lt;/a&gt;&#8217;);<br />
// &#8211;&gt;&lt;/script&gt;</p></blockquote>
<p>Or use this one to display the address as the email link.</p>
<blockquote><p>&lt;script language=&#8221;JavaScript&#8221;&gt;&lt;!&#8211;<br />
var name = &#8220;name&#8221;;<br />
var domain = &#8220;domain.com&#8221;;<br />
document.write(&#8216;&lt;a href=\&#8221;<a href="mailto:'%20+%20name%20+%20'@'%20+%20domain%20+%20'\">mailto:&#8217; + name + &#8216;@&#8217; + domain + &#8216;\</a>&#8220;&gt;&#8217;);<br />
document.write(name + &#8216;@&#8217; + domain+&#8217;&lt;/a&gt;&#8217;);<br />
// &#8211;&gt;&lt;/script&gt;</p></blockquote>
<p>Originally taken from <a href="http://www.javascriptkit.com/script/script2/unspam.shtml" target="_blank">http://www.javascriptkit.com/script/script2/unspam.shtml</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danjay.co.uk/wordpress/2009/09/unspammable-email-link/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
