<?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>labs.groupwave &#187; Lotus</title>
	<atom:link href="http://labs.groupwave.be/index.php/category/lotus/feed/" rel="self" type="application/rss+xml" />
	<link>http://labs.groupwave.be</link>
	<description>Lotus, PhP, J2EE Technology Partner</description>
	<lastBuildDate>Thu, 06 Oct 2011 11:54:59 +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>Purge Interval Replication Control (PIRC) prevents unwanted replication of deleted documents</title>
		<link>http://labs.groupwave.be/index.php/2011/10/06/purge-interval-replication-control-pirc-prevents-unwanted-replication-of-deleted-documents/</link>
		<comments>http://labs.groupwave.be/index.php/2011/10/06/purge-interval-replication-control-pirc-prevents-unwanted-replication-of-deleted-documents/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 11:54:46 +0000</pubDate>
		<dc:creator>Robby</dc:creator>
				<category><![CDATA[Groupwave]]></category>
		<category><![CDATA[Lotus]]></category>
		<category><![CDATA[Lotus Notes]]></category>

		<guid isPermaLink="false">http://labs.groupwave.be/?p=372</guid>
		<description><![CDATA[A new feature in 8.5.3 Purge Interval Replication Control (PIRC) is a new replication setting which is designed to prevent old documents which may have been deleted from replicating back into a database after their deletion stubs have been purged. This problem has been encountered by many customers. The most common case occurs when an [...]]]></description>
			<content:encoded><![CDATA[<p>A new feature in 8.5.3</p>
<div>
<p>Purge Interval Replication Control (PIRC) is a new replication setting which is designed to prevent old documents which may have been deleted from replicating back into a database after their deletion stubs have been purged. This problem has been encountered by many customers. The most common case occurs when an old version of a NAB (Domino Directory) is brought back online after several months or years. When this occurs, previously deleted person documents, group documents, server documents, and other design elements can replicate back into the environment because the deletion stubs have already been purged. PIRC prevents these documents from replicating back into the environment.</p>
<p><strong>How PIRC Works</strong><br />
PIRC prevents documents from replicating back in two ways. The first is by modifying the &#8216;since time&#8217; used by the replicator. If the server that is initiating the replication is release 8.5.3 and therefore PIRC-aware, then the algorithm to determine which documents qualify for replication has been changed to use the later of the PIRC date or the Since time contained in the replication history. This prevents the older documents from being replicated. Also, a DDM event is generated showing the number of documents skipped by PIRC.</p>
<p>The second way in which PIRC prevents older documents from replicating in is by stopping the documents from being added to the database via NoteUpdate. This method occurs when a non-PIRC aware server is pushing older documents to the PIRC-aware server. In this case, NoteUpdate code will compare the SequenceTime of the document to the PIRC date. If the document is older, a DDM event will be logged and the document will be rejected. Note that the source server is unaware that the document was rejected. Therefore its logs will show that all documents were successfully replicated. However, the PIRC server will log the server name and the documents that were rejected, thus allowing the administrator to track down old replicas of the database and remove them from the environment.</p>
<p>PIRC keys off the Cutoff date of a database. The cutoff date is the date when purge last ran. Purge is the process which removes deletion stubs from a database. Purge runs at one-third of the purge interval. So if the purge interval is set to 90 days, then a database may have deletion stubs up to 120 days old. Therefore PIRC will use this date to prevent documents older than this date from replicating into the database. If the cutoff date is not set in a database, which happens when replication history is cleared, the current date minus the purge interval is used.</p>
<p><strong>Enabling PIRC</strong><br />
There are three ways to enable PIRC on a database<strong>:</strong></p>
<p>1) For an individual database, the property can be set via the Replication Options dialog box under the Space Savings tab. A check box has been added to enable/disable the feature.</p>
<p>2) You can implement PIRC through compact. Compact &#8216;-PIRC On&#8217; and &#8216;-PIRC Off&#8217; will toggle the option. This can be used to enable or disable PIRC on multiple databases with one command. Note: This does nothing to existing documents in the database &#8211; for example, it will not remove older documents as the &#8220;Remove documents not modified in the last N days&#8221; replication setting does when the check box is enabled.</p>
<p>3) You can set PIRC through the database options settings in the Administration Client. This also allows an administrator to set PIRC on multiple databases simultaneously.</p>
<p><strong>Considerations Before Enabling PIRC </strong><br />
Before enabling PIRC you must make sure that all the documents you expect to replicate in, have replicated in. The design of PIRC blocks documents older than the cutoff date from replicating into the database. Therefore you must take care that the database has replicated with all the replicas in the environment. This is especially important if some of the replicas are partial.</p>
<p><strong>Overriding PIRC</strong><br />
A replica process NOPIRC switch has been added to the replication task to temporarily overrride the PIRC setting without having to disable it. This is useful if there is ever the need to synchronize two replicas of a database but you do not want to expose the database to other replicas in the environment. The &#8216;-NOPIRC&#8217; switch tells the replicator to override PIRC. Note that you must be an administrator of the server or be allowed to create new replicas on the server in order to use the NOPIRC switch. This includes the server in the case of a PUSH. Also the NOPIRC switch overrides the replication history by setting the since time to zero. This way when the NOPIRC switch is used, a full replication is done between the two databases bringing them into sync without exposing either databases to other replicas in the environment.</p>
<p><strong>Design/Replace Considerations</strong><br />
With PIRC enabled on a database, special care is needed in order to push out design changes, because templates tend to contain design elements that do not change over a long period of time. Once these design elements are older than the Purge Interval, PIRC would block them from replicating. In order to avoid this problem, the Design Modification TimeDate was added to the database. This time/date is updated in the database whenever design refresh or replace is run, and it actually modifies one or more design elements. PIRC compares this time to the PIRC time and if it is newer, PIRC will allow all non-data notes to replicate into the destination database. This will allow a new design or newly modified design elements to replicate out through the environment even if PIRC is enabled on the databases.</p>
<p><strong>DDM Events and PIRC</strong><br />
When PIRC blocks a note that is being pushed from a non-PIRC server, a Replication DDM event is created.</p>
<p><tt>"PIRC Warning: Replicator skipped &lt;x&gt; data document(s) in &lt;database name&gt; from &lt;server name&gt;"</tt></p>
<p>PIRC will also generate a DDM even when the replicator skips documents that qualified in the search formula. This is an indication that another replica of the database is attempting to push old data into the database. The following events will be seen in DDM under Replication:</p>
<p><tt>"PIRC Warning: Replicator skipped &lt;x&gt; data document(s) in &lt;database name&gt; from &lt;server name&gt;"</tt><br />
<tt>"PIRC Warning: Replicator skipped &lt;x&gt; non-data document(s) in &lt;database name&gt; from &lt;server name&gt;"</tt></p>
<p>A replication DDM event will also be logged when someone issues a replication command with the -n, no pirc, switch.</p>
<p><tt>"PIRC override for DB &lt;database name&gt;"</tt></p>
<p><strong>Fixup Changes Related to PIRC</strong></p>
<p>Changes were made to fixup to help with the scenario where a corrupted document is found and deleted with no deletion stub. This is the common practice of fixup in order to allow a good copy of this note to replicate in from another replica. Along with deleting the document, fixup would also clear the replication history to allow a full search to occur in order to find these documents on next replication. With a PIRC enabled database, this procedure would no longer work if the documents modified time is older than the PIRC interval.</p>
<p>In order to solve this problem fixup was modified to no longer clear the replication history in this case. Fixup will now put the UNID of the deleted document onto a list contained in a special object in the database. Then when the next scheduled replication occurs, if this list exists, these documents are added to the list of documents to replicate, allowing replication to recover these deleted documents while not having to clear the history. PIRC will also allow these documents to replicate into the database even if they are older than the PIRC date. A DDM event is generated when a document is deleted from a database and its UNID is added to this list. UNID&#8217;s will remain on this list only until the are replicated back in or they have been on the list for longer than the PIRC interval. In either case, when they are removed from the list another DDM event is generated.</p>
<p>New DDM Messages related to fixup:</p>
<p><tt>"Warning: Fixup purged corrupt document UNID (:) from testserver/IBM"</tt></p>
<p><tt>"Warning: Replication restored document UNID (:) from testserver/IBM"</tt></p>
<p><tt>"Warning: Replication did not restore corrupt document, time expired, UNID (:) from testserver/IBM"</tt></p>
<p><strong>Debugging PIRC</strong></p>
<p>If you require more information about exactly what PIRC is doing, you can set the DEBUG_REPL_PIRC notes.ini setting. Setting it to a value of 1 will display information about the PIRC date and summary information of the notes that PIRC blocked. Setting it to a value of 2 or greater will display information about the individual notes that PIRC is blocking. It displays whether the notes are data or non-data or if they are deletions as well as their UNIDs..</p>
<p><strong>Common Questions Related to PIRC</strong></p>
<p><strong>Q.</strong> How do I protect a database from replicating in documents that were deleted years ago when an old server or an old copy of a database is brought online?</p>
<p><strong>A.</strong> Enable PIRC on all replicas of the database in your environment you want to protect.</p>
<p><strong>Q.</strong> I am pushing a database from an 8.52 server to an 8.53 server where the database has PIRC enabled. I see the error &#8220;Error Invalid Document&#8221; on the server&#8217;s log.</p>
<p><strong>A</strong>. With PIRC enabled on the destination server, documents older than the PIRC data will be rejected and a DDM event will be logged. The error is returned to the server but it is an error that the replicator will ignore. So the replicator will continue to replicate the entire database. Note that this error is only displayed on the server console when the notes.ini parameter DEBUG_REPL is set.</p>
<p><strong>Q.</strong> I want to enable PIRC on several databases on a server. What is the best way to do that?</p>
<p><strong>A.</strong> There are two ways to do this. You can either use the administration client and set the option using the advanced options tool, or create an indirect file containing the list of databases on which you want to enable PIRC. Then use the compact -PIRC on command and pass it the indirect file.</p>
<p><strong>Q,</strong> How do I easily tell which databases on a server are PIRC enabled?</p>
<p><strong>A.</strong> You can use the &#8216;show directory&#8217; command at the server console. A column has been added to the output for PIRC. Also the &#8216;show directory -pirconly&#8217; command will list only PIRC-enabled databases.</p>
<p><strong>Related Technotes</strong></p>
<p><a href="https://www-304.ibm.com/support/docview.wss?rs=0&amp;uid=swg21098733">http://www-01.ibm.com/support/docview.wss?rs=0&amp;uid=swg21098733</a></p>
<p><a href="https://www-304.ibm.com/support/docview.wss?rs=475&amp;context=SSKTWP&amp;context=SSKTMJ&amp;dc=DB520&amp;q1=documents+and+replication+and+old&amp;uid=swg21225071&amp;loc=en_US&amp;cs=utf-8&amp;lang=en">http://www-01.ibm.com/support/docview.wss?rs=475&amp;context=SSKTWP&amp;context=SSKTMJ&amp;dc=DB520&amp;q1=documents+and+replication+and+old&amp;uid=swg21225071&amp;loc=en_US&amp;cs=utf-8&amp;lang=en</a></p>
</div>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Bookmark:</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2011%2F10%2F06%2Fpurge-interval-replication-control-pirc-prevents-unwanted-replication-of-deleted-documents%2F&amp;title=Purge+Interval+Replication+Control+%28PIRC%29+prevents+unwanted+replication+of+deleted+documents" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2011%2F10%2F06%2Fpurge-interval-replication-control-pirc-prevents-unwanted-replication-of-deleted-documents%2F&amp;title=Purge+Interval+Replication+Control+%28PIRC%29+prevents+unwanted+replication+of+deleted+documents" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2011%2F10%2F06%2Fpurge-interval-replication-control-pirc-prevents-unwanted-replication-of-deleted-documents%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2011%2F10%2F06%2Fpurge-interval-replication-control-pirc-prevents-unwanted-replication-of-deleted-documents%2F&amp;title=Purge+Interval+Replication+Control+%28PIRC%29+prevents+unwanted+replication+of+deleted+documents" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2011%2F10%2F06%2Fpurge-interval-replication-control-pirc-prevents-unwanted-replication-of-deleted-documents%2F&amp;title=Purge+Interval+Replication+Control+%28PIRC%29+prevents+unwanted+replication+of+deleted+documents" rel="nofollow" title="Add to&nbsp;LinkedIn"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/linkedin.png" title="Add to&nbsp;LinkedIn" alt="Add to&nbsp;LinkedIn" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2011%2F10%2F06%2Fpurge-interval-replication-control-pirc-prevents-unwanted-replication-of-deleted-documents%2F&amp;title=Purge+Interval+Replication+Control+%28PIRC%29+prevents+unwanted+replication+of+deleted+documents" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2011%2F10%2F06%2Fpurge-interval-replication-control-pirc-prevents-unwanted-replication-of-deleted-documents%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Purge+Interval+Replication+Control+%28PIRC%29+prevents+unwanted+replication+of+deleted+documents+@+http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2011%2F10%2F06%2Fpurge-interval-replication-control-pirc-prevents-unwanted-replication-of-deleted-documents%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://labs.groupwave.be/index.php/2011/10/06/purge-interval-replication-control-pirc-prevents-unwanted-replication-of-deleted-documents/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BES Express admin interface no longer available after changing Windows services account</title>
		<link>http://labs.groupwave.be/index.php/2011/09/02/bes-express-admin-interface-no-longer-available-after-changing-windows-services-account/</link>
		<comments>http://labs.groupwave.be/index.php/2011/09/02/bes-express-admin-interface-no-longer-available-after-changing-windows-services-account/#comments</comments>
		<pubDate>Fri, 02 Sep 2011 12:51:44 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Blackberry]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[bes]]></category>
		<category><![CDATA[express]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[webinterface]]></category>

		<guid isPermaLink="false">http://labs.groupwave.be/?p=365</guid>
		<description><![CDATA[I had a &#8220;little&#8221; trouble a while ago with a Blackberry Express server. For reasons beyond the scope of this post, the user account that was used to start the BES services had to be changed (different username and password). I updated the BES services in Windows with the new account, but I noticed that [...]]]></description>
			<content:encoded><![CDATA[<p>I had a &#8220;little&#8221; trouble a while ago with a Blackberry Express server. For reasons beyond the scope of this post, the user account that was used to start the BES services had to be changed (different username and password). I updated the BES services in Windows with the new account, but I noticed that the webinterface for administration of the server was no longer working.<br />
After a closer look in the event viewer, I noticed that the &#8220;<strong>Blackberry Administration Service Application Server</strong>&#8221; service was restarting every couple of minutes (that is to say: it started and shut down after a few seconds, after a few minutes the service kept retrying this without success).</p>
<p>The logon account for that service was correct and had the correct access rights. Furthermore, Windows didn&#8217;t give me any warning dialog boxes when I tried to start the service manually, so I had to look somewhere else. Obviously, it had something to do with the changing of the account, so I started my quest for the answer, searching in that direction.</p>
<p>After a lot of suggestions saying I should just reinstall the whole BES with the new account, I came across this article in the Blackberry knowledge base: <a title="Blackberry Knowledge Base" href="http://btsc.webapps.blackberry.com/btsc/microsites/search.do?cmd=displayKC&amp;docType=kc&amp;externalId=KB18260&amp;sliceId=1&amp;docTypeID=DT_SUPPORTISSUE_1_1&amp;dialogID=793900442&amp;stateId=0%200%20793882905" target="_blank">link</a>. It wasn&#8217;t exacly the same problem I had, but it sounded familiar and I had a hunch.</p>
<p>It turns out that during the installation of the BES Express software, it writes a few registry keys to &#8220;HKEY_CURRENT_USER&#8221;. These keys are required by the &#8220;Blackberry Administration Service Application Server&#8221; service. The new account for that service, can&#8217;t see these registry keys because the are in &#8220;HKEY_CURRENT_USER&#8221;. Because of that, it cannot start.</p>
<p>The solution is rather simple:</p>
<ol>
<li>Login on the server with the old account that was used for the BES services.</li>
<li>Open regedit on the server</li>
<li>Take a backupof the registry! This is not required but, you never know&#8230;</li>
<li>Go to the following key: HKEY_CURRENT_USER\Software\Research In Motion\BlackBerry Enterprise Server</li>
<li>Right-click on the &#8220;BlackBerry Administration Service&#8221; key and choose &#8220;export&#8221; and save this export somewhere that is accessible (Doublecheck that the export range is set to &#8220;Selected branch&#8221;).</li>
<li>Log off and log in again with the new account that is used for the BES services.</li>
<li>Import the registry keys that you exported in step 5 by double clicking on the export file.</li>
</ol>
<p>After this, the &#8220;Blackberry Administration Service Application Server&#8221; service should be able to start again and you will be able to browse to the webinterface.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Bookmark:</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2011%2F09%2F02%2Fbes-express-admin-interface-no-longer-available-after-changing-windows-services-account%2F&amp;title=BES+Express+admin+interface+no+longer+available+after+changing+Windows+services+account" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2011%2F09%2F02%2Fbes-express-admin-interface-no-longer-available-after-changing-windows-services-account%2F&amp;title=BES+Express+admin+interface+no+longer+available+after+changing+Windows+services+account" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2011%2F09%2F02%2Fbes-express-admin-interface-no-longer-available-after-changing-windows-services-account%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2011%2F09%2F02%2Fbes-express-admin-interface-no-longer-available-after-changing-windows-services-account%2F&amp;title=BES+Express+admin+interface+no+longer+available+after+changing+Windows+services+account" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2011%2F09%2F02%2Fbes-express-admin-interface-no-longer-available-after-changing-windows-services-account%2F&amp;title=BES+Express+admin+interface+no+longer+available+after+changing+Windows+services+account" rel="nofollow" title="Add to&nbsp;LinkedIn"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/linkedin.png" title="Add to&nbsp;LinkedIn" alt="Add to&nbsp;LinkedIn" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2011%2F09%2F02%2Fbes-express-admin-interface-no-longer-available-after-changing-windows-services-account%2F&amp;title=BES+Express+admin+interface+no+longer+available+after+changing+Windows+services+account" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2011%2F09%2F02%2Fbes-express-admin-interface-no-longer-available-after-changing-windows-services-account%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+BES+Express+admin+interface+no+longer+available+after+changing+Windows+services+account+@+http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2011%2F09%2F02%2Fbes-express-admin-interface-no-longer-available-after-changing-windows-services-account%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://labs.groupwave.be/index.php/2011/09/02/bes-express-admin-interface-no-longer-available-after-changing-windows-services-account/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lotus Knows worldwide marketing campaign</title>
		<link>http://labs.groupwave.be/index.php/2009/11/26/lotus-knows-worldwide-marketing-campaign/</link>
		<comments>http://labs.groupwave.be/index.php/2009/11/26/lotus-knows-worldwide-marketing-campaign/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 15:11:51 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[eMarketing]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[Lotus]]></category>
		<category><![CDATA[Lotus Notes]]></category>

		<guid isPermaLink="false">http://labs.groupwave.be/?p=130</guid>
		<description><![CDATA[Lotus knows how to put a brand in the picture! IBM launched a new worlwide marketing campaign to get more visibility for our beloved brand! Check out www.lotusknows.com to discover the world of IBM Lotus! I have to warn you, once you&#8217;re a Lotus addict, there is no way back Bookmark:]]></description>
			<content:encoded><![CDATA[<p>Lotus knows how to put a brand in the picture!</p>
<p>IBM launched a new worlwide marketing campaign to get more visibility for our beloved brand!</p>
<p>Check out <a href="http://www.lotusknows.com" target="_blank">www.lotusknows.com</a> to discover the world of IBM Lotus!</p>
<p>I have to warn you, once you&#8217;re a Lotus addict, there is no way back</p>
<p> <img src='http://labs.groupwave.be/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Bookmark:</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2009%2F11%2F26%2Flotus-knows-worldwide-marketing-campaign%2F&amp;title=Lotus+Knows+worldwide+marketing+campaign" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2009%2F11%2F26%2Flotus-knows-worldwide-marketing-campaign%2F&amp;title=Lotus+Knows+worldwide+marketing+campaign" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2009%2F11%2F26%2Flotus-knows-worldwide-marketing-campaign%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2009%2F11%2F26%2Flotus-knows-worldwide-marketing-campaign%2F&amp;title=Lotus+Knows+worldwide+marketing+campaign" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2009%2F11%2F26%2Flotus-knows-worldwide-marketing-campaign%2F&amp;title=Lotus+Knows+worldwide+marketing+campaign" rel="nofollow" title="Add to&nbsp;LinkedIn"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/linkedin.png" title="Add to&nbsp;LinkedIn" alt="Add to&nbsp;LinkedIn" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2009%2F11%2F26%2Flotus-knows-worldwide-marketing-campaign%2F&amp;title=Lotus+Knows+worldwide+marketing+campaign" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2009%2F11%2F26%2Flotus-knows-worldwide-marketing-campaign%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Lotus+Knows+worldwide+marketing+campaign+@+http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2009%2F11%2F26%2Flotus-knows-worldwide-marketing-campaign%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://labs.groupwave.be/index.php/2009/11/26/lotus-knows-worldwide-marketing-campaign/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Notes roaming users on Lotus Foundations</title>
		<link>http://labs.groupwave.be/index.php/2009/10/09/notes-roaming-users-on-lotus-foundations/</link>
		<comments>http://labs.groupwave.be/index.php/2009/10/09/notes-roaming-users-on-lotus-foundations/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 13:50:31 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Lotus]]></category>
		<category><![CDATA[Lotus Foundations]]></category>

		<guid isPermaLink="false">http://labs.groupwave.be/?p=125</guid>
		<description><![CDATA[We are installing a Lotus Foundations Branch Office appliance at one of our customers. Lotus Foundations Branch Office is used in combination with a Lotus Domino Enterprise server. All configuration happens on the Enterprise server and is then replicated to the Foundations server. For example: users are registrated on the Enterprise server, with the Foundations [...]]]></description>
			<content:encoded><![CDATA[<p>We are installing a <a href="http://www.lotusfoundations.com/products/branch-office.php" target="_blank">Lotus Foundations Branch Office</a> appliance at one of our customers. Lotus Foundations Branch Office is used in combination with a Lotus Domino Enterprise server. All configuration happens on the Enterprise server and is then replicated to the Foundations server.<br />
For example: users are registrated on the Enterprise server, with the Foundations server as their mailserver.</p>
<p>Some of the users on the Foundations server had to be upgraded to roaming users (Notes roaming). It took me quite a while before this actually worked. When I upgraded an existing user on the Enterprise server to roaming, it worked within ten minutes. But when I did the same for a user on the Foundations server, it always ended up in tears (aka: not working).</p>
<p>After some searching and digging on the web, I finally found a solution. For some reason, roaming just wouldn&#8217;t work if the files were  on the Foundations server itself. When I put them on the Enterprise server, everything seemed to work. Putting the roaming files on the Enterprise server will ofcourse cause a longer startup time if the user logs on for the first time, as the Enterprise server is probably off-site.</p>
<p><strong>So in short:</strong><br />
You have to upgrade the user to roaming on the Enterprise server, select the Enterprise server as the roaming server, and then replicate this to the Foundations server (that, in combination with a few &#8220;tell adminp process new&#8221; commands).<br />
By default, if you upgrade a user to roaming, it selects the mailserver of that user as the roaming server. So be sure to change this for a user on Foundations to the Enterprise server!</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Bookmark:</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2009%2F10%2F09%2Fnotes-roaming-users-on-lotus-foundations%2F&amp;title=Notes+roaming+users+on+Lotus+Foundations" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2009%2F10%2F09%2Fnotes-roaming-users-on-lotus-foundations%2F&amp;title=Notes+roaming+users+on+Lotus+Foundations" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2009%2F10%2F09%2Fnotes-roaming-users-on-lotus-foundations%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2009%2F10%2F09%2Fnotes-roaming-users-on-lotus-foundations%2F&amp;title=Notes+roaming+users+on+Lotus+Foundations" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2009%2F10%2F09%2Fnotes-roaming-users-on-lotus-foundations%2F&amp;title=Notes+roaming+users+on+Lotus+Foundations" rel="nofollow" title="Add to&nbsp;LinkedIn"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/linkedin.png" title="Add to&nbsp;LinkedIn" alt="Add to&nbsp;LinkedIn" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2009%2F10%2F09%2Fnotes-roaming-users-on-lotus-foundations%2F&amp;title=Notes+roaming+users+on+Lotus+Foundations" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2009%2F10%2F09%2Fnotes-roaming-users-on-lotus-foundations%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Notes+roaming+users+on+Lotus+Foundations+@+http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2009%2F10%2F09%2Fnotes-roaming-users-on-lotus-foundations%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://labs.groupwave.be/index.php/2009/10/09/notes-roaming-users-on-lotus-foundations/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Enable lotus domino applications on blackberry.</title>
		<link>http://labs.groupwave.be/index.php/2008/06/04/enable-lotus-domino-applications-on-blackberry/</link>
		<comments>http://labs.groupwave.be/index.php/2008/06/04/enable-lotus-domino-applications-on-blackberry/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 19:03:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blackberry]]></category>
		<category><![CDATA[Lotus]]></category>

		<guid isPermaLink="false">http://labs.groupwave.be/?p=50</guid>
		<description><![CDATA[I found an excellent article on how to enable lotus domino applications on blackberry. Take a look at the site of Jeff Gilfelt Bookmark:]]></description>
			<content:encoded><![CDATA[<p>I found an excellent article on how to enable lotus domino applications on blackberry.</p>
<p>Take a look at the site of <a title="Jeff Gilfelt" href="http://www.jeffgilfelt.com/DominoBlackBerryMDS/" target="_blank">Jeff Gilfelt </a></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Bookmark:</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2008%2F06%2F04%2Fenable-lotus-domino-applications-on-blackberry%2F&amp;title=Enable+lotus+domino+applications+on+blackberry." rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2008%2F06%2F04%2Fenable-lotus-domino-applications-on-blackberry%2F&amp;title=Enable+lotus+domino+applications+on+blackberry." rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2008%2F06%2F04%2Fenable-lotus-domino-applications-on-blackberry%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2008%2F06%2F04%2Fenable-lotus-domino-applications-on-blackberry%2F&amp;title=Enable+lotus+domino+applications+on+blackberry." rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2008%2F06%2F04%2Fenable-lotus-domino-applications-on-blackberry%2F&amp;title=Enable+lotus+domino+applications+on+blackberry." rel="nofollow" title="Add to&nbsp;LinkedIn"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/linkedin.png" title="Add to&nbsp;LinkedIn" alt="Add to&nbsp;LinkedIn" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2008%2F06%2F04%2Fenable-lotus-domino-applications-on-blackberry%2F&amp;title=Enable+lotus+domino+applications+on+blackberry." rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2008%2F06%2F04%2Fenable-lotus-domino-applications-on-blackberry%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Enable+lotus+domino+applications+on+blackberry.+@+http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2008%2F06%2F04%2Fenable-lotus-domino-applications-on-blackberry%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://labs.groupwave.be/index.php/2008/06/04/enable-lotus-domino-applications-on-blackberry/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Integrate SharePoint into Lotus Notes</title>
		<link>http://labs.groupwave.be/index.php/2008/06/04/integrate-sharepoint-into-lotus-notes/</link>
		<comments>http://labs.groupwave.be/index.php/2008/06/04/integrate-sharepoint-into-lotus-notes/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 19:00:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Lotus]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://labs.groupwave.be/?p=49</guid>
		<description><![CDATA[Mainsoft&#8217;s SharePoint® Integrator for Lotus® Notes® is an easy to deploy, client-side plug-in for Lotus Notes 8 that delivers instant access to SharePoint document libraries from within the Lotus Notes user interface. Users can work more productively by dragging-and-dropping SharePoint content such as Microsoft® Word® documents, Excel® spreadsheets, and PowerPoint® presentations into Notes emails or [...]]]></description>
			<content:encoded><![CDATA[<p>Mainsoft&#8217;s SharePoint<sup>®</sup> Integrator for Lotus<sup>®</sup> Notes<sup>®</sup> is an easy to deploy, client-side plug-in for Lotus Notes 8 that delivers instant access to SharePoint document libraries from within the Lotus Notes user interface. Users can work more productively by dragging-and-dropping SharePoint content such as Microsoft<sup>®</sup> Word<sup>®</sup> documents, Excel<sup>®</sup> spreadsheets, and PowerPoint<sup>®</sup> presentations into Notes emails or calendar appointments.</p>
<p>Take a look at the website of <a title="Mainsoft" href="http://www.mainsoft.com/products/sharepoint_lotusnotes.aspx" target="_blank">Mainsoft</a></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Bookmark:</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2008%2F06%2F04%2Fintegrate-sharepoint-into-lotus-notes%2F&amp;title=Integrate+SharePoint+into+Lotus+Notes" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2008%2F06%2F04%2Fintegrate-sharepoint-into-lotus-notes%2F&amp;title=Integrate+SharePoint+into+Lotus+Notes" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2008%2F06%2F04%2Fintegrate-sharepoint-into-lotus-notes%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2008%2F06%2F04%2Fintegrate-sharepoint-into-lotus-notes%2F&amp;title=Integrate+SharePoint+into+Lotus+Notes" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2008%2F06%2F04%2Fintegrate-sharepoint-into-lotus-notes%2F&amp;title=Integrate+SharePoint+into+Lotus+Notes" rel="nofollow" title="Add to&nbsp;LinkedIn"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/linkedin.png" title="Add to&nbsp;LinkedIn" alt="Add to&nbsp;LinkedIn" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2008%2F06%2F04%2Fintegrate-sharepoint-into-lotus-notes%2F&amp;title=Integrate+SharePoint+into+Lotus+Notes" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2008%2F06%2F04%2Fintegrate-sharepoint-into-lotus-notes%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Integrate+SharePoint+into+Lotus+Notes+@+http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2008%2F06%2F04%2Fintegrate-sharepoint-into-lotus-notes%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://labs.groupwave.be/index.php/2008/06/04/integrate-sharepoint-into-lotus-notes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sync Lotus Notes Contacts with Social Networks like Facebook, LinkedIn &amp; Plaxo</title>
		<link>http://labs.groupwave.be/index.php/2008/02/17/sync-lotus-notes-contacts-with-social-networks-like-facebook-linkedin-plaxo/</link>
		<comments>http://labs.groupwave.be/index.php/2008/02/17/sync-lotus-notes-contacts-with-social-networks-like-facebook-linkedin-plaxo/#comments</comments>
		<pubDate>Sun, 17 Feb 2008 17:04:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Groupwave]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[Lotus]]></category>

		<guid isPermaLink="false">http://labs.groupwave.be/index.php/2008/02/17/sync-lotus-notes-contacts-with-social-networks-like-facebook-linkedin-plaxo/</guid>
		<description><![CDATA[This is a tool which should be very usefull if you make use of Lotus Notes and if you have a lot of contacts on social networks and if you always wanted to sync both worlds &#8230; &#8220;Keeping track of all your &#8216;virtual&#8217; contacts on the various networks will is not easy, especially as the [...]]]></description>
			<content:encoded><![CDATA[<p>This is a tool which should be very usefull if you make use of Lotus Notes and if you have a lot of contacts on social networks and if you always wanted to sync both worlds &#8230;</p>
<p><em>&#8220;Keeping track of all your &#8216;virtual&#8217; contacts on the various networks will is not easy, especially as the quantity of social networks you are registered to increased, and your global network increases as well. Locating a user you wish to collaborate with, can become tedious and subtract from the effectiveness of the networks and the effectiveness for you to be able to locate a specific user.</em></p>
<p><em><strong>ViCo for Lotus Notes</strong> can help with this by importing all of your contacts from all supported social networks and providing them in a single point of access, a Lotus Notes database, allowing sorting and searching and categorising of the documents by network.  The product also allows you to add specific contacts onto your Personal Address Book in Lotus Notes, making those contacts available in type-ahead searches from within the Lotus Notes mail file. The application also allows automatic synchronisation of changes of contact information direct to the Personal Address Book&#8221;</em></p>
<p>Unfortunately this product is not for free (approx. 49 euro/license).   See this the <a href="http://www.notes-solutions.com" title="Notes Solutions">Notes-Solutions</a> website.  Maybe a free version should be made for personal use as a lot of companies still do not see the benefit of social networks <img src='http://labs.groupwave.be/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Bookmark:</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2008%2F02%2F17%2Fsync-lotus-notes-contacts-with-social-networks-like-facebook-linkedin-plaxo%2F&amp;title=Sync+Lotus+Notes+Contacts+with+Social+Networks+like+Facebook%2C+LinkedIn+%26%23038%3B+Plaxo" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2008%2F02%2F17%2Fsync-lotus-notes-contacts-with-social-networks-like-facebook-linkedin-plaxo%2F&amp;title=Sync+Lotus+Notes+Contacts+with+Social+Networks+like+Facebook%2C+LinkedIn+%26%23038%3B+Plaxo" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2008%2F02%2F17%2Fsync-lotus-notes-contacts-with-social-networks-like-facebook-linkedin-plaxo%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2008%2F02%2F17%2Fsync-lotus-notes-contacts-with-social-networks-like-facebook-linkedin-plaxo%2F&amp;title=Sync+Lotus+Notes+Contacts+with+Social+Networks+like+Facebook%2C+LinkedIn+%26%23038%3B+Plaxo" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2008%2F02%2F17%2Fsync-lotus-notes-contacts-with-social-networks-like-facebook-linkedin-plaxo%2F&amp;title=Sync+Lotus+Notes+Contacts+with+Social+Networks+like+Facebook%2C+LinkedIn+%26%23038%3B+Plaxo" rel="nofollow" title="Add to&nbsp;LinkedIn"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/linkedin.png" title="Add to&nbsp;LinkedIn" alt="Add to&nbsp;LinkedIn" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2008%2F02%2F17%2Fsync-lotus-notes-contacts-with-social-networks-like-facebook-linkedin-plaxo%2F&amp;title=Sync+Lotus+Notes+Contacts+with+Social+Networks+like+Facebook%2C+LinkedIn+%26%23038%3B+Plaxo" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2008%2F02%2F17%2Fsync-lotus-notes-contacts-with-social-networks-like-facebook-linkedin-plaxo%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Sync+Lotus+Notes+Contacts+with+Social+Networks+like+Facebook%2C+LinkedIn+%26%23038%3B+Plaxo+@+http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2008%2F02%2F17%2Fsync-lotus-notes-contacts-with-social-networks-like-facebook-linkedin-plaxo%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://labs.groupwave.be/index.php/2008/02/17/sync-lotus-notes-contacts-with-social-networks-like-facebook-linkedin-plaxo/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CommonTime Evaluation Certificate &#8211; expires Jan 8th, 2008</title>
		<link>http://labs.groupwave.be/index.php/2007/12/21/commontime-evaluation-certificate-expires-jan-8th-2008/</link>
		<comments>http://labs.groupwave.be/index.php/2007/12/21/commontime-evaluation-certificate-expires-jan-8th-2008/#comments</comments>
		<pubDate>Fri, 21 Dec 2007 08:16:05 +0000</pubDate>
		<dc:creator>Sven</dc:creator>
				<category><![CDATA[Groupwave]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[Lotus]]></category>

		<guid isPermaLink="false">http://labs.groupwave.be/index.php/2007/12/21/commontime-evaluation-certificate-expires-jan-8th-2008/</guid>
		<description><![CDATA[If you are using mSuite and are using the 2007 edition of the CommonTime Evaluation Certificate, you need to take prompt action to avoid loss of service. Please follow the instructions in the PDF document. CertificateExpiry2008.pdf Bookmark:]]></description>
			<content:encoded><![CDATA[<p><span id="dnn_ctr781_HtmlModule_HtmlHolder" class="Normal"></span></p>
<p>If you are using mSuite and are using the 2007 edition of the CommonTime Evaluation Certificate, you need to take prompt action to avoid loss of service. Please follow the instructions in the PDF document.<a href="http://labs.groupwave.be/wp-content/uploads/2007/12/certificateexpiry2008.pdf" title="CertificateExpiry2008"></a></p>
<p><a href="http://labs.groupwave.be/wp-content/uploads/2007/12/certificateexpiry2008.pdf" title="CertificateExpiry2008">CertificateExpiry2008.pdf</a></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Bookmark:</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2007%2F12%2F21%2Fcommontime-evaluation-certificate-expires-jan-8th-2008%2F&amp;title=CommonTime+Evaluation+Certificate+%26%238211%3B+expires+Jan+8th%2C+2008" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2007%2F12%2F21%2Fcommontime-evaluation-certificate-expires-jan-8th-2008%2F&amp;title=CommonTime+Evaluation+Certificate+%26%238211%3B+expires+Jan+8th%2C+2008" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2007%2F12%2F21%2Fcommontime-evaluation-certificate-expires-jan-8th-2008%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2007%2F12%2F21%2Fcommontime-evaluation-certificate-expires-jan-8th-2008%2F&amp;title=CommonTime+Evaluation+Certificate+%26%238211%3B+expires+Jan+8th%2C+2008" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2007%2F12%2F21%2Fcommontime-evaluation-certificate-expires-jan-8th-2008%2F&amp;title=CommonTime+Evaluation+Certificate+%26%238211%3B+expires+Jan+8th%2C+2008" rel="nofollow" title="Add to&nbsp;LinkedIn"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/linkedin.png" title="Add to&nbsp;LinkedIn" alt="Add to&nbsp;LinkedIn" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2007%2F12%2F21%2Fcommontime-evaluation-certificate-expires-jan-8th-2008%2F&amp;title=CommonTime+Evaluation+Certificate+%26%238211%3B+expires+Jan+8th%2C+2008" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2007%2F12%2F21%2Fcommontime-evaluation-certificate-expires-jan-8th-2008%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+CommonTime+Evaluation+Certificate+%26%238211%3B+expires+Jan+8th%2C+2008+@+http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2007%2F12%2F21%2Fcommontime-evaluation-certificate-expires-jan-8th-2008%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://labs.groupwave.be/index.php/2007/12/21/commontime-evaluation-certificate-expires-jan-8th-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lotus Symphony vs OpenOffice</title>
		<link>http://labs.groupwave.be/index.php/2007/09/25/lotus-symphony-vs-openoffice/</link>
		<comments>http://labs.groupwave.be/index.php/2007/09/25/lotus-symphony-vs-openoffice/#comments</comments>
		<pubDate>Tue, 25 Sep 2007 13:28:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Groupwave]]></category>
		<category><![CDATA[Lotus]]></category>

		<guid isPermaLink="false">http://labs.groupwave.be/index.php/2007/09/25/lotus-symphony-vs-openoffice/</guid>
		<description><![CDATA[IBM&#8217;s Lotus Symphony is OpenOffice in Eclipse jacket IBM recently announced it would embrace the OpenOffice.org productivity suite project and we&#8217;re already seeing results, chiefly the beta release of IBM&#8216;s free Lotus Symphony. Download it here There are three core applications: Lotus Symphony Documents, Lotus Symphony Spreadsheets and Lotus Symphony Presentations. The applications, currently in [...]]]></description>
			<content:encoded><![CDATA[<p><span class="bodytext"></span></p>
<h3><a href="http://www.desktoplinux.com/news/NS6643343731.html"><span class="bodytext"></span></a></h3>
<h3>IBM&#8217;s Lotus Symphony is OpenOffice in Eclipse jacket</h3>
<p><span class="bodytext"></span></p>
<blockquote><p><strong>IBM</strong> recently announced it would embrace the OpenOffice.org productivity <strong>suite</strong> project and we&#8217;re already seeing results, chiefly the beta release of <strong>IBM</strong>&#8216;s free <strong>Lotus</strong> Symphony. Download it <a href="https://www14.software.ibm.com/webapp/iwm/web/preLogin.do?lang=en_US&amp;source=swerplotus-lptb3" title="here">here</a></p></blockquote>
<blockquote><p>There are three core applications: Lotus Symphony Documents, Lotus Symphony Spreadsheets and Lotus Symphony Presentations.</p>
<p>The applications, currently in beta, will work on Windows and Linux computers, all claim to offer a simple, clean and logical interface and are in the non-propriety ODF format.</p>
<p><strong>IBM Lotus Symphony Documents</strong> allows users to create, edit, share, and save word processing documents. Users can start with a blank document, import an existing document, or choose from a set of document templates.</p>
<p><strong>IBM Lotus Symphony Presentations</strong> allows end users to create graphic presentations that can be shared with audiences via a slide show mode. The presentations created by Lotus Symphony Presentation software can be created from scratch or using the included presentation templates for a variety of looks.</p>
<p><strong>IBM Lotus Symphony Spreadsheets</strong> allows end users to create, edit, share, and save a variety of spreadsheets. Users can create blank documents, import existing documents, or choose from a set of document templates. Standard navigational elements include toolbars, an editing window, and a status bar.</p></blockquote>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Bookmark:</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2007%2F09%2F25%2Flotus-symphony-vs-openoffice%2F&amp;title=Lotus+Symphony+vs+OpenOffice" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2007%2F09%2F25%2Flotus-symphony-vs-openoffice%2F&amp;title=Lotus+Symphony+vs+OpenOffice" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2007%2F09%2F25%2Flotus-symphony-vs-openoffice%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2007%2F09%2F25%2Flotus-symphony-vs-openoffice%2F&amp;title=Lotus+Symphony+vs+OpenOffice" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2007%2F09%2F25%2Flotus-symphony-vs-openoffice%2F&amp;title=Lotus+Symphony+vs+OpenOffice" rel="nofollow" title="Add to&nbsp;LinkedIn"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/linkedin.png" title="Add to&nbsp;LinkedIn" alt="Add to&nbsp;LinkedIn" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2007%2F09%2F25%2Flotus-symphony-vs-openoffice%2F&amp;title=Lotus+Symphony+vs+OpenOffice" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2007%2F09%2F25%2Flotus-symphony-vs-openoffice%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Lotus+Symphony+vs+OpenOffice+@+http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2007%2F09%2F25%2Flotus-symphony-vs-openoffice%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://labs.groupwave.be/index.php/2007/09/25/lotus-symphony-vs-openoffice/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SwiftFile for Notes</title>
		<link>http://labs.groupwave.be/index.php/2007/09/19/swiftfile-for-notes/</link>
		<comments>http://labs.groupwave.be/index.php/2007/09/19/swiftfile-for-notes/#comments</comments>
		<pubDate>Wed, 19 Sep 2007 07:31:22 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[Groupwave]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[Lotus]]></category>

		<guid isPermaLink="false">http://labs.groupwave.be/index.php/2007/09/19/swiftfile-for-notes/</guid>
		<description><![CDATA[Recently discovered this little tool, and I absolute love it. What does it do? Well, it analyses your mailfile and folder structure/contents. When a new email arrives, SwiftFile gives you three folder where it thinks you will move the mail (based on the sender, subject, body, &#8230;). In my experience it&#8217;s almost always correct, it [...]]]></description>
			<content:encoded><![CDATA[<p>Recently discovered this little tool, and I absolute love it. What does it do? Well, it analyses your mailfile and folder structure/contents. When a new email arrives, SwiftFile gives you three folder where it thinks you will move the mail (based on the sender, subject, body, &#8230;).</p>
<p>In my experience it&#8217;s almost always correct, it learns fast and I save a lot of time because I no longer longer have to drag/drop, &#8216;move to folder&#8217;, &#8230; I can just click the correct folder. This is how it looks like in my mail file:</p>
<p><img src="http://labs.groupwave.be/wp-content/uploads/2007/09/swiftfile.JPG" alt="Swiftfile image" height="123" width="437" /></p>
<p>You can find more information <a href="http://www.research.ibm.com/swiftfile/" title="SwiftFile Home Page" target="_blank">here</a>.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Bookmark:</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2007%2F09%2F19%2Fswiftfile-for-notes%2F&amp;title=SwiftFile+for+Notes" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2007%2F09%2F19%2Fswiftfile-for-notes%2F&amp;title=SwiftFile+for+Notes" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2007%2F09%2F19%2Fswiftfile-for-notes%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2007%2F09%2F19%2Fswiftfile-for-notes%2F&amp;title=SwiftFile+for+Notes" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2007%2F09%2F19%2Fswiftfile-for-notes%2F&amp;title=SwiftFile+for+Notes" rel="nofollow" title="Add to&nbsp;LinkedIn"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/linkedin.png" title="Add to&nbsp;LinkedIn" alt="Add to&nbsp;LinkedIn" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2007%2F09%2F19%2Fswiftfile-for-notes%2F&amp;title=SwiftFile+for+Notes" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2007%2F09%2F19%2Fswiftfile-for-notes%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+SwiftFile+for+Notes+@+http%3A%2F%2Flabs.groupwave.be%2Findex.php%2F2007%2F09%2F19%2Fswiftfile-for-notes%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://labs.groupwave.be/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://labs.groupwave.be/index.php/2007/09/19/swiftfile-for-notes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

