<?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>Marius van Witzenburg &#187; Mac OS X</title>
	<atom:link href="http://mariusvw.com/category/mac-os-x/feed/" rel="self" type="application/rss+xml" />
	<link>http://mariusvw.com</link>
	<description>We fight for our survival, we fight!</description>
	<lastBuildDate>Tue, 27 Dec 2011 10:35:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to check if a key exists in an array with in_array for Bash</title>
		<link>http://mariusvw.com/2011/07/17/how-to-check-if-a-key-exists-in-an-array-with-in_array-for-bash/</link>
		<comments>http://mariusvw.com/2011/07/17/how-to-check-if-a-key-exists-in-an-array-with-in_array-for-bash/#comments</comments>
		<pubDate>Sun, 17 Jul 2011 13:34:16 +0000</pubDate>
		<dc:creator>mariusvw</dc:creator>
				<category><![CDATA[BSD / Linux / Unix]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Array]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[in_array]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://kitara.nl/?p=221</guid>
		<description><![CDATA[When working with Bash it might become handy to have a way to check if a record exists in an array. In PHP you have in_array for this... The below code adds a function similar to the PHP variant. function in_array&#40;&#41; &#123; local x ENTRY=$1 shift 1 ARRAY=&#40; &#34;$@&#34; &#41; &#91; -z &#34;${ARRAY}&#34; &#93; &#38;&#38; [...]]]></description>
			<content:encoded><![CDATA[<p>When working with Bash it might become handy to have a way to check if a record exists in an array. In PHP you have <a href="http://www.php.net/in_array">in_array</a> for this... The below code adds a function similar to the PHP variant.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> in_array<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span>
  <span style="color: #7a0874; font-weight: bold;">local</span> x
  <span style="color: #007800;">ENTRY</span>=<span style="color: #007800;">$1</span>
  <span style="color: #7a0874; font-weight: bold;">shift</span> <span style="color: #000000;">1</span>
  <span style="color: #007800;">ARRAY</span>=<span style="color: #7a0874; font-weight: bold;">&#40;</span> <span style="color: #ff0000;">&quot;$@&quot;</span> <span style="color: #7a0874; font-weight: bold;">&#41;</span>
  <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #660033;">-z</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">${ARRAY}</span>&quot;</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #7a0874; font-weight: bold;">return</span> <span style="color: #000000;">1</span>
  <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #660033;">-z</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">${ENTRY}</span>&quot;</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #7a0874; font-weight: bold;">return</span> <span style="color: #000000;">1</span>
  <span style="color: #000000; font-weight: bold;">for</span> x <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #800000;">${ARRAY[@]}</span>; <span style="color: #000000; font-weight: bold;">do</span>
    <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">${x}</span>&quot;</span> == <span style="color: #ff0000;">&quot;<span style="color: #007800;">${ENTRY}</span>&quot;</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #7a0874; font-weight: bold;">return</span> <span style="color: #000000;">0</span>
  <span style="color: #000000; font-weight: bold;">done</span>
  <span style="color: #7a0874; font-weight: bold;">return</span> <span style="color: #000000;">1</span>
<span style="color: #7a0874; font-weight: bold;">&#125;</span>
&nbsp;
<span style="color: #007800;">MASTER</span>=<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #007800;">CURRENT</span>=<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #007800;">FIRST</span>=<span style="color: #000000;">1</span>
<span style="color: #000000; font-weight: bold;">for</span> SERVER <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #800000;">${SERVERS}</span>; <span style="color: #000000; font-weight: bold;">do</span>
  <span style="color: #666666; font-style: italic;"># collect all builds from server and populate CURRENT list</span>
  <span style="color: #007800;">COMMAND</span>=<span style="color: #ff0000;">&quot;<span style="color: #007800;">${LS}</span> -1fd <span style="color: #007800;">${WEBROOT}</span>/<span style="color: #007800;">${SITE}</span>.*&quot;</span>
  <span style="color: #007800;">BUILDS</span>=<span style="color: #000000; font-weight: bold;">`</span><span style="color: #800000;">${SSH}</span> <span style="color: #800000;">${SSHOPTS}</span> root<span style="color: #000000; font-weight: bold;">@</span><span style="color: #800000;">${SERVER}</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">${COMMAND}</span>&quot;</span><span style="color: #000000; font-weight: bold;">`</span>
  <span style="color: #000000; font-weight: bold;">for</span> BUILD <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #800000;">${BUILDS}</span>; <span style="color: #000000; font-weight: bold;">do</span>
    <span style="color: #007800;">CURRENT</span>=<span style="color: #7a0874; font-weight: bold;">&#40;</span> <span style="color: #800000;">${CURRENT[@]-}</span> <span style="color: #800000;">${BUILD}</span> <span style="color: #7a0874; font-weight: bold;">&#41;</span>
  <span style="color: #000000; font-weight: bold;">done</span>
&nbsp;
  <span style="color: #666666; font-style: italic;"># if this is our first time around, copy CURRENT to MASTER</span>
  <span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #800000;">${FIRST}</span> <span style="color: #660033;">-eq</span> <span style="color: #000000;">1</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>; <span style="color: #000000; font-weight: bold;">then</span>
    <span style="color: #007800;">MASTER</span>=<span style="color: #7a0874; font-weight: bold;">&#40;</span> <span style="color: #800000;">${CURRENT[@]}</span> <span style="color: #7a0874; font-weight: bold;">&#41;</span>
    <span style="color: #007800;">FIRST</span>=<span style="color: #000000;">0</span>
  <span style="color: #000000; font-weight: bold;">fi</span>
&nbsp;
  <span style="color: #666666; font-style: italic;"># now we do a compare between MASTER and CURRENT to see what builds</span>
  <span style="color: #666666; font-style: italic;"># are common</span>
  <span style="color: #007800;">INTERSECT</span>=<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
  <span style="color: #000000; font-weight: bold;">for</span> ENTRY <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #800000;">${CURRENT[@]}</span>; <span style="color: #000000; font-weight: bold;">do</span>
    in_array <span style="color: #ff0000;">&quot;<span style="color: #007800;">${ENTRY}</span>&quot;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">${MASTER[@]}</span>&quot;</span>
    <span style="color: #007800;">RET</span>=<span style="color: #007800;">$?</span>
    <span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">${RET}</span>&quot;</span> <span style="color: #660033;">-eq</span> <span style="color: #000000;">0</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>; <span style="color: #000000; font-weight: bold;">then</span>
      <span style="color: #007800;">INTERSECT</span>=<span style="color: #7a0874; font-weight: bold;">&#40;</span> <span style="color: #800000;">${INTERSECT[@]-}</span> <span style="color: #800000;">${ENTRY}</span> <span style="color: #7a0874; font-weight: bold;">&#41;</span>
    <span style="color: #000000; font-weight: bold;">fi</span>
  <span style="color: #000000; font-weight: bold;">done</span>
  <span style="color: #007800;">MASTER</span>=<span style="color: #7a0874; font-weight: bold;">&#40;</span> <span style="color: #800000;">${INTERSECT[@]}</span> <span style="color: #7a0874; font-weight: bold;">&#41;</span>
&nbsp;
  <span style="color: #666666; font-style: italic;"># clear the CURRENT array</span>
  <span style="color: #007800;">CURRENT</span>=<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #000000; font-weight: bold;">done</span></pre></div></div>

<p>Source: <a href="http://mykospark.net/tag/in_array/">http://mykospark.net/tag/in_array/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://mariusvw.com/2011/07/17/how-to-check-if-a-key-exists-in-an-array-with-in_array-for-bash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to test your mail server SMTP communication with Telnet</title>
		<link>http://mariusvw.com/2011/07/05/how-to-test-your-mail-server-smtp-communication-with-telnet/</link>
		<comments>http://mariusvw.com/2011/07/05/how-to-test-your-mail-server-smtp-communication-with-telnet/#comments</comments>
		<pubDate>Tue, 05 Jul 2011 19:29:45 +0000</pubDate>
		<dc:creator>mariusvw</dc:creator>
				<category><![CDATA[BSD / Linux / Unix]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Auth]]></category>
		<category><![CDATA[Communication]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Smtp]]></category>
		<category><![CDATA[Telnet]]></category>
		<category><![CDATA[Test]]></category>

		<guid isPermaLink="false">http://kitara.nl/?p=101</guid>
		<description><![CDATA[SMTP without Authentication In the below example lines starting with the number 220, 221, 250 and 354 are the responses. telnet smtp.xs4all.nl 25 220 smtp-vbr10.xs4all.nl ESMTP Sendmail 8.13.8/8.13.8; Tue, 5 Jul 2011 20:07:48 +0200 (CEST) HELO kitara.nl 250 smtp-vbr10.xs4all.nl Hello srv.kitara.nl [77.74.48.170], pleased to meet you MAIL FROM: reply@kitara.nl 250 2.1.0 reply@kitara.nl... Sender ok RCPT [...]]]></description>
			<content:encoded><![CDATA[<h2>SMTP without Authentication</h2>
<p>In the below example lines starting with the number 220, 221, 250 and 354 are the responses.</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">telnet smtp.xs4all.nl 25
220 smtp-vbr10.xs4all.nl ESMTP Sendmail 8.13.8/8.13.8; Tue, 5 Jul 2011 20:07:48 +0200 (CEST)
HELO kitara.nl
250 smtp-vbr10.xs4all.nl Hello srv.kitara.nl [77.74.48.170], pleased to meet you
MAIL FROM: reply@kitara.nl
250 2.1.0 reply@kitara.nl... Sender ok
RCPT TO: marius@kitara.nl
250 2.1.5 marius@kitara.nl... Recipient ok
DATA
354 Enter mail, end with &quot;.&quot; on a line by itself
Subject: Your Subject here
&nbsp;
Your data here, note the blank line above!
.
250 2.0.0 smtp-vbr10.xs4all.nl accepted message p65I7m0V043931
quit
221 2.0.0 smtp-vbr10.xs4all.nl closing connection
Connection closed by foreign host.</pre></div></div>

<h2>SMTP with Authentication</h2>
<p>This example is quite the same as the above one only it implements authentication.</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">telnet smtp.xs4all.nl 25
220 smtp-vbr10.xs4all.nl ESMTP Sendmail 8.13.8/8.13.8; Tue, 5 Jul 2011 20:07:48 +0200 (CEST)
HELO kitara.nl
250 smtp-vbr10.xs4all.nl Hello srv.kitara.nl [77.74.48.170], pleased to meet you
AUTH LOGIN
&lt;base64 encoded username, mostly full email&gt;
&lt;base64 encoded password&gt;
235 2.0.0 OK Authenticated
MAIL FROM: reply@kitara.nl
250 2.1.0 reply@kitara.nl... Sender ok
RCPT TO: marius@kitara.nl
250 2.1.5 marius@kitara.nl... Recipient ok
DATA
354 Enter mail, end with &quot;.&quot; on a line by itself
Subject: Your Subject here
&nbsp;
Your data here, note the blank line above!
.
250 2.0.0 smtp-vbr10.xs4all.nl accepted message p65I7m0V043931
quit
221 2.0.0 smtp-vbr10.xs4all.nl closing connection
Connection closed by foreign host.</pre></div></div>

<p>Here a handy tool to <strong>encode</strong> or <strong>decode</strong> your data to <strong>base64</strong>.<br />
<a href="http://ostermiller.org/calc/encode.html">http://ostermiller.org/calc/encode.html</a> (<a href="http://kitara.nl/wp-content/uploads/2011/07/Base64-and-URL-Encoding-and-Decoding.zip" title="Base64 and URL Encoding and Decoding">Zip</a>)</p>
<p>And remember kids, don't spam <img src='http://mariusvw.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://mariusvw.com/2011/07/05/how-to-test-your-mail-server-smtp-communication-with-telnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to generate a Windows Live Messenger or MSN Messenger contactlist file with PHP</title>
		<link>http://mariusvw.com/2011/07/04/how-to-generate-a-windows-live-messenger-or-msn-messenger-contactlist-file-with-php/</link>
		<comments>http://mariusvw.com/2011/07/04/how-to-generate-a-windows-live-messenger-or-msn-messenger-contactlist-file-with-php/#comments</comments>
		<pubDate>Mon, 04 Jul 2011 18:46:20 +0000</pubDate>
		<dc:creator>mariusvw</dc:creator>
				<category><![CDATA[BSD / Linux / Unix]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Contacts]]></category>
		<category><![CDATA[Generate]]></category>
		<category><![CDATA[Live]]></category>
		<category><![CDATA[Messenger]]></category>
		<category><![CDATA[MSN]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://kitara.nl/?p=6027</guid>
		<description><![CDATA[If you would like to generate a contact list with PHP to import email addresses into your contact list use the following... PHP contactlist generator mysql_connect&#40;'localhost', 'username', 'password'&#41;; mysql_select_db&#40;'database'&#41;; &#160; $doc = new DOMDocument&#40;'1.0'&#41;; $doc-&#62;formatOutput = true; &#160; $node = $doc-&#62;createElement&#40;'messenger'&#41;; $messenger = $doc-&#62;appendChild&#40;$node&#41;; &#160; $node = $doc-&#62;createElement&#40;'service'&#41;; $node-&#62;setAttribute&#40;'name', '.NET Messenger Service'&#41;; $service = $messenger-&#62;appendChild&#40;$node&#41;; [...]]]></description>
			<content:encoded><![CDATA[<p>If you would like to generate a contact list with PHP to import email addresses into your contact list use the following...</p>
<h2>PHP contactlist generator</h2>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #990000;">mysql_connect</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'localhost'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'username'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'password'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">mysql_select_db</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'database'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000088;">$doc</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> DOMDocument<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'1.0'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$doc</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">formatOutput</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">;</span> 
&nbsp;
<span style="color: #000088;">$node</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$doc</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">createElement</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'messenger'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$messenger</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$doc</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">appendChild</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$node</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000088;">$node</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$doc</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">createElement</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'service'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$node</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">setAttribute</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'name'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'.NET Messenger Service'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$service</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$messenger</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">appendChild</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$node</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000088;">$node</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$doc</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">createElement</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'contactlist'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$contactlist</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$service</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">appendChild</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$node</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000088;">$result</span> <span style="color: #339933;">=</span> <span style="color: #990000;">mysql_query</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;SELECT `email` FROM `contacts`&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$data</span> <span style="color: #339933;">=</span> <span style="color: #990000;">mysql_fetch_assoc</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$result</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000088;">$node</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$doc</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">createElement</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'contact'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$data</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'email'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$contactlist</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">appendChild</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$node</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #990000;">header</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Content-type: text/xml'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">header</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Content-Disposition: attachment; filename=contacts.xml'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$doc</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">saveXML</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<h2>Output</h2>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?xml</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;messenger<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;service</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;.NET Messenger Service&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;contactlist<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
      <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;contact<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>email1@domain.tld<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/contact<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
      <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;contact<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>email2@domain.tld<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/contact<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
      <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;contact<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>email3@domain.tld<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/contact<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
      <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;contact<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>email4@domain.tld<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/contact<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
      <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;contact<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>email5@domain.tld<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/contact<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/contactlist<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/service<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/messenger<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://mariusvw.com/2011/07/04/how-to-generate-a-windows-live-messenger-or-msn-messenger-contactlist-file-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to fix ACL errors in diskutility</title>
		<link>http://mariusvw.com/2011/07/01/how-to-fix-acl-errors-in-diskutility/</link>
		<comments>http://mariusvw.com/2011/07/01/how-to-fix-acl-errors-in-diskutility/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 19:30:41 +0000</pubDate>
		<dc:creator>mariusvw</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[ACL]]></category>
		<category><![CDATA[Disk]]></category>
		<category><![CDATA[Error]]></category>

		<guid isPermaLink="false">http://kitara.nl/?p=204</guid>
		<description><![CDATA[If you try to repair permissions and get a bunch of acls found but not expected. To fix this some chmod commands need to be executed in the terminal. Essentially open up a terminal and do the following: cd / ls -le Look at the Applications and Library folders in the listing and you should [...]]]></description>
			<content:encoded><![CDATA[<p>If you try to repair permissions and get a bunch of acls found but not expected.</p>
<p>To fix this some chmod commands need to be executed in the terminal.</p>
<p>Essentially open up a terminal and do the following:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">ls</span> <span style="color: #660033;">-le</span></pre></div></div>

<p>Look at the Applications and Library folders in the listing and you should see they have specific ACLs. On one of my machines the Applications folder had 2 and the Library had one. On the other both had just one.</p>
<p>To remove these ACLs do the following:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #660033;">-a</span><span style="color: #666666; font-style: italic;"># 0 &quot;/Applications&quot;</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #660033;">-a</span><span style="color: #666666; font-style: italic;"># 0 &quot;/Library&quot;</span>
<span style="color: #666666; font-style: italic;"># etc...</span></pre></div></div>

<p>If you had more than one on either directory you can execute the same command until they are gone.</p>
]]></content:encoded>
			<wfw:commentRss>http://mariusvw.com/2011/07/01/how-to-fix-acl-errors-in-diskutility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to paste into password fields in mobile Safari on your iPhone</title>
		<link>http://mariusvw.com/2011/07/01/how-to-paste-into-password-fields-in-mobile-safari-on-your-iphone/</link>
		<comments>http://mariusvw.com/2011/07/01/how-to-paste-into-password-fields-in-mobile-safari-on-your-iphone/#comments</comments>
		<pubDate>Thu, 30 Jun 2011 23:01:09 +0000</pubDate>
		<dc:creator>mariusvw</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[Password]]></category>
		<category><![CDATA[Paste]]></category>
		<category><![CDATA[Safari]]></category>

		<guid isPermaLink="false">http://kitara.nl/?p=119</guid>
		<description><![CDATA[On some sites its not possible to paste a password in a password field. Which sucks! Well this is a simple work around. In this example I use Facebook. On this login screen you can bring up the paste button but it is not pasting anything at all. It becomes blue, nothing happens. The solution, [...]]]></description>
			<content:encoded><![CDATA[<p>On some sites its not possible to paste a password in a password field. Which sucks! Well this is a simple work around.</p>
<p>In this example I use Facebook.</p>
<p>On this login screen you can bring up the paste button but it is not pasting anything at all.</p>
<p><a href="http://kitara.nl/wp-content/uploads/2011/06/IMG_0203.png"><img src="http://kitara.nl/wp-content/uploads/2011/06/IMG_0203-150x150.png" alt="" title="iPhone paste password, 1/5" width="150" height="150" class="alignnone size-thumbnail wp-image-303" /></a></p>
<p>It becomes blue, nothing happens.</p>
<p><a href="http://kitara.nl/wp-content/uploads/2011/06/IMG_0205.png"><img src="http://kitara.nl/wp-content/uploads/2011/06/IMG_0205-150x150.png" alt="" title="iPhone paste password, 2/5" width="150" height="150" class="alignnone size-thumbnail wp-image-304" /></a></p>
<p>The solution, simply type some characters into the field. And tap hold until you see the menu. There press <strong>Select All</strong>.</p>
<p><a href="http://kitara.nl/wp-content/uploads/2011/06/IMG_0206.png"><img src="http://kitara.nl/wp-content/uploads/2011/06/IMG_0206-150x150.png" alt="" title="iPhone paste password, 3/5" width="150" height="150" class="alignnone size-thumbnail wp-image-305" /></a></p>
<p>Now you have the bogus password selected and will be able to paste your real password over the bogus one.</p>
<p><a href="http://kitara.nl/wp-content/uploads/2011/06/IMG_0207.png"><img src="http://kitara.nl/wp-content/uploads/2011/06/IMG_0207-150x150.png" alt="" title="iPhone paste password, 4/5" width="150" height="150" class="alignnone size-thumbnail wp-image-306" /></a></p>
<p>You can login now <img src='http://mariusvw.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><a href="http://kitara.nl/wp-content/uploads/2011/06/IMG_0208.png"><img src="http://kitara.nl/wp-content/uploads/2011/06/IMG_0208-150x150.png" alt="" title="iPhone paste password, 5/5" width="150" height="150" class="alignnone size-thumbnail wp-image-307" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://mariusvw.com/2011/07/01/how-to-paste-into-password-fields-in-mobile-safari-on-your-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to mount a Western Digital ShareSpace NFS share</title>
		<link>http://mariusvw.com/2011/06/30/how-to-mount-a-western-digital-sharespace-nfs-share/</link>
		<comments>http://mariusvw.com/2011/06/30/how-to-mount-a-western-digital-sharespace-nfs-share/#comments</comments>
		<pubDate>Thu, 30 Jun 2011 18:42:59 +0000</pubDate>
		<dc:creator>mariusvw</dc:creator>
				<category><![CDATA[BSD / Linux / Unix]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mount]]></category>
		<category><![CDATA[NFS]]></category>
		<category><![CDATA[Sharespace]]></category>

		<guid isPermaLink="false">http://kitara.nl/?p=5558</guid>
		<description><![CDATA[This might become handy if you want to connect the drive on a FreeBSD or Linux machine to easy transfer files to it. Enable NFS on your Western Digital ShareSpace Log into your web interface and goto Advanced Mode Goto the tab Network Goto Services Here check the Enable checkbox and add the IP of [...]]]></description>
			<content:encoded><![CDATA[<p>This might become handy if you want to connect the drive on a FreeBSD or Linux machine to easy transfer files to it.</p>
<h2>Enable NFS on your Western Digital ShareSpace</h2>
<p><strong>Log into your web interface and goto Advanced Mode</strong><br />
<a href="http://kitara.nl/wp-content/uploads/2011/06/WD-ShareSpace-enable-NFS-1.png"><img src="http://kitara.nl/wp-content/uploads/2011/06/WD-ShareSpace-enable-NFS-1-512x335.png" alt="" title="WD ShareSpace enable NFS, 1" width="512" height="335" class="alignnone size-medium wp-image-5759" /></a></p>
<p><strong>Goto the tab Network</strong><br />
<a href="http://kitara.nl/wp-content/uploads/2011/06/WD-ShareSpace-enable-NFS-2.png"><img src="http://kitara.nl/wp-content/uploads/2011/06/WD-ShareSpace-enable-NFS-2-512x347.png" alt="" title="WD ShareSpace enable NFS, 2" width="512" height="347" class="alignnone size-medium wp-image-5760" /></a></p>
<p><strong>Goto Services</strong><br />
<a href="http://kitara.nl/wp-content/uploads/2011/06/WD-ShareSpace-enable-NFS-3.png"><img src="http://kitara.nl/wp-content/uploads/2011/06/WD-ShareSpace-enable-NFS-3-512x190.png" alt="" title="WD ShareSpace enable NFS, 3" width="512" height="190" class="alignnone size-medium wp-image-5761" /></a></p>
<p><strong>Here check the Enable checkbox and add the IP of the machine you want to grant access</strong><br />
<a href="http://kitara.nl/wp-content/uploads/2011/06/WD-ShareSpace-enable-NFS-4.png"><img src="http://kitara.nl/wp-content/uploads/2011/06/WD-ShareSpace-enable-NFS-4-512x487.png" alt="" title="WD ShareSpace enable NFS, 4" width="512" height="487" class="alignnone size-medium wp-image-5762" /></a></p>
<p><strong>Next goto Storage</strong><br />
<a href="http://kitara.nl/wp-content/uploads/2011/06/WD-ShareSpace-enable-NFS-5.png"><img src="http://kitara.nl/wp-content/uploads/2011/06/WD-ShareSpace-enable-NFS-5-512x346.png" alt="" title="WD ShareSpace enable NFS, 5" width="512" height="346" class="alignnone size-medium wp-image-5763" /></a></p>
<p><strong>Edit the share preferences</strong><br />
<a href="http://kitara.nl/wp-content/uploads/2011/06/WD-ShareSpace-enable-NFS-6.png"><img src="http://kitara.nl/wp-content/uploads/2011/06/WD-ShareSpace-enable-NFS-6-512x189.png" alt="" title="WD ShareSpace enable NFS, 6" width="512" height="189" class="alignnone size-medium wp-image-5764" /></a></p>
<p><strong>Enable NFS support for this share</strong><br />
<a href="http://kitara.nl/wp-content/uploads/2011/06/WD-ShareSpace-enable-NFS-7.png"><img src="http://kitara.nl/wp-content/uploads/2011/06/WD-ShareSpace-enable-NFS-7-512x180.png" alt="" title="WD ShareSpace enable NFS, 7" width="512" height="180" class="alignnone size-medium wp-image-5765" /></a></p>
<p><strong>Goto Users</strong><br />
<a href="http://kitara.nl/wp-content/uploads/2011/06/WD-ShareSpace-enable-NFS-8.png"><img src="http://kitara.nl/wp-content/uploads/2011/06/WD-ShareSpace-enable-NFS-8-512x246.png" alt="" title="WD ShareSpace enable NFS 8" width="512" height="246" class="alignnone size-medium wp-image-5817" /></a></p>
<p><strong>Edit the user preferences</strong><br />
<a href="http://kitara.nl/wp-content/uploads/2011/06/WD-ShareSpace-enable-NFS-9.png"><img src="http://kitara.nl/wp-content/uploads/2011/06/WD-ShareSpace-enable-NFS-9-512x233.png" alt="" title="WD ShareSpace enable NFS 9" width="512" height="233" class="alignnone size-medium wp-image-5818" /></a></p>
<p><strong>Grand optional write access to this user</strong><br />
<a href="http://kitara.nl/wp-content/uploads/2011/06/WD-ShareSpace-enable-NFS-10.png"><img src="http://kitara.nl/wp-content/uploads/2011/06/WD-ShareSpace-enable-NFS-10-512x222.png" alt="" title="WD ShareSpace enable NFS 10" width="512" height="222" class="alignnone size-medium wp-image-5819" /></a></p>
<h2>Connect to NFS mount of ShareSpace on FreeBSD</h2>
<p>List mounts</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">showmount -e 192.168.2.3</pre></div></div>

<p>Connect mountpoint</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;"># Read only
mount -t nfs 192.168.2.3:/DataVolume/backup /mnt/
# Read / Write
mount -t nfs -o rw 192.168.2.3:/DataVolume/backup /mnt/</pre></div></div>

<p>Add share to /etc/fstab</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">172.16.32.44:/DataVolume/backup /backup nfs rw  2   2</pre></div></div>

<p>Mount with <strong>mount -a</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://mariusvw.com/2011/06/30/how-to-mount-a-western-digital-sharespace-nfs-share/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to solve the problem that a bluetooth device not always auto connects</title>
		<link>http://mariusvw.com/2011/06/30/how-to-solve-the-problem-that-a-bluetooth-device-not-always-auto-connects/</link>
		<comments>http://mariusvw.com/2011/06/30/how-to-solve-the-problem-that-a-bluetooth-device-not-always-auto-connects/#comments</comments>
		<pubDate>Thu, 30 Jun 2011 15:00:52 +0000</pubDate>
		<dc:creator>mariusvw</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Automatically]]></category>
		<category><![CDATA[Bluetooth]]></category>
		<category><![CDATA[Connecting]]></category>
		<category><![CDATA[Favorite]]></category>
		<category><![CDATA[Settings]]></category>

		<guid isPermaLink="false">http://kitara.nl/?p=5480</guid>
		<description><![CDATA[I have been irritating me about my mouse not connecting when I turned it on, the problem seems to be solved by adding the device as a favorite in the bluetooth settings. First goto System Preferences: Path:  &#187; System Preferences... Then goto the Bluetooth panel Path:  &#187; System Preferences... &#187; Bluetooth Select your [...]]]></description>
			<content:encoded><![CDATA[<p>I have been irritating me about my mouse not connecting when I turned it on, the problem seems to be solved by adding the device as a favorite in the bluetooth settings.</p>
<p>First goto System Preferences:<br />
<a href="http://kitara.nl/wp-content/uploads/2011/06/Bluetooth-favorite-1.png"><img src="http://kitara.nl/wp-content/uploads/2011/06/Bluetooth-favorite-1.png" alt="" title="Bluetooth favorite, 1" width="327" height="298" class="alignnone size-full wp-image-5777" /></a><br />
Path:  &raquo; System Preferences...</p>
<p>Then goto the Bluetooth panel<br />
<a href="http://kitara.nl/wp-content/uploads/2011/06/Bluetooth-favorite-2.png"><img src="http://kitara.nl/wp-content/uploads/2011/06/Bluetooth-favorite-2.png" alt="" title="Bluetooth favorite, 2" width="479" height="284" class="alignnone size-full wp-image-5778" /></a><br />
Path:  &raquo; System Preferences... &raquo; Bluetooth</p>
<p>Select your device and click the gear at the bottom, there click Add to favorites.<br />
<a href="http://kitara.nl/wp-content/uploads/2011/06/Bluetooth-favorite-3.png"><img src="http://kitara.nl/wp-content/uploads/2011/06/Bluetooth-favorite-3-512x424.png" alt="" title="Bluetooth favorite, 3" width="512" height="424" class="alignnone size-medium wp-image-5779" /></a></p>
<p>This was my solution <img src='http://mariusvw.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://mariusvw.com/2011/06/30/how-to-solve-the-problem-that-a-bluetooth-device-not-always-auto-connects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to relocate repository root URL of your Subversion working copy</title>
		<link>http://mariusvw.com/2011/06/24/how-to-relocate-repository-root-url-of-your-subversion-working-copy/</link>
		<comments>http://mariusvw.com/2011/06/24/how-to-relocate-repository-root-url-of-your-subversion-working-copy/#comments</comments>
		<pubDate>Fri, 24 Jun 2011 13:25:24 +0000</pubDate>
		<dc:creator>mariusvw</dc:creator>
				<category><![CDATA[BSD / Linux / Unix]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Webdevelopment]]></category>
		<category><![CDATA[Location]]></category>
		<category><![CDATA[Path]]></category>
		<category><![CDATA[Relocate]]></category>
		<category><![CDATA[Root]]></category>
		<category><![CDATA[Subversion]]></category>
		<category><![CDATA[SVN]]></category>
		<category><![CDATA[Switch]]></category>
		<category><![CDATA[URL]]></category>

		<guid isPermaLink="false">http://kitara.nl/?p=5651</guid>
		<description><![CDATA[Ever had this issue a administrator changed the location of the repository? Well, I had Relocating the URL of the repository is quite simple with svn switch --relocate, here you have some simple steps to fix your working copy. 1. Go into the current working copy. cd /path/to/your/working/copy 2. Get the current repository root URL. [...]]]></description>
			<content:encoded><![CDATA[<p>Ever had this issue a administrator changed the location of the repository?</p>
<p>Well, I had <img src='http://mariusvw.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Relocating the URL of the repository is quite simple with <strong>svn switch --relocate</strong>, here you have some simple steps to fix your working copy.</p>
<p><strong>1.</strong> Go into the current working copy.</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">cd /path/to/your/working/copy</pre></div></div>

<p><strong>2.</strong> Get the current repository root URL.</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">svn info</pre></div></div>

<p><strong>3.</strong> Now switch the old repository root to the new repository root.</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">svn switch --relocate http://old_repository_root http://new_repository_root</pre></div></div>

<p><strong>4.</strong> Optionally you can verify if the relocate went successful.</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">svn info</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://mariusvw.com/2011/06/24/how-to-relocate-repository-root-url-of-your-subversion-working-copy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make a VPN connection with Mac OS X on your iMac or Macbook (pro) to a FRITZ!Box</title>
		<link>http://mariusvw.com/2011/06/22/how-to-make-a-vpn-connection-with-mac-os-x-on-your-imac-or-macbook-pro-to-a-fritzbox/</link>
		<comments>http://mariusvw.com/2011/06/22/how-to-make-a-vpn-connection-with-mac-os-x-on-your-imac-or-macbook-pro-to-a-fritzbox/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 20:31:53 +0000</pubDate>
		<dc:creator>mariusvw</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[FRITZ!Box]]></category>
		<category><![CDATA[iMac]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[IPsec]]></category>
		<category><![CDATA[Macbook]]></category>
		<category><![CDATA[VPN]]></category>

		<guid isPermaLink="false">http://kitara.nl/?p=5594</guid>
		<description><![CDATA[If you need some more info on how to configure your FRITZ!Box check out How to configure VPN on your FRITZ!Box 7340. Configure your iMac or Macbook (Pro) to use VPN to your FRITZ!Box router VPN service. First add a new VPN config by clicking the plus at the left bottom. Next is to select [...]]]></description>
			<content:encoded><![CDATA[<p>If you need some more info on how to configure your FRITZ!Box check out <em><a href="http://kitara.nl/2011/06/22/how-to-configure-vpn-on-your-fritzbox-7340/" title="How to configure VPN on your FRITZ!Box 7340" >How to configure VPN on your FRITZ!Box 7340</a></em>.</p>
<p>Configure your iMac or Macbook (Pro) to use VPN to your FRITZ!Box router VPN service.</p>
<p>First add a new VPN config by clicking the <strong>plus</strong> at the left bottom.</p>
<p><a href="http://kitara.nl/wp-content/uploads/2011/06/VPN-on-Mac-OS-X-1.png"><img src="http://kitara.nl/wp-content/uploads/2011/06/VPN-on-Mac-OS-X-1-512x451.png" alt="" title="VPN on Mac OS X, 1" width="512" height="451" class="alignnone size-medium wp-image-5574" /></a></p>
<p>Next is to select <strong>Cisco IPsec</strong> and fill out a name at the <strong>Service Name</strong> field. This can be something like <strong>Home VPN</strong>.</p>
<p><a href="http://kitara.nl/wp-content/uploads/2011/06/VPN-on-Mac-OS-X-2.png"><img src="http://kitara.nl/wp-content/uploads/2011/06/VPN-on-Mac-OS-X-2.png" alt="" title="VPN on Mac OS X, 2" width="426" height="208" class="alignnone size-full wp-image-5575" /></a></p>
<p>Next is to fill out the VPN information in this configuration.</p>
<ul>
<li><strong>Server Address:</strong> add the IP or Host of your FRITZ!Box WAN connection.</li>
<li><strong>Account Name:</strong> add YOUR_USERNAME.</li>
<li><strong>Password:</strong> add YOUR_PASSWORD.</li>
</ul>
<p><a href="http://kitara.nl/wp-content/uploads/2011/06/VPN-on-Mac-OS-X-3.png"><img src="http://kitara.nl/wp-content/uploads/2011/06/VPN-on-Mac-OS-X-3-512x451.png" alt="" title="VPN on Mac OS X, 3" width="512" height="451" class="alignnone size-medium wp-image-5576" /></a></p>
<p>Click <strong>Authentication Settings</strong> and fill out the following.</p>
<ul>
<li><strong>Shared Secret:</strong> YOUR_SHARED_PASSWORD.</li>
<li><strong>Group Name:</strong> add YOUR_MAIL_ADDRESS.</li>
</ul>
<p><a href="http://kitara.nl/wp-content/uploads/2011/06/VPN-on-Mac-OS-X-4.png"><img src="http://kitara.nl/wp-content/uploads/2011/06/VPN-on-Mac-OS-X-4.png" alt="" title="VPN on Mac OS X, 4" width="381" height="206" class="alignnone size-full wp-image-5577" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://mariusvw.com/2011/06/22/how-to-make-a-vpn-connection-with-mac-os-x-on-your-imac-or-macbook-pro-to-a-fritzbox/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to make a VPN connection with iOS on your iPod or iPhone to a FRITZ!Box</title>
		<link>http://mariusvw.com/2011/06/22/how-to-make-a-vpn-connection-with-ios-on-your-ipod-or-iphone-to-a-fritzbox/</link>
		<comments>http://mariusvw.com/2011/06/22/how-to-make-a-vpn-connection-with-ios-on-your-ipod-or-iphone-to-a-fritzbox/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 20:03:27 +0000</pubDate>
		<dc:creator>mariusvw</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[FRITZ!Box]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[IPsec]]></category>
		<category><![CDATA[VPN]]></category>

		<guid isPermaLink="false">http://kitara.nl/?p=5592</guid>
		<description><![CDATA[If you need some more info on how to configure your FRITZ!Box check out How to configure VPN on your FRITZ!Box 7340. Configure your iPod or iPhone to use VPN to your FRITZ!Box router VPN. Goto the "Settings" of your iPod or iPhone and then goto "General". Goto "Network". Goto "VPN". Goto "Add VPN Configuration...". [...]]]></description>
			<content:encoded><![CDATA[<p>If you need some more info on how to configure your FRITZ!Box check out <em><a href="http://kitara.nl/2011/06/22/how-to-configure-vpn-on-your-fritzbox-7340/" title="How to configure VPN on your FRITZ!Box 7340" >How to configure VPN on your FRITZ!Box 7340</a></em>.</p>
<p>Configure your iPod or iPhone to use VPN to your FRITZ!Box router VPN.</p>
<p>Goto the "Settings" of your iPod or iPhone and then goto "General".</p>
<p><a href="http://kitara.nl/wp-content/uploads/2011/06/VPN-on-iOS-1.png"><img src="http://kitara.nl/wp-content/uploads/2011/06/VPN-on-iOS-1-341x512.png" alt="" title="VPN on iOS, 1" width="341" height="512" class="alignnone size-medium wp-image-5569" /></a></p>
<p>Goto "Network".</p>
<p><a href="http://kitara.nl/wp-content/uploads/2011/06/VPN-on-iOS-2.png"><img src="http://kitara.nl/wp-content/uploads/2011/06/VPN-on-iOS-2-341x512.png" alt="" title="VPN on iOS, 2" width="341" height="512" class="alignnone size-medium wp-image-5570" /></a></p>
<p>Goto "VPN".</p>
<p><a href="http://kitara.nl/wp-content/uploads/2011/06/VPN-on-iOS-3.png"><img src="http://kitara.nl/wp-content/uploads/2011/06/VPN-on-iOS-3-341x512.png" alt="" title="VPN on iOS, 3" width="341" height="512" class="alignnone size-medium wp-image-5571" /></a></p>
<p>Goto "Add VPN Configuration...".</p>
<p><a href="http://kitara.nl/wp-content/uploads/2011/06/VPN-on-iOS-4.png"><img src="http://kitara.nl/wp-content/uploads/2011/06/VPN-on-iOS-4-341x512.png" alt="" title="VPN on iOS, 4" width="341" height="512" class="alignnone size-medium wp-image-5572" /></a></p>
<p>Fill out the screen below...</p>
<p><a href="http://kitara.nl/wp-content/uploads/2011/06/VPN-on-iOS-5.png"><img src="http://kitara.nl/wp-content/uploads/2011/06/VPN-on-iOS-5-341x512.png" alt="" title="VPN on iOS, 5" width="341" height="512" class="alignnone size-medium wp-image-5573" /></a></p>
<ul>
<li><strong>1.</strong> add your own fancy description.</li>
<li><strong>2.</strong> add the IP or Host of your FRITZ!Box WAN connection.</li>
<li><strong>3.</strong> add YOUR_USERNAME.</li>
<li><strong>4.</strong> add YOUR_MAIL_ADDRESS.</li>
<li><strong>5.</strong> add YOUR_SHARED_PASSWORD.</li>
</ul>
<p>To setup a FRITZ!Box router check out the following, it might help you getting started.</p>
<p><a href="http://kitara.nl/2011/06/22/how-to-configure-vpn-on-your-fritzbox-7340/" title="How to configure VPN on your FRITZ!Box 7340" >How to configure VPN on your FRITZ!Box 7340</a></p>
]]></content:encoded>
			<wfw:commentRss>http://mariusvw.com/2011/06/22/how-to-make-a-vpn-connection-with-ios-on-your-ipod-or-iphone-to-a-fritzbox/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

