<?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>Leben des wolf-u.li &#187; Smartphone</title>
	<atom:link href="http://wolf-u.li/tag/smartphone/feed/" rel="self" type="application/rss+xml" />
	<link>http://wolf-u.li</link>
	<description>This and That.</description>
	<lastBuildDate>Thu, 29 Jul 2010 15:42:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>		<item>
		<title>Entfernung der Erinnerungen bzw. Alarme von Geburtstagen und Jahrestagen in Outlook per VBA</title>
		<link>http://wolf-u.li/3311/entfernung-der-erinnerungen-bzw-alarme-von-geburtstagen-und-jahrestagen-in-outlook/</link>
		<comments>http://wolf-u.li/3311/entfernung-der-erinnerungen-bzw-alarme-von-geburtstagen-und-jahrestagen-in-outlook/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 00:01:14 +0000</pubDate>
		<dc:creator>Uli</dc:creator>
				<category><![CDATA[Infotech]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Smartphone]]></category>
		<category><![CDATA[Visual Basic for Applications]]></category>

		<guid isPermaLink="false">http://wolf-u.li/?p=3311</guid>
		<description><![CDATA[Seit Jahren gehen mir die automatisch von Outlook erstellten Erinnerungen f&#252;r Geburtstage und Jahrestage auf den Keks, da diese in der Standardeinstellung um 23:45 Uhr ausgel&#246;st werden. Da man doch ab und zu mal um diese Uhrzeit schon schlafen geht, habe ich mich entschlossen alle Erinnerungen per VBA abschalten zu lassen.

Wie &#252;blich findet man nix [...]]]></description>
			<content:encoded><![CDATA[<p>Seit Jahren gehen mir die automatisch von Outlook erstellten Erinnerungen f&#252;r Geburtstage und Jahrestage auf den Keks, da diese in der Standardeinstellung um 23:45 Uhr ausgel&#246;st werden. Da man doch ab und zu mal um diese Uhrzeit schon schlafen geht, habe ich mich entschlossen alle Erinnerungen per VBA abschalten zu lassen.<br />
<span id="more-3311"></span><br />
Wie &#252;blich findet man nix auf die schnelle, wenn mans sucht, daher hier der Code, damit ich nicht mehr suchen muss <img src='http://wolf-u.li/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Selbst geschrieben und grad ausprobiert, funktioniert einwandfrei.</p>
<div class="wolfuliannouncement">Die folgenden Schritte sind nur f&#252;r Experten empfohlen. Es kann schief gehen! Ich &#252;bernehme keinerlei Verantwortung f&#252;r die eventuelle Datenverluste, brennende Computer oder sonstige jegliche Probleme.</div>
<div class="igBar"><span id="lcode-2"><a href="#" onclick="javascript:showPlainTxt('code-2'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-2">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Sub RemoveReminderOfAllBirthdayAndAnniversary<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; Set myOlApp = New Outlook.<span style="">Application</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; Set myNameSpace = myOlApp.<span style="">GetNamespace</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#CC0000;">"MAPI"</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; Set myFolder = myNameSpace.<span style="">GetDefaultFolder</span><span style="color:#006600; font-weight:bold;">&#40;</span>olFolderCalendar<span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; Set myItems = myFolder.<span style="">Items</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; For i = myFolder.<span style="">Items</span>.<span style="">Count</span> To <span style="color:#800000;color:#800000;">1</span> Step -<span style="color:#800000;color:#800000;">1</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; If InStr<span style="color:#006600; font-weight:bold;">&#40;</span>myItems<span style="color:#006600; font-weight:bold;">&#40;</span>i<span style="color:#006600; font-weight:bold;">&#41;</span>.<span style="">Subject</span>, <span style="color:#CC0000;">"Geburtstag"</span><span style="color:#006600; font-weight:bold;">&#41;</span>&gt; <span style="color:#800000;color:#800000;">0</span> Or InStr<span style="color:#006600; font-weight:bold;">&#40;</span>myItems<span style="color:#006600; font-weight:bold;">&#40;</span>i<span style="color:#006600; font-weight:bold;">&#41;</span>.<span style="">Subject</span>, <span style="color:#CC0000;">"Jahrestag"</span><span style="color:#006600; font-weight:bold;">&#41;</span>&gt; <span style="color:#800000;color:#800000;">0</span> Then</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; myItems<span style="color:#006600; font-weight:bold;">&#40;</span>i<span style="color:#006600; font-weight:bold;">&#41;</span>.<span style="">ReminderSet</span> = False</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; myItems<span style="color:#006600; font-weight:bold;">&#40;</span>i<span style="color:#006600; font-weight:bold;">&#41;</span>.<span style="">Save</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; End If</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; Next</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">End Sub </div>
</li>
</ol>
</div>
</div>
</div>
<p>
Eingef&#252;gt wird dieser ganz einfach:</p>
<ul>
<li><strong>Tempor&#228;r</strong>: Outlook &#246;ffnen, Tastenkombination ALT+F11 dr&#252;cken, auf "DieseOutlookSitzung"/"ThisOutlookSession" doppelt klicken. Dort Code einf&#252;gen und einmal auf den Pfeil in der Men&#252;leiste dr&#252;cken.</li>
<li><strong>Dauerhaft</strong>: Outlook &#246;ffnen, Tastenkombination ALT+F11 dr&#252;cken, "Einf&#252;gen"->Modul w&#228;hlen. Dort Code einf&#252;gen und dann auf den Pfeil in der Men&#252;leiste dr&#252;cken.</li>
</ul>
<p>Sch&#246;n w&#228;re noch nen Knopf f&#252;r diese Funktion in der Men&#252;leiste, aber ich habe ihn bis jetzt nicht gebraucht <img src='http://wolf-u.li/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<hr /><small><center>&copy; 2005-2009 by <a href='http://wolf-u.li/'>Uli Wolf</a> - This Content is distributed under the <a href='http://wolf-u.li/pwnd-faq/'>Creative Commons License</a><br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites without attribution to the author and notification of the author breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:  d2a576b5311479d89eff39b7ca886f6b)</center></small>]]></content:encoded>
			<wfw:commentRss>http://wolf-u.li/3311/entfernung-der-erinnerungen-bzw-alarme-von-geburtstagen-und-jahrestagen-in-outlook/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Nokia Ovi Maps jetzt kostenlos und mit Fu&#223;g&#228;ngernavigation</title>
		<link>http://wolf-u.li/3285/nokia-ovi-maps-jetzt-kostenlos-und-mit-fussgaengernavigation/</link>
		<comments>http://wolf-u.li/3285/nokia-ovi-maps-jetzt-kostenlos-und-mit-fussgaengernavigation/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 12:20:38 +0000</pubDate>
		<dc:creator>Uli</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Nokia E71]]></category>
		<category><![CDATA[Smartphone]]></category>

		<guid isPermaLink="false">http://wolf-u.li/?p=3285</guid>
		<description><![CDATA[Soeben habe ich eine Mail erhalten, dass Nokia Ovi Maps nun gratis sei und dass die Fu&#223;g&#228;ngernavigation nun ebenfalls als kostenloses Feature dabei ist.
Die Ank&#252;ndigung gibts hier zu lesen.
&#169; 2005-2009 by Uli Wolf - This Content is distributed under the Creative Commons License This feed is for personal, non-commercial use only.  The use of [...]]]></description>
			<content:encoded><![CDATA[<p>Soeben habe ich eine Mail erhalten, dass Nokia Ovi Maps nun gratis sei und dass die Fu&#223;g&#228;ngernavigation nun ebenfalls als kostenloses Feature dabei ist.</p>
<p>Die Ank&#252;ndigung gibts <a href="http://maps.nokia.com/explore-services/ovi-maps">hier</a> zu lesen.</p>
<hr /><small><center>&copy; 2005-2009 by <a href='http://wolf-u.li/'>Uli Wolf</a> - This Content is distributed under the <a href='http://wolf-u.li/pwnd-faq/'>Creative Commons License</a><br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites without attribution to the author and notification of the author breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:  d2a576b5311479d89eff39b7ca886f6b)</center></small>]]></content:encoded>
			<wfw:commentRss>http://wolf-u.li/3285/nokia-ovi-maps-jetzt-kostenlos-und-mit-fussgaengernavigation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shortcuts bzw. Codes f&#252;r das Nokia E71</title>
		<link>http://wolf-u.li/2991/shortcuts-bzw-codes-fuer-das-nokia-e71/</link>
		<comments>http://wolf-u.li/2991/shortcuts-bzw-codes-fuer-das-nokia-e71/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 14:28:13 +0000</pubDate>
		<dc:creator>Uli</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Nokia E71]]></category>
		<category><![CDATA[Smartphone]]></category>

		<guid isPermaLink="false">http://wolf-u.li/?p=2991</guid>
		<description><![CDATA[Seit einiger Zeit nutze ich ein paar Shortcuts auf dem Nokia E71 relativ intensiv, da diese wirklich Zeit sparen. Da ein Kumpel gerade erst vor kurzem ein bisschen Probleme mit der Bedienung hatte, m&#246;chte ich ein paar von diesen hier kurz vorstellen.

Generell / Heute-Bildschirm:

Bluetooth ein-/ausschalten:
* lange dr&#252;cken

Broser starten:
0 lange dr&#252;cken

Umschalten zwischen Profil Allgemein und Profil [...]]]></description>
			<content:encoded><![CDATA[<p>Seit einiger Zeit nutze ich ein paar Shortcuts auf dem Nokia E71 relativ intensiv, da diese wirklich Zeit sparen. Da ein Kumpel gerade erst vor <a href="http://techcrawler.riedme.de/?p=2099">kurzem</a> ein bisschen Probleme mit der Bedienung hatte, m&#246;chte ich ein paar von diesen hier kurz vorstellen.<br />
<span id="more-2991"></span></p>
<p>Generell / Heute-Bildschirm:</p>
<ul>
<li>Bluetooth ein-/ausschalten:<br />
<blockquote><p><code>*</code> lange dr&#252;cken</p></blockquote>
</li>
<li>Broser starten:<br />
<blockquote><p><code>0</code> lange dr&#252;cken</p></blockquote>
</li>
<li>Umschalten zwischen Profil Allgemein und Profil Lautlos:<br />
<blockquote><p><code>#</code> lange dr&#252;cken</p></blockquote>
</li>
<li>Numlock aktivieren/deaktivieren:<br />
<blockquote><p>Fn-Taste (ganz links unten) zweimal hintereinander dr&#252;cken</p></blockquote>
</li>
<li>Capslock aktivieren/deaktivieren:<br />
<blockquote><p>Shift-Taste zweimal hintereinander dr&#252;cken</p></blockquote>
</li>
<li>Ungelesene Nachrichten vorlesen:<br />
<blockquote><p>Linken Softkey lange dr&#252;cken</p></blockquote>
</li>
<li>Programme abschie&#223;en:<br />
<blockquote><p>Home-Key lange dr&#252;cken, Applikation ausw&#228;hlen und L&#246;schentaste (Backspace) dr&#252;cken</p></blockquote>
</li>
<li>Alle Datenverbindungen beenden:<br />
<blockquote><p>Auflegen-Taste auf dem Heute-Bildschirm lange dr&#252;cken</p></blockquote>
</li>
<li>Mute im Gespr&#228;ch:<br />
<blockquote><p>Mittlere Taste an der Seite dr&#252;cken</p></blockquote>
</li>
</ul>
<p>In Notizen und Messaging:</p>
<ul>
<li>Optionen wie Sprache, Autovervollst&#228;ndigung und Eingabem&#246;glichkeiten:<br />
<blockquote><p>Fn + Leertaste dr&#252;cken</p></blockquote>
</li>
<li>Eingabesprache wechseln:<br />
<blockquote><p>Shift+Alt dr&#252;cken</p></blockquote>
</li>
<li>Autovervollst&#228;ndigung ein-/ausschalten:<br />
<blockquote><p>Fn+Strg und dann Shift dr&#252;cken</p></blockquote>
</li>
</ul>
<p>Im <strong>Browser:</strong></p>
<ul>
<li>Fn+0 - Homepage</li>
<li>Fn+1 - Bookmarks</li>
<li>Fn+2 - Text suchen</li>
<li>Fn+3 - Zur&#252;ck (Vorhergehende Seite)</li>
<li>Fn+8 - Seiten&#252;bersicht</li>
<li>Fn+9 - Webaddresse eingeben</li>
<li>Fn+* - Zoom erh&#246;hen</li>
<li>Fn+# - Zoom senken</li>
<li>Backspace - Fenster schlie&#223;en</li>
</ul>
<p>In der <strong>Gallerie</strong>:</p>
<ul>
<li>Gr&#252;ne Taste um Bild zu versenden</li>
<li>Fn + * - Vollbild</li>
<li>Fn + 7 - Reinzoomen, doppelt dr&#252;cken f&#252;r Vollbild</li>
<li>Fn + 4 - Um nach links zu Scrollen, wenn gezoomt wurde</li>
<li>Fn + 5 - Reinzoomen</li>
<li>Fn + 3 - Nach rechts rotieren</li>
<li>Fn + 2 - Um nach oben zuscrollen, wenn gezoomt wurde</li>
<li>Fn + 1 - Nach links rotieren</li>
<li>Fn + 0 - Rauszoomen</li>
</ul>
<p>In der <strong>Kamera</strong>:</p>
<ul>
<li>T - fokussieren</li>
</ul>
<p>Im <strong>Real-Player</strong>:</p>
<ul>
<li>Fn + 2 - Vollbild</li>
<li>Hoch auf der 4-Wege-Taste - Vorspulen</li>
<li>Runter auf der 4-Wege-Taste - Zur&#252;ckspulen</li>
</ul>
<p>Hier noch einige hilfreiche Codes:</p>
<ul>
<li>IMEI anzeigen:<br />
<blockquote><p><code>*#06#</code></p></blockquote>
</li>
<li>Auf Werkseinstellungen zur&#252;cksetzen:<br />
<blockquote><p><code>*#7370#</code></p></blockquote>
</li>
<li>Bluetooth-MAC-Adresse anzeigen:<br />
<blockquote><p><code>*#2820#</code></p></blockquote>
</li>
<li><a href="http://wolf-u.li/3106/firmwarereset-bzw-hardreset-beim-nokia-e71/">Hardreset durchf&#252;hren</a>:<br />
<blockquote><p><code>*#62209526#</code></p></blockquote>
</li>
<li>Firmwareversion anzeigen:<br />
<blockquote><p><code>*#0000#</code></p></blockquote>
</li>
</ul>
<hr /><small><center>&copy; 2005-2009 by <a href='http://wolf-u.li/'>Uli Wolf</a> - This Content is distributed under the <a href='http://wolf-u.li/pwnd-faq/'>Creative Commons License</a><br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites without attribution to the author and notification of the author breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:  d2a576b5311479d89eff39b7ca886f6b)</center></small>]]></content:encoded>
			<wfw:commentRss>http://wolf-u.li/2991/shortcuts-bzw-codes-fuer-das-nokia-e71/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Anzeige der aktuellen Uhrzeit auf dem Standby-Bildschirm des Nokia E71</title>
		<link>http://wolf-u.li/3126/anzeige-der-aktuellen-uhrzeit-auf-dem-standby-bildschirm-des-nokia-e71/</link>
		<comments>http://wolf-u.li/3126/anzeige-der-aktuellen-uhrzeit-auf-dem-standby-bildschirm-des-nokia-e71/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 11:55:18 +0000</pubDate>
		<dc:creator>Uli</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Nokia E71]]></category>
		<category><![CDATA[Smartphone]]></category>

		<guid isPermaLink="false">http://wolf-u.li/?p=3126</guid>
		<description><![CDATA[M&#246;chte man beim Nokia E71, wie schon in &#228;lteren Nokia-Modellen, auf dem Standby-Bildschirm die aktuelle Uhrzeit anzeigen lassen, so muss man im gew&#252;nschten Profil die Option "Blinkende LED" deaktivieren. Sollte die Uhrzeit dann auf dem Standby-Bildschirm nicht weiterschreiten (freeze zum Zeitpunkt des Standby), so steht der Energiesparmodus falsch. &#220;ber Men&#252; -> System -> Themen -> [...]]]></description>
			<content:encoded><![CDATA[<p>M&#246;chte man beim Nokia E71, wie schon in &#228;lteren Nokia-Modellen, auf dem Standby-Bildschirm die aktuelle Uhrzeit anzeigen lassen, so muss man im gew&#252;nschten Profil die Option "Blinkende LED" deaktivieren. Sollte die Uhrzeit dann auf dem Standby-Bildschirm nicht weiterschreiten (freeze zum Zeitpunkt des Standby), so steht der Energiesparmodus falsch. &#220;ber <em>Men&#252;</em> -> <em>System</em> -> <em>Themen</em> -> <em>Energiesparmodus</em> muss dieser auf "<em>Animation</em>" gestellt werden.<br />
Vorsicht aber: Der Energiebedarf des E71 steigt damit! Die Uhrzeit kann man bei Bedarf immer durch langes Dr&#252;cken der 4-Wege Taste anzeigen lassen.</p>
<hr /><small><center>&copy; 2005-2009 by <a href='http://wolf-u.li/'>Uli Wolf</a> - This Content is distributed under the <a href='http://wolf-u.li/pwnd-faq/'>Creative Commons License</a><br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites without attribution to the author and notification of the author breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:  d2a576b5311479d89eff39b7ca886f6b)</center></small>]]></content:encoded>
			<wfw:commentRss>http://wolf-u.li/3126/anzeige-der-aktuellen-uhrzeit-auf-dem-standby-bildschirm-des-nokia-e71/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Nokia Energy Profiler als Batterie Monitor auf dem Nokia E71</title>
		<link>http://wolf-u.li/3124/nokia-energy-profiler-als-batterie-monitor-auf-dem-nokia-e71/</link>
		<comments>http://wolf-u.li/3124/nokia-energy-profiler-als-batterie-monitor-auf-dem-nokia-e71/#comments</comments>
		<pubDate>Sat, 01 Aug 2009 12:56:53 +0000</pubDate>
		<dc:creator>Uli</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Monitoring]]></category>
		<category><![CDATA[Nokia E71]]></category>
		<category><![CDATA[Smartphone]]></category>
		<category><![CDATA[Symbian]]></category>

		<guid isPermaLink="false">http://wolf-u.li/?p=3124</guid>
		<description><![CDATA[Soeben habe ich eine Applikation gesucht, die mir ein wenig Auskunft &#252;ber den momentanen Batterieverbrauch des Telefons zeigen kann. Gefunden habe ich eine Applikation die viel zu viel kann, aber vielleicht trotzdem eine Erw&#228;hnung wert ist. Gemeint ist der Nokia Energy Profiler, welcher nicht einfach "nur" den Verlauf der Batterie aufnehmen, sondern auch noch die [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wolf-u.li/download-manager.php?id=50"><img src="http://wolf-u.li/upload/2009/08/3124-energyprofiler_1_2.png" alt="Nokia Energy Profiler 1.2 Download" title="Nokia Energy Profiler 1.2 Download" width="175" height="175" class="alignright size-full wp-image-3125" /></a>Soeben habe ich eine Applikation gesucht, die mir ein wenig Auskunft &#252;ber den momentanen Batterieverbrauch des Telefons zeigen kann. Gefunden habe ich eine Applikation die viel zu viel kann, aber vielleicht trotzdem eine Erw&#228;hnung wert ist. Gemeint ist der <em><a href="http://www.forum.nokia.com/info/sw.nokia.com/id/324866e9-0460-4fa4-ac53-01f0c392d40f/Nokia_Energy_Profiler.html">Nokia Energy Profiler</a></em>, welcher nicht einfach "nur" den Verlauf der Batterie aufnehmen, sondern auch noch die Handy &#038; WLAN-Verbindungen sowie die Prozessor- und Hauptspeicherauslastung &#252;berwachen kann. Genialerweise mit eingebauter Screenshot-Funktion (.PNG) und einem Export in das CSV-Format. Die gesamte &#220;bersicht findet sich <a href="http://www.forum.nokia.com/Technology_Topics/Application_Quality/Power_Management/Nokia_Energy_Profiler_Quick_Start.xhtml">hier</a>, f&#252;r den <a href="http://www.forum.nokia.com/info/sw.nokia.com/id/324866e9-0460-4fa4-ac53-01f0c392d40f/Nokia_Energy_Profiler.html">Download</a> ben&#246;tigt man einen Nokia-Forum-Account.</p>
<hr /><small><center>&copy; 2005-2009 by <a href='http://wolf-u.li/'>Uli Wolf</a> - This Content is distributed under the <a href='http://wolf-u.li/pwnd-faq/'>Creative Commons License</a><br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites without attribution to the author and notification of the author breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:  d2a576b5311479d89eff39b7ca886f6b)</center></small>]]></content:encoded>
			<wfw:commentRss>http://wolf-u.li/3124/nokia-energy-profiler-als-batterie-monitor-auf-dem-nokia-e71/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Firmwareupdate f&#252;r das Nokia E71 auf 300.21.012</title>
		<link>http://wolf-u.li/3101/firmwareupdate-fuer-das-nokia-e71-auf-30021012/</link>
		<comments>http://wolf-u.li/3101/firmwareupdate-fuer-das-nokia-e71-auf-30021012/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 21:37:21 +0000</pubDate>
		<dc:creator>Uli</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Firmware]]></category>
		<category><![CDATA[Nokia E71]]></category>
		<category><![CDATA[Smartphone]]></category>
		<category><![CDATA[Symbian]]></category>
		<category><![CDATA[Update]]></category>

		<guid isPermaLink="false">http://wolf-u.li/?p=3101</guid>
		<description><![CDATA[Heute ist das Firmwareupdate 300.21.012 f&#252;r das Nokia E71 erschienen. Es ersetzt die Version 210.21.006 und beinhaltet folgenden Features:

Mail: Mail For Exchange verbessert
Musik: Internet Radio hinzugef&#252;gt
Andere Verbesserungen:

Anwendung My Nokia und Easy-Dialing hinzugef&#252;gt
USB-Flashing verbessert
Erweiterte Bedienungsfreundlichkeit




Wie immer ist das Update &#252;ber den Nokia Updater verf&#252;gbar, zuvor sollten aber die Daten gesichert werden und die Speicherkarte sowie das [...]]]></description>
			<content:encoded><![CDATA[<p>Heute ist das <a href="http://europe.nokia.com/get-support-and-software/download-software/e71-update-phone#">Firmwareupdate</a> 300.21.012 f&#252;r das Nokia E71 erschienen. Es ersetzt die Version <a href="http://wolf-u.li/2820/firmwareupdate-fuer-das-nokia-e71-auf-21021006/">210.21.006</a> und beinhaltet folgenden Features:</p>
<blockquote><ul>
<li><strong>Mail</strong>: Mail For Exchange verbessert</li>
<li><strong>Musik</strong>: Internet Radio hinzugef&#252;gt</li>
<li><strong>Andere Verbesserungen</strong>:
<ul>
<li>Anwendung <em>My Nokia</em> und Easy-Dialing hinzugef&#252;gt</li>
<li>USB-Flashing verbessert</li>
<li>Erweiterte Bedienungsfreundlichkeit</li>
</ul>
</li>
</ul>
</blockquote>
<p>Wie immer ist das Update &#252;ber den <a href="http://www.nokia.com/softwareupdates">Nokia Updater</a> verf&#252;gbar, zuvor sollten aber die Daten gesichert werden und die Speicherkarte sowie das Handy entschl&#252;sselt werden.</p>
<p><strong>Update:</strong><br />
Hier das volle Changelog auf Englisch:</p>
<blockquote><p>
  <strong> NEW FUNTIONALITIES: </strong></p>
<ul>
<li> Mail for Exchange 2.9 </li>
<li> Numonyx USB Flashing support </li>
<li> Gimlet 5.2 (v 9.5.2.66) </li>
<li> Turkish SMS Support </li>
<li> Support for Rapido Yawe 1.15 </li>
<li> Myspace, Youtube and Facebook support (NA for HK and Taiwan variants) </li>
<li> User experience improvements </li>
<li> Increased robustness of the Home Key functionality. This helps avoid the problem of Home key not opening the menu.</li>
</ul>
<p>  <strong> CHANGES AND IMPROVEMENTS: </strong></p>
<ul>
<li> Improved Switch application functionality </li>
<li> Internet Radio 1.15 Increased Functionality and Stability </li>
<li> VoIP upgrade Improved functionality and stability </li>
<li> Download Client 3.2 Greater stability and improved functionality </li>
<li> Email Setup Wizard Update Supports Gimlet 5.2 </li>
<li> Simplified MMS Notification handling support </li>
<li> Support for conference numbers longer than 24 digits </li>
<li> Improvements in Browser for seamless YouTube support </li>
<li> Language menu can be accessed when Chinese Language is used </li>
<li> Bug fixes for the NokiaPC Internet AccessApplication </li>
<li> Improved BT headset connectivity </li>
<li> Many functionality and Stability improvements in MfE.</li>
</ul>
<p>  <strong> GENERAL </strong></p>
<ul>
<li> Stability and functionality improvements </li>
<li> Increased robustness in handling SMS </li>
<li> Updated Time zones </li>
<li> Updated Operator names database </li>
<li> Localisation improvements </li>
<li> Updated Startup settings </li>
<li> Security Updates and vulnerability fixes </li>
<li> Phone not suspending packet data connection when receiving call Fixed. </li>
<li> Many bug fixes for MyNokia feature. </li>
<li> Minor audio related bugs fixed </li>
<li> Updated helps</li>
</ul>
<p>  <strong> BROWSER </strong></p>
<ul>
<li> Minor stability improvements</li>
</ul>
<p>  <strong> CALL HANDLING </strong></p>
<ul>
<li> Minor improvements in Call handling and quality</li>
</ul>
<p>  <strong> CALENDAR </strong></p>
<ul>
<li> Stability and Minor Functionality improvements</li>
</ul>
<p>  <strong> CONNECTIVITY </strong></p>
<ul>
<li> WLAN functionality Improvements </li>
<li> Fix to prevent Wifi Certification issues when Wifi alliance moves to Win 2008 as the test server </li>
<li> Fix for the one way audio problem seen in Cisco VoIP client </li>
<li> Memory leak fixes</li>
</ul>
<p>  <strong> CONTACTS/PHONEBOOK </strong></p>
<ul>
<li> Minor UI Improvements </li>
<li> Stability and functionality improvements for search functionality</li>
</ul>
<p>  <strong> EMAIL </strong></p>
<ul>
<li> Mail for Exchange upgraded from 2.7.22 to 2.9.158 </li>
<li> Gimlet updated to v5 </li>
<li> Email setup wizard updated </li>
<li> Support for Exchange Server 2007 in MfE </li>
<li> Many functionality and stability improvements in MfE </li>
<li> Robust Synchronisation of Calendar and email items.</li>
</ul>
<p>  <strong> INTERNET RADIO </strong></p>
<ul>
<li> Improved functionality </li>
<li> Increased application stability</li>
</ul>
<p>  <strong> LOCATION/GPS </strong></p>
<ul>
<li> Increased A-GPS stability </li>
<li> Better stability in location services.</li>
</ul>
<p>  <strong> MESSAGING </strong></p>
<ul>
<li> Usability improvements</li>
</ul>
<p>  <strong>SMS </strong></p>
<ul>
<li> Support for receiving more SMSs. Allows more than 4000 messages in inbox.</li>
</ul>
<p>  <strong> SWITCH APPLICATION </strong></p>
<ul>
<li> Application updates and many stability and functionality improvements</li>
</ul>
<p>  <strong> VOIP / SIP </strong></p>
<ul>
<li> Many Usability, stability and functionality improvements </li>
</ul>
</blockquote>
<hr /><small><center>&copy; 2005-2009 by <a href='http://wolf-u.li/'>Uli Wolf</a> - This Content is distributed under the <a href='http://wolf-u.li/pwnd-faq/'>Creative Commons License</a><br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites without attribution to the author and notification of the author breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:  d2a576b5311479d89eff39b7ca886f6b)</center></small>]]></content:encoded>
			<wfw:commentRss>http://wolf-u.li/3101/firmwareupdate-fuer-das-nokia-e71-auf-30021012/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Liste aller Produktcodes des Nokia E71-1</title>
		<link>http://wolf-u.li/2912/liste-aller-produktcodes-des-nokia-e71-1/</link>
		<comments>http://wolf-u.li/2912/liste-aller-produktcodes-des-nokia-e71-1/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 06:44:06 +0000</pubDate>
		<dc:creator>Uli</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Firmware]]></category>
		<category><![CDATA[Nokia E71]]></category>
		<category><![CDATA[Smartphone]]></category>

		<guid isPermaLink="false">http://wolf-u.li/?p=2912</guid>
		<description><![CDATA[Bei Firmwareupdates ist es immer eine Gl&#252;ckssache, ob man bei den bereits zugelassenen Produktcodes dabei ist. Da es die M&#246;glichkeit gibt, diesen unter tempor&#228;rem Garantieverlust abzu&#228;ndern (Stichwort "NSS"), findet sich unten eine &#220;bersicht der m&#246;glichen Produktcodes des Nokia E71-1. Diese Liste ist stelle ich ohne Garantie auf Richtigkeit bereit und dient lediglich zu Informationszwecken.




Produktcode
Region
Ausf&#252;hrung




Produktcode
Region
Ausf&#252;hrung




0557206
EURO A [...]]]></description>
			<content:encoded><![CDATA[<p>Bei Firmwareupdates ist es immer eine Gl&#252;ckssache, ob man bei den bereits zugelassenen Produktcodes dabei ist. Da es die M&#246;glichkeit gibt, diesen unter tempor&#228;rem Garantieverlust abzu&#228;ndern (Stichwort "NSS"), findet sich unten eine &#220;bersicht der m&#246;glichen Produktcodes des Nokia E71-1. Diese Liste ist stelle ich ohne Garantie auf Richtigkeit bereit und dient lediglich zu Informationszwecken.<br />
<span id="more-2912"></span></p>
<table>
<thead>
<tr>
<th>Produktcode</th>
<th>Region</th>
<th>Ausf&#252;hrung</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Produktcode</th>
<th>Region</th>
<th>Ausf&#252;hrung</th>
</tr>
</tfoot>
<tbody>
<tr>
<td>0557206</td>
<td>EURO A LUXEMBURG</td>
<td>White Steel</td>
</tr>
<tr>
<td>0552257</td>
<td>EURO A LUXEMBURG</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0553619</td>
<td>CTR EURO K1 RU</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0558653</td>
<td>CTR BRAZIL</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0558654</td>
<td>CTR BRAZIL</td>
<td>White Steel</td>
</tr>
<tr>
<td>0558783</td>
<td>EURO B1 FINLAND</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0558784</td>
<td>EURO B2 DENMARK</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0558785</td>
<td>EURO C GERMANY</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0558786</td>
<td>EURO C AUSTRIA ALS ON</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0558788</td>
<td>EURO E1 SPAIN</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0558789</td>
<td>EURO E2 PORTUGAL</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0558790</td>
<td>EURO F TURKEY</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0558791</td>
<td>EURO G1 CZECH</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0558792</td>
<td>EURO G2 SLOVAKIA</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0558794</td>
<td>EURO N ROMANIA</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0558795</td>
<td>EURO H GREECE</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0558796</td>
<td>EURO I HUNGARY</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0558797</td>
<td>EURO J POLAND</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0558842</td>
<td>EURO K1 CIS</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0558843</td>
<td>EURO K2 LATVIA</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0558844</td>
<td>EURO K1 UA UKRAINA</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0559420</td>
<td>EURO D SWITZERLAND ALS ON</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0559570</td>
<td>EURO Y ISRAEL</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0559592</td>
<td>EURO D FRANCE</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0559565</td>
<td>EURO K1 MD MOLDOVA</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0559566</td>
<td>EURO L SLOVENIA</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0559567</td>
<td>EURO L SLOVENIA ALS ON</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0559568</td>
<td>EURO M SWITZERLAND IT ALS ON</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0559569</td>
<td>EURO M ITALY</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0560637</td>
<td>APAC-S SOUTH ASIA</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0560652</td>
<td>APAC-P TAIWAN</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0560653</td>
<td>APAC-Q HK</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0560654</td>
<td>APAC-R SINGAPORE</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0560655</td>
<td>APAC-U VIETNAM</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0560656</td>
<td>APAC-R INDONESIA TA</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0560657</td>
<td>APAC-S AUSTRALIA N342</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0560658</td>
<td>APAC-S NZ NZ276</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0560659</td>
<td>APAC-S PHILS NTC/TA</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0560660</td>
<td>APAC-T THAILAND</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0561069</td>
<td>EURO B1 FINLAND</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561070</td>
<td>EURO B2 DENMARK</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561088</td>
<td>CTR EURO C</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561090</td>
<td>EURO C AUSTRIA ALS ON</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561091</td>
<td>EURO D FRANCE</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561093</td>
<td>EURO D SWITZERLAND FR ALS</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561094</td>
<td>EURO E1</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561097</td>
<td>EURO E2 PORTUGAL</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561098</td>
<td>EURO F TURKEY</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561100</td>
<td>EURO G1 CZECH</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561153</td>
<td>EURO G2 SLOVAKIA</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561154</td>
<td>EURO N ROMANIA</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561155</td>
<td>EURO H GREECE</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561156</td>
<td>EURO I HUNGARY</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561157</td>
<td>EURO J POLAND</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561158</td>
<td>CTR EURO K1 RU</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561160</td>
<td>EURO K1 CIS</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561162</td>
<td>EURO K1 UA UKRAINA</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561163</td>
<td>EURO K1 MD MOLDOVA</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561164</td>
<td>EURO L SLOVENIA</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561165</td>
<td>EURO L SLOVENIA ALS ON</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561182</td>
<td>EURO M ITALY</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561183</td>
<td>EURO M SWITZERLAND IT ALS ON</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561184</td>
<td>EURO Y ISRAEL</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561923</td>
<td>APAC-P TAIWAN</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561924</td>
<td>APAC-Q HK</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561925</td>
<td>APAC-R SINGAPORE</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561926</td>
<td>APAC-U VIETNAM</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561927</td>
<td>APAC-S SOUTH ASIA</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561928</td>
<td>APAC-R INDONESIA TA</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561929</td>
<td>APAC-S AUSTRALIA N342</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561930</td>
<td>APAC-S NZ NZ276</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561932</td>
<td>APAC-T THAILAND</td>
<td>White Steel</td>
</tr>
<tr>
<td>0561931</td>
<td>APAC-S PHILS NTC/TA</td>
<td>White Steel</td>
</tr>
<tr>
<td>0563937</td>
<td>CTR APAC-S BANGLADESH</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0563938</td>
<td>CTR APAC-S BANGLADESH</td>
<td>White Steel</td>
</tr>
<tr>
<td>0566234</td>
<td>CTR APAC-S INDIA</td>
<td>White Steel</td>
</tr>
<tr>
<td>0566235</td>
<td>CTR APAC-S INDIA</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0566976</td>
<td>UAE MEA14_B1 (URDU, FARSI and ARABIC)</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0566977</td>
<td>UAE MEA14_B1 (URDU, FARSI and ARABIC)</td>
<td>White Steel</td>
</tr>
<tr>
<td>0567042</td>
<td>CTR EURO A  BENELUX NL</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0567044</td>
<td>CTR EURO A MALTA</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0567045</td>
<td>EURO A UK/IRELAND</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0567046</td>
<td>CTR EURO B2 ICELAND</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0567047</td>
<td>CTR APAC-U KAMBODIA/LAOS</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0567048</td>
<td>CTR EURO A BENELUX NL</td>
<td>White Steel</td>
</tr>
<tr>
<td>0567049</td>
<td>CTR EURO A MALTA</td>
<td>White Steel</td>
</tr>
<tr>
<td>0567050</td>
<td>EURO A UK</td>
<td>White Steel</td>
</tr>
<tr>
<td>0567051</td>
<td>CTR EURO B2 ICELAND</td>
<td>White Steel</td>
</tr>
<tr>
<td>0567052</td>
<td>CTR APACU KAMBODIA/LAOS</td>
<td>White Steel</td>
</tr>
<tr>
<td>0567905</td>
<td>CTR EURO D BENELUX FR</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0567907</td>
<td>CTR EURO D BENELUX</td>
<td>White Steel</td>
</tr>
<tr>
<td>0567909</td>
<td>CTR BELARUS</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0567909</td>
<td>CTR BELARUS</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0567908</td>
<td>CTR BELARUS</td>
<td>White Steel</td>
</tr>
<tr>
<td>0567915</td>
<td>CTR ESTONIA</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0567916</td>
<td>CTR ESTONIA</td>
<td>White Steel</td>
</tr>
<tr>
<td>0569276</td>
<td>CTR EURO K1 BULGARIA</td>
<td>Grey Steel</td>
</tr>
<tr>
<td>0569277</td>
<td>CTR EURO K1 BULGARIA</td>
<td>White Steel</td>
</tr>
</table>
<p>Quellen: <a href="http://blinkthinks.wordpress.com/2008/08/03/nokia-e71-euro-product-codes/">[1]</a> - <a href="http://nokiae71.wordpress.com/2008/08/04/product-codes-for-e71/">[2]</a> - <a href="http://blinkthinks.wordpress.com/2008/07/23/nokia-e71-asian-product-codes/">[3]</a></p>
<hr /><small><center>&copy; 2005-2009 by <a href='http://wolf-u.li/'>Uli Wolf</a> - This Content is distributed under the <a href='http://wolf-u.li/pwnd-faq/'>Creative Commons License</a><br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites without attribution to the author and notification of the author breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:  d2a576b5311479d89eff39b7ca886f6b)</center></small>]]></content:encoded>
			<wfw:commentRss>http://wolf-u.li/2912/liste-aller-produktcodes-des-nokia-e71-1/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Firmwareupdate f&#252;r das Nokia E71 auf 210.21.006</title>
		<link>http://wolf-u.li/2820/firmwareupdate-fuer-das-nokia-e71-auf-21021006/</link>
		<comments>http://wolf-u.li/2820/firmwareupdate-fuer-das-nokia-e71-auf-21021006/#comments</comments>
		<pubDate>Sun, 29 Mar 2009 17:58:48 +0000</pubDate>
		<dc:creator>Uli</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Firmware]]></category>
		<category><![CDATA[Nokia E71]]></category>
		<category><![CDATA[Smartphone]]></category>
		<category><![CDATA[Symbian]]></category>
		<category><![CDATA[Update]]></category>

		<guid isPermaLink="false">http://wolf-u.li/?p=2820</guid>
		<description><![CDATA[PaGo hat mich soeben darauf aufmerksam gemacht, dass f&#252;r das Nokia E71 und das Nokia E66 ein Firmwareupdate auf die Version 210.21.006 erschienen ist. Gegen&#252;ber 200.21.118 soll das Handy mal wieder stabiler laufen und es gab ein paar Stabilit&#228;tsverbesserungen bei den einzelnen Programmen. Zu der wichtigsten &#196;nderung geh&#246;rt jedoch sicherlich ein Fix f&#252;r die Messaging-Applikation, [...]]]></description>
			<content:encoded><![CDATA[<p>PaGo hat mich soeben darauf aufmerksam gemacht, dass f&#252;r das <a href="http://wolf-u.li/tag/nokia-e71/">Nokia E71</a> und das Nokia E66 ein Firmwareupdate auf die Version 210.21.006 erschienen ist. Gegen&#252;ber <a href="http://wolf-u.li/2464/major-firwareupdate-fuer-das-nokia-e71-auf-20021118/">200.21.118</a> soll das Handy mal wieder stabiler laufen und es gab ein paar Stabilit&#228;tsverbesserungen bei den einzelnen Programmen. Zu der wichtigsten &#196;nderung geh&#246;rt jedoch sicherlich ein Fix f&#252;r die Messaging-Applikation, welche jetzt gegen die <a href="https://berlin.ccc.de/~tobias/cos/s60-curse-of-silence-advisory.txt">Curse of Silence</a> gesch&#252;tzt sein sollte (Man sollte also updaten!)<br />
<span id="more-2820"></span><br />
Hier das <a href="http://nokiaaddict.com/2009/03/19/changelog-for-the-e71-firmware-v21021006/">Changelog</a>:</p>
<blockquote><p>- Support for Searching Hungarian Double Consonants, from Easy Dial and Phonebook<br />
- Reserved Homescreen Plug-in UIDs can now be given to partners<br />
<strong>General</strong><br />
- Stability and functionality improvements<br />
- Compliance with FM Radio band requirements for MEA/Tunisia<br />
<strong>Browser</strong><br />
- Minor stability improvements<br />
<strong>Messaging</strong><br />
- Remote Denial of Service vulnerability fixed.<br />
- Stability improvement in MMS.<br />
<strong>VOIP / SIP</strong><br />
- Minor stability improvements<br />
<strong>Calendar</strong><br />
- Stability and Minor Functionality improvement<br />
<strong>Camera</strong><br />
- New DCC files – Functionality improvement<br />
<strong>FS contacts</strong><br />
- Stability and functionality improvement<br />
<strong>Share Online</strong><br />
- Minor improvements in functionality.</p></blockquote>
<p>Das Update ist wie immer &#252;ber den <a href="http://www.nokia.com/softwareupdates">Nokia Updater</a> verf&#252;gbar, sofern es ungebrandet und aus Europa ist. Handys aus andere Quellen und von den Netzanbietern folgen in K&#252;rze.</p>
<hr /><small><center>&copy; 2005-2009 by <a href='http://wolf-u.li/'>Uli Wolf</a> - This Content is distributed under the <a href='http://wolf-u.li/pwnd-faq/'>Creative Commons License</a><br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites without attribution to the author and notification of the author breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:  d2a576b5311479d89eff39b7ca886f6b)</center></small>]]></content:encoded>
			<wfw:commentRss>http://wolf-u.li/2820/firmwareupdate-fuer-das-nokia-e71-auf-21021006/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Major-Firmwareupdate f&#252;r das Nokia E71 auf 200.21.118</title>
		<link>http://wolf-u.li/2464/major-firwareupdate-fuer-das-nokia-e71-auf-20021118/</link>
		<comments>http://wolf-u.li/2464/major-firwareupdate-fuer-das-nokia-e71-auf-20021118/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 13:13:26 +0000</pubDate>
		<dc:creator>Uli</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Firmware]]></category>
		<category><![CDATA[Nokia E71]]></category>
		<category><![CDATA[Smartphone]]></category>
		<category><![CDATA[Symbian]]></category>
		<category><![CDATA[Update]]></category>

		<guid isPermaLink="false">http://wolf-u.li/?p=2464</guid>
		<description><![CDATA[Vor etwa einer Woche hat Nokia ein Major-Update f&#252;r das Nokia E71 ver&#246;ffentlicht. Ich habe es gerade installiert und es funktioniert bis jetzt einwandfrei. Die Details finden sich hier und lauten wie folgt...

New functionalities in MCU SW version 200.21.118:
- Internet Radio application
- My Nokia application
- 3G power reduction for applications using keep-alive style messaging
- User [...]]]></description>
			<content:encoded><![CDATA[<p>Vor etwa einer Woche hat Nokia ein Major-Update f&#252;r das Nokia E71 ver&#246;ffentlicht. Ich habe es gerade installiert und es funktioniert bis jetzt einwandfrei. Die Details finden sich <a href="http://nokiaaddict.com/2009/01/12/nokia-e71-euro-firmware-updated-to-v20021118-anyone-apply-the-update-and-notice-changes-httppingfmwydxv/">hier</a> und lauten wie folgt...<br />
<span id="more-2464"></span></p>
<blockquote><p><strong><em>New functionalities in MCU SW version 200.21.118:</em></strong></p>
<p>- Internet Radio application<br />
- My Nokia application<br />
- 3G power reduction for applications using keep-alive style messaging<br />
- User experience improvements:<br />
- Easy Dialing support for Simplified Chinese language<br />
- Device Lock improvement: Open device lock with LSK + Fn-keys<br />
- One key input method switch for China language<br />
- ‘Mute’ option in Right Soft Key when wired headset / hands free is connected<br />
- ‘Loudspeaker’ option in Right Soft Key immediately when phone call is started<br />
- Enlarge characters in Chr-table<br />
- NTLM v1 and v2 support for Intranet Browsing<br />
- New black and red themes</p>
<p><strong><em>Changes/improvements made to MCU SW version 200.21.118:</em></strong></p>
<p><strong>General</strong><br />
- Time zones updated<br />
- Improvements to localization<br />
- Localization fixes<br />
- Missing localizations added<br />
- Operator name database updated<br />
- Startup Settings updated<br />
- Certificates updated<br />
- Security updates<br />
- Stability and functionality improvements<br />
- Barcode reader icon changed from 1D icon to 2D icon<br />
- Windows DRM keys are not lost during NSU update from 110.07.127</p>
<p><strong>Qwerty keyboard</strong><br />
- Stability and functionality improvements<br />
- Keyboard mapping corrections</p>
<p><strong>Browser</strong><br />
- Stability and functionality improvements<br />
- Flash Lite improvements</p>
<p><strong>Connectivity</strong><br />
- WLAN stability improvements<br />
- EAP-FAST/TLS stability improved<br />
- WLAN roaming functionality improved<br />
- BT IOP and Dial-up stability improvements</p>
<p><strong>Maps</strong><br />
- Several stability and functionality improvement</p>
<p><strong>Messaging</strong><br />
- Stability and functionality improvements<br />
- Performance improvement</p>
<p><strong>Quickoffice</strong><br />
- Several stability and functionality improvements</p>
<p><strong>VOIP / SIP</strong><br />
- Many stability and functionality improvements</p>
<p><strong>Email</strong><br />
- Mail for Exchange upgraded from version 2.5.5 to 2.7.22<br />
- Improved functionality when sending email via SSL/TLS SMTP server</p>
<p><strong>Mobile dictionary</strong><br />
- Stability improvements<br />
- Improvement for installed languages. Installed language can be removed.</p>
<p><strong>Camera</strong><br />
- Camera image improvements &#038; slow capture correction with certain HW’s<br />
- Stability improvements</p>
<p><strong>Music player</strong><br />
- General functionality and stability improvements</p>
<p><strong>Java</strong><br />
- Update for CLDC-HI (Sun 1.1.1s Java VM)</p>
<p><strong>Device encryption</strong><br />
- Device encryption functionality and stability improvements</p>
<p><strong>Switch application</strong><br />
- Application updates and stability improvements</p></blockquote>
<hr /><small><center>&copy; 2005-2009 by <a href='http://wolf-u.li/'>Uli Wolf</a> - This Content is distributed under the <a href='http://wolf-u.li/pwnd-faq/'>Creative Commons License</a><br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites without attribution to the author and notification of the author breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:  d2a576b5311479d89eff39b7ca886f6b)</center></small>]]></content:encoded>
			<wfw:commentRss>http://wolf-u.li/2464/major-firwareupdate-fuer-das-nokia-e71-auf-20021118/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Jabber-Client f&#252;r Symbian 3rd Edition (Nokia E71)</title>
		<link>http://wolf-u.li/2116/jabber-client-fuer-symbian-3rd-edition-nokia-e71/</link>
		<comments>http://wolf-u.li/2116/jabber-client-fuer-symbian-3rd-edition-nokia-e71/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 22:01:38 +0000</pubDate>
		<dc:creator>Uli</dc:creator>
				<category><![CDATA[Infotech]]></category>
		<category><![CDATA[Jabber]]></category>
		<category><![CDATA[Nokia E71]]></category>
		<category><![CDATA[Smartphone]]></category>
		<category><![CDATA[Symbian]]></category>

		<guid isPermaLink="false">http://wolf-u.li/?p=2116</guid>
		<description><![CDATA[Seit einiger Zeit betreibe ich einen eigenen Jabber-Server, durch den ich auf mehreren PC's (sogar auf der Konsole)gleichzeitig ICQ nutzen und einige Freunde per S2S-Verbindung erreichen kann. Soeben habe ich mich durch die Tiefen des Internets gew&#252;hlt, um einen Jabber-Client f&#252;r mein Nokia E71 zu finden. Ich bin bei Talkonaut f&#252;ndig geworden (der &#252;brigens auch [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.talkonaut.com/"><img src="http://wolf-u.li/upload/2008/11/2116-qrcode-talkonautcom.png" alt="" title="2116-qrcode-talkonautcom" width="155" height="155" class="alignright size-full wp-image-2117" /></a>Seit einiger Zeit betreibe ich einen eigenen <a href="http://wolf-u.li/1944/tutorial-zur-installation-und-einrichtung-von-jabberd2-unter-gentoo/">Jabber-Server</a>, durch den ich auf mehreren PC's (sogar auf der <a href="http://wolf-u.li/1819/jabber-client-fuer-die-konsole-unter-linux-mcabber/">Konsole</a>)gleichzeitig <a href="http://wolf-u.li/1945/tutorial-fuer-die-installation-des-icq-transport-pyicq-t-fuer-jabberd2-unter-gentoo/">ICQ</a> nutzen und einige Freunde per S2S-Verbindung erreichen kann. Soeben habe ich mich durch die Tiefen des Internets gew&#252;hlt, um einen Jabber-Client f&#252;r mein Nokia E71 zu finden. Ich bin bei <a href="http://www.talkonaut.com/">Talkonaut</a> f&#252;ndig geworden (der &#252;brigens auch f&#252;r Windows Mobile 5/6 verf&#252;gbar ist).<br />
<span id="more-2116"></span><br />
<a href="http://www.talkonaut.com/app/symbian/s60-3rd/talkonaut-s60-3rd.sisx"><img src="http://wolf-u.li/upload/2008/11/2116-qrcode-talkonaut-download.png" alt="" title="2116-qrcode-talkonaut-download" width="215" height="215" class="alignright size-full wp-image-2118" /></a>Der Download ist nat&#252;rlich als QRCde auf der rechten Seite verf&#252;gbar, bei dem Nokia E71 ist der Barcode-Reader &#252;ber "System" => "Barcode" erreichbar.<br />
Kurz zu den Features: Dieser Client unterst&#252;tzt neben Jabber auch noch Google Talk (Jabber &#228;hnlich), ICQ, MSN, AIM und Yahoo. Zus&#228;tzlich kann man damit per SIP auch noch telefonieren.</p>
<p>Hinweise zur Einrichtung:</p>
<ul>
<li>Es wird nach einer Handynummer gefragt. Diese ist nur korrekt einzugeben, wenn man dar&#252;ber SIP-Telefonie per Talkonaut machen will. Wenn dem nicht der Fall ist, kann man eine ung&#252;ltige Nummer eintragen.</li>
<li>Per Default ist als Priorit&#228;t 100 bei Jabber eingetragen. Sollte man &#228;ndern, da zumeist sonst alle Nachrichten NUR aufs Handy gehen. Ich habe bei allen Clients einfach 5 eingetragen, so bekommen es einfach alle und ich kann antworten wo ich will <img src='http://wolf-u.li/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </li>
</ul>
<hr /><small><center>&copy; 2005-2009 by <a href='http://wolf-u.li/'>Uli Wolf</a> - This Content is distributed under the <a href='http://wolf-u.li/pwnd-faq/'>Creative Commons License</a><br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites without attribution to the author and notification of the author breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:  d2a576b5311479d89eff39b7ca886f6b)</center></small>]]></content:encoded>
			<wfw:commentRss>http://wolf-u.li/2116/jabber-client-fuer-symbian-3rd-edition-nokia-e71/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
