<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0"
 xmlns:dc="http://purl.org/dc/elements/1.1/"
 xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
 xmlns:admin="http://webns.net/mvcb/"
 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
 xmlns:content="http://purl.org/rss/1.0/modules/content/"
 xmlns:wfw="http://wellformedweb.org/CommentAPI/">
<channel>
<title>Erik&#8217;s Brain - Project Journal and Tech Notes</title>
<description>My External Memory</description>
<link>http://blog.inetfusion.com/A55CF7/technotes.nsf/</link>
<language>en-us</language>
<lastBuildDate>Fri, 9 Jul 2010 11:41:30 -0500</lastBuildDate>
<item>
<title>iphone web development notes</title>
<pubDate>Fri, 9 Jul 2010 11:41:30 -0500</pubDate>
<description>
<![CDATA[ 
The iPhone allows you to initiate a call directly from a link on your web page. It will convert the phone number from clickable link that initiates a call: BigDaddy 555-1515 CSS iphone specific c ...
 ]]>
</description>
<link>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/07092010114130AMEWEML2.htm</link>
<category>Tech Note</category>
<dc:creator>Erik Welch</dc:creator>
<comments>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/07092010114130AMEWEML2.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/07092010114130AMEWEML2.htm</guid>
<content:encoded><![CDATA[ The iPhone allows you to initiate a call directly from a link on your web page. It will convert the phone number from clickable link that initiates a call:  <p><tt><div id="hcard-BigDaddy" class="vcard"><br /> <span class="fn">BigDaddy</span><br /> <div class="tel">555-1515</div><br /> </div></tt>  <p> <p><strong>CSS</strong> <p>iphone specific css - test <tt><br /> <link media="only screen and (max-device-width: 480px)" href="http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/iPhone.css" type="text/css" rel="stylesheet" /></tt>  <p><br /> Older browsers ignore the only keyword and won&#8217;t read your iPhone style sheet. To specify a style sheet for devices other than iPhone, use an expression similar to the following:  <p><tt><link media="screen and (min-device-width: 481px)"<br />  &nbsp; href="http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/not-small-device.css" type="text/css" rel="stylesheet" /></tt>  <p> <p><strong>Default Zoom</strong> <p>Instruct mobilesafari to zoom into website content by default to minimize panning. &nbsp;set a viewport width to the width of the device at the head of your html file: <br /><tt><meta name = "viewport" content = "width = device-width"></tt> <br /> <br />Set initial scale and turn off scaling in the html head as well: <br /><tt><meta name = "viewport" content = "initial-scale = 2.3, user-scalable = no"><br /> </tt>  ]]></content:encoded>
<wfw:commentRss> http://blog.inetfusion.com/A55CF7/technotes.nsf/dxcomments/07092010114130AMEWEML2.htm</wfw:commentRss>
<wfw:comment> http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/07092010114130AMEWEML2.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Create a custom &#8217;thank you&#8217; page on web form submission with a simple URL pass through.</title>
<pubDate>Wed, 7 Jul 2010 16:25:04 -0500</pubDate>
<description>
<![CDATA[ 
Lets say that you want the fields for "Agency Name" and a 'Transaction Number' field passed through to a thank you page where the end user can print off a basic receipt notating that they filled o ...
 ]]>
</description>
<link>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/07072010042502PMEWET58.htm</link>
<category>Lotus Notes</category>
<dc:creator>Erik Welch</dc:creator>
<comments>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/07072010042502PMEWET58.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/07072010042502PMEWET58.htm</guid>
<content:encoded><![CDATA[  <br /> <br /> <br /> <br />Lets say that you want the fields for "Agency Name" and a 'Transaction Number' field passed through to a thank you page where the end user can print off a basic receipt notating that they filled out your fancy online form for their future reference. <br /> <br /> <br />On the form, you need to build a URL containing field values in your submit button. &nbsp;For this example, the fields to capture are: <br /> <br />agencyname <br />transactnum <br /> <br />Your submit button will need the following code: <br /> <br />@Command(&#91;FileSave&#93;); <br />@URLOpen("/YOURDATABASE.nsf/YOURCUSTOMTHANKYOU.html?OpenForm&amp;agencyname=" + agencyname +"&amp;transactnum="+transactnum+"") <br /> <br /> <br /> <br />Next you need to set up your thank you/receipt form. <br /> <br />Create a Computed For Display (CFD) field called 'Query_String_Decoded', and set it's value to 'Query_String_Decoded'. <br /> <br />Create a CFD field called 'QueryList' and set it's computed value to: <br />sParams := @ReplaceSubstring(@RightBack(Query_String_Decoded;9);"%20";" ");@Explode(@Explode(sParams;"&amp;");"=") <br /> <br />Now you just need to set up CFD fields for agencyname and transactnum. &nbsp; <br /> <br />The default value for agencyname should be set to: <br /> <br />loc:=@Member("agencyname";QueryList); <br />@If(loc=0;"";@Subset(@Subset(QueryList;loc+1);-1)) <br /> <br />The default value for transactnum should be set to: <br /> <br />loc:=@Member("transactnum";QueryList); <br />@If(loc=0;"";@Subset(@Subset(QueryList;loc+1);-1)) <br /> <br /> <br />That's really all there is to it. &nbsp;You can obviously add more values to your URL and fields to catch the information. &nbsp; <br /> <br />  ]]></content:encoded>
<wfw:commentRss> http://blog.inetfusion.com/A55CF7/technotes.nsf/dxcomments/07072010042502PMEWET58.htm</wfw:commentRss>
<wfw:comment> http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/07072010042502PMEWET58.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Synchronize your Lotus Notes address books for remote access</title>
<pubDate>Tue, 27 Apr 2010 09:20:11 -0500</pubDate>
<description>
<![CDATA[ 
If you use a web browser or mobile device to access your electronic mail, you will probably want your contacts in your Lotus Notes address book available for your use remotely. Doing so requires e ...
 ]]>
</description>
<link>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/04272010092011AMEWEJTP.htm</link>
<category>Lotus Notes</category>
<dc:creator>Erik Welch</dc:creator>
<comments>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/04272010092011AMEWEJTP.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/04272010092011AMEWEJTP.htm</guid>
<content:encoded><![CDATA[ If you use a &nbsp;web browser or mobile device to access your electronic mail, you will probably want your contacts in your Lotus Notes address book available for your use remotely. <br /> <br /> <br /> Doing so requires enabling synchronization between the address book on your workstation, with the one in your web mailbox. &nbsp;The procedure is to first turn on the option to synchronize, and then you need to run the synchronization. <br /> <br /> <br /> <strong>Enable Synchronization on the Replicator</strong> <br /> <br /> On your Lotus Notes client menu, you need to go to File -> Preferences -> Contacts. &nbsp;Click on the box 'Enable Synchronize Contacts on the Replicator'. <br /> <br /> <img  alt="Image:Synchronize your Lotus Notes address books for remote access" border="0" src="http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/04272010092011AMEWEJTP.htm/content/M2?OpenElement" /><br /> <br /> <br /> Next, you need to enable Replication for your address book (Replication is the Lotus Notes synchronization). <br /> Go to the 'Open' button, and then click on 'Replication and Sync'. <br /> <br /> <img  alt="Image:Synchronize your Lotus Notes address books for remote access" border="0" src="http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/04272010092011AMEWEJTP.htm/content/M3?OpenElement" /><br /> <br /> A page listing databases that are replicated for you will open up. &nbsp;Locate the one called 'Synchronize Contacts'. &nbsp;Click the 'Enable' box on the Synchronize Contacts line. <br /> <img  alt="Image:Synchronize your Lotus Notes address books for remote access" border="0" src="http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/04272010092011AMEWEJTP.htm/content/M4?OpenElement" /><br /> <br /> If you want to force replication right now, just click the 'Start Now' button. &nbsp;Otherwise the Lotus Notes client will ask you when shutting down if you want to send any changes to the server (assuming you haven't disabled <em>that</em> option). &nbsp;If you've recently made changes to your address book, then click 'Yes' so that it makes a backup and sends changes to your web interface. &nbsp;If you haven't made any changes, you can just click no which will save you some time shutting down. <br /> <br /> <br /> If you'd like to view your 'web' version of your contacts to make sure everything is synchronizing, open your mailbox, and on the menu go to 'Actions -> Lotus iNotes -> Open mail file copy of Contacts'. &nbsp;Alternatively, you could just open your address book when logged into your mailbox via the internet access.   ]]></content:encoded>
<wfw:commentRss> http://blog.inetfusion.com/A55CF7/technotes.nsf/dxcomments/04272010092011AMEWEJTP.htm</wfw:commentRss>
<wfw:comment> http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/04272010092011AMEWEJTP.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Dell EqualLogic web interface java crashes.. unless running a really old version.</title>
<pubDate>Wed, 7 Apr 2010 14:07:36 -0500</pubDate>
<description>
<![CDATA[ 
After quite some time of the EqualLogic interface not running, with no results from dell, a sysadmin at work discovered the solution. If you're running a high end Nvidia card, and possibly dual monit ...
 ]]>
</description>
<link>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/04072010020736PMEWEQFC.htm</link>
<category>Tech Notes</category>
<dc:creator>Erik Welch</dc:creator>
<comments>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/04072010020736PMEWEQFC.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/04072010020736PMEWEQFC.htm</guid>
<content:encoded><![CDATA[ After quite some time of the EqualLogic interface not running, with no results from dell, a sysadmin at work discovered the solution. <br /> <br />If you're running a high end Nvidia card, and possibly dual monitors, it seems java eats all your memory. <br /> <br />&#91;Note, this is WinXP and IE or Firefox browsers&#93; <br /> <br />The fix: <br />- Go into Control Panel -> Java -> Java tab. <br /> <br />- Click on View <br /> <br />- on the Java Platform line, click in the empty 'Runtime parameters' box and enter: &nbsp; &nbsp; <strong>-Dsun.java2d.d3d=false </strong> <br />- Click 'OK' and then 'Apply' <br />-Voila! &nbsp;finally no crashing. &nbsp;Only dealing with that for a year... <br />  ]]></content:encoded>
<wfw:commentRss> http://blog.inetfusion.com/A55CF7/technotes.nsf/dxcomments/04072010020736PMEWEQFC.htm</wfw:commentRss>
<wfw:comment> http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/04072010020736PMEWEQFC.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Disabling &#8217;Recent Contacts&#8217; for end users in Notes 8.5 personal address books</title>
<pubDate>Tue, 6 Apr 2010 09:36:46 -0500</pubDate>
<description>
<![CDATA[ 
While it seems like a good idea in theory, the Recent Contacts view has been nothing but trouble for many administrators. If you don't have the option turned on to give the user a choice between simi ...
 ]]>
</description>
<link>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/04062010093646AMEWEK62.htm</link>
<category>Lotus Notes</category>
<dc:creator>Erik Welch</dc:creator>
<comments>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/04062010093646AMEWEK62.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/04062010093646AMEWEK62.htm</guid>
<content:encoded><![CDATA[ While it seems like a good idea in theory, the Recent Contacts view has been nothing but trouble for many administrators. &nbsp;If you don't have the option turned on to give the user a choice between similar addresses, it always picks the wrong one. &nbsp;Even with the option, users often get confused and send email to the incorrect address if the names are the same. <br /> <br /> Recent Contacts even gets selected prior to the Directory Address in the address type ahead. &nbsp;Temporary forwarding addresses get added here. &nbsp;Internal groups get added here and then don't route properly. &nbsp;It's just a mess. &nbsp; <br /> <br /> Thank goodness there's a simply Notes.INI setting you can roll out to via a policy to &nbsp;disable for users across the organization. &nbsp;Unfortunately, it's going to take a bit of work. &nbsp;You need to create a policy option, enable it, &nbsp;and then have users clear their recent contacts view once it's in place. <br /> <br /> <strong>Edit your Address Book template to create a policy option</strong>  <ul> <li>Open your Domino Directory Template (pubnames.ntf) in Designer, and open the SubForm <strong>$ClientPreferenceSubform</strong>.  </li><li>On the Basics tab, you can add a row on the bottom under 'Enable scheduled local agents.  </li><li>In the first column, make yourself the label: &nbsp;'Add Names to Recent Contacts View'  </li><li>In the second column, create a new field called <strong>$PrefDisableDPABProcessing</strong>, make it 'Dialog List' type, and for it's choices give it <strong>Enable|0</strong> and <strong>Disable|1</strong> &nbsp; &nbsp; &nbsp; This is the only field that is required, the next three columns (next two steps) are optional.  </li><li>In the third column, create a new field called <strong>$PrefDisableDPABProcessing$HA</strong> as a combo box, and give it the same options as the field above it ($BP080000000$HA).  </li><li>Continue with the fourth and fifth columns creating fields <strong>$PrefDisableDPABProcessing$IP</strong> and <strong>$PrefDisableDPABProcessing$PO</strong> and give them the same options as other fields in their columns. &nbsp;  </li><li>Save and Close your subform </li></ul><br /> We can't anticipate what IBM is going to do, but I imagine they may update the template design to resolve this issue or others, so you have to decide if you want to risk future updates overriding your customization. &nbsp; You can 'prohibit design refresh or replace to modify' for this subform, or alternatively you can copy the subform and rename it as a backup and apply your changes again if needed. &nbsp;I personally just make a backup and keep a separate log of what I modify. &nbsp;Then &nbsp;I check it against any new address book modifications rolled out by IBM and just copy my design changes back into the template when needed. <br /> <br /> Next, <strong>replace the design of your Domino Directory with your modified template</strong>, and go into your 'Desktop Settings' of your policies and choose Disable on your new field. &nbsp;After the policy is set, then as users log into their mailbox with their Notes client a line containing DisableDPABProcessing=1 will be added. &nbsp;This will automatically check the option 'Do not automatically add names to the Recent Contacts view' in their Contacts Preferences. <br /> <br /> The end user will need to restart their Notes Client before this setting gets applied, so you may need to wait a couple of days to allow the policy to get fully rolled out to everyone. &nbsp;When your confident that you can move on, then... <br /> <br /> <strong>Delete all Recent Contacts from your users Local Address book </strong> <br /> The simplest way to do this is just send them a button in an email containing code to purge all those pesky recent contacts.  <ul> <li>Compose an email explaining what's going on  </li><li>In the body of the email, choose 'Create -> Hotspot -> Button' on the menu  </li><li>Change the button to LotusScript and enter the following:</li></ul>'-------button code----- <br /> Sub Click(Source As Button) <br />  &nbsp; &nbsp; &nbsp; Dim nab As NotesDatabase <br />  &nbsp; &nbsp; &nbsp; Set nab = New notesdatabase("","names.nsf") <br />  &nbsp; &nbsp; &nbsp; Dim view As NotesView <br />  &nbsp; &nbsp; &nbsp; Set view = nab.GetView("(Recent Contacts)") <br />  &nbsp; &nbsp; &nbsp; Dim vc As Notesviewentrycollection <br />  &nbsp; &nbsp; &nbsp; Set vc = view.allentries <br />  &nbsp; &nbsp; &nbsp; Call vc.RemoveAll(True) <br />  &nbsp; &nbsp; &nbsp; Msgbox "Finished. &nbsp;Removed " &amp; vc.Count &amp; " temporary entries from your personal address book." <br /> End Sub <br /> '----- end code ----- <br /> <br /> <br /> If everything worked as anticipated, your users should now be Recent Contacts free.   ]]></content:encoded>
<wfw:commentRss> http://blog.inetfusion.com/A55CF7/technotes.nsf/dxcomments/04062010093646AMEWEK62.htm</wfw:commentRss>
<wfw:comment> http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/04062010093646AMEWEK62.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Setting up Sametime Business Card Photos</title>
<pubDate>Fri, 2 Apr 2010 10:12:02 -0500</pubDate>
<description>
<![CDATA[ 
I finally got SameTime to properly display photos consistently. It's not like I spent a whole lot of time on it before, but the 'Now it's Working!', 'Now it's Not!' was getting a bit annoying. I thi ...
 ]]>
</description>
<link>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/04022010101159AMEWEKU3.htm</link>
<category>Lotus Notes</category>
<dc:creator>Erik Welch</dc:creator>
<comments>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/04022010101159AMEWEKU3.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/04022010101159AMEWEKU3.htm</guid>
<content:encoded><![CDATA[ I finally got SameTime to properly display photos consistently. &nbsp;It's not like I spent a whole lot of time on it before, but the 'Now it's Working!', 'Now it's Not!' was getting a bit annoying. &nbsp;I think I tinkered with it once or twice over the past couple of years when I had some free time, but I couldn't get the photos to show for everyone, much less all the time even on my own machine. &nbsp;This last week I decided it was time to be able to eliminate a custom phone list that did have photos, and migrate all the information to the main address book so that folks could just use their Sametime contacts to get all the business card information. <br /> <br /> I think it's now working properly, &nbsp;and I've compiled a task list that is a combination of two sources (mainly IBM documentation of course), as well as a couple of little things I picked up elsewhere. <br /> <br /> For reference, I've made my notes from: &nbsp;<a href="http://www-01.ibm.com/support/docview.wss?rs=899&amp;uid=swg21250874">IBM's Technote</a> and a how-to from &nbsp;<a href="http://www.bingham.co.za/wp-content/uploads/2006/08/ST75BusinessCardsv11.pdf">Grant Bingham</a> who points out a trick (from a Greg Walrath?) to allow customization to the address book template while still getting updates as IBM rolls them out. <br /> <br /> <br /> Note that you must have Sys Admin rights to the Domino and ST servers. <br /> <br /> 1. &nbsp;Modify the Domino directory to store photos.  <ul> <li>Open your names.ntf &nbsp;(domino directory template ) in the domino designer.  </li><li>Open the <strong><strong>Subform</strong></strong> $PersonExtensibleSchema. &nbsp;(This is a subform that displays in the 'Other' tab of the person document and is here for modifications.)  </li><li>Create a field on this subform. &nbsp;You can call it whatever you like, but I followed along and named it 'UserExtPhoto'.  </li><li>Make this field Rich Text. </li><li>Put a label or a comment next to the field so that folks in the future know why it's here.  </li><li>On the $PersonExtensibleSchema, design properties, make sure to click 'Prohibit design refresh or replace to modify'. &nbsp; You don't want to have to do this again later.  </li><li>Refresh the design of your address book to apply the changes you made to your template.</li></ul><br /> 2. &nbsp;Import your pictures.  <ul> <li>Prepare your photos. &nbsp;They must be thumbnails. &nbsp;There is a max size, I believe around 40k. &nbsp;I set mine at 120px wide and scale to retain proportion. &nbsp;You may be able to adjust to 200px or so wide to eliminate potential whitespace in some cient versions. </li><li>Edit a user's person document, and go to your fancy new field on the 'Other' tab.  </li><li>Import a photo into this field. &nbsp;You can use 'create picture', or just paste from your clipboard. &nbsp;This will allow you to view the person in your address book, without having to click on an attachment. </li><li>Save the person document. &nbsp;Repeat for other folks. </li></ul>3. &nbsp;Server Side:  <ul> <li>Browse to your STCenter.nsf (http://SametimeServer.domain.com/stcenter.nsf)  </li><li>Log in, and click on "Administer the server" link on the far left.  </li><li>Click on Configuration -> Business Card Setup.  </li><li>Select the "Photo" attribute from the left hand box and click Add.  </li><li>At the bottom, in 'Attribute Value' for the photo, type in the field name you used earlier (UserExtPhoto). &nbsp;Note that this value is CASE SENSITIVE, so verify.  </li><li>Click Update and get out of there.  </li><li>Shut down the SameTime service either via console command, or with your Admin client. &nbsp;You can shut down the whole domino server if you'd like.  </li><li>Go to the domino directory on your ST server and edit the file 'UserInfoBCardUpdate.xml'. &nbsp;Check the 'Attributes' line and make sure 'Photo' is last. &nbsp;I don't know why it matters, but I've found it gets out of order and the photo quits working. &nbsp;i.e. <Detail Id="Attributes" FieldName="Name;Company;Title;Telephone;MailAddress;Location;Photo" Type="text/plain" />  </li><li>Start your Sametime Server back up. &nbsp; Log into your SameTime client, and navigate to a user for which you've added a photo. &nbsp;Right click and choose 'Refresh Person Info', and then right click again and choose 'Business Card'. &nbsp; </li></ul><br /> <strong>Troubleshooting</strong><br><br> <br /> I still occasionally have trouble with the business card information just vanishing, or just not updating even when clicking to Refresh Person Info. &nbsp;You can manually check if the ST server is pulling the current data from the source by using a browser and going to http://your server name.domain/servlet/UserInfoServlet?operation=3&amp;userid=<strong>your login id</strong>&amp;setid=1 <br /> <br /> If the information is correct, but your client is still not displaying properly, you can restart the STConfiguration and HTTP tasks &nbsp;on the Sametime server and usually this resolves the issue.   ]]></content:encoded>
<wfw:commentRss> http://blog.inetfusion.com/A55CF7/technotes.nsf/dxcomments/04022010101159AMEWEKU3.htm</wfw:commentRss>
<wfw:comment> http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/04022010101159AMEWEKU3.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Revision to my Offline Domino Server Maintenance</title>
<pubDate>Tue, 9 Feb 2010 09:01:47 -0500</pubDate>
<description>
<![CDATA[ 
Note to self: -WEEKLY - schedule Fixup, updall, and compact -MONTHLY- Review server stats for performance and availability (statrep.nsf for this review) Run a cluster analysis if cluster serv ...
 ]]>
</description>
<link>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/02092010090147AMEWEKMP.htm</link>
<category>Tech Notes</category>
<dc:creator>Erik Welch</dc:creator>
<comments>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/02092010090147AMEWEKMP.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/02092010090147AMEWEKMP.htm</guid>
<content:encoded><![CDATA[ Note to self: <br /> <br /> <br /> -WEEKLY - <br /> schedule Fixup, updall, and compact <br /> <br /> <br /> -MONTHLY- <br /> Review server stats for performance and availability (statrep.nsf for this review) <br /> Run a cluster analysis if cluster servers. <br /> <br /> <br /> --SCHEDULED MAINTENANCE - server services unavailable <br /> <br /> Stop mail routing, and any other unneeded services. <br /> Tell SMTP Quit <br /> route all <br /> Tell Router Quit <br /> Tell HTTP Quit <br /> Tell IMAP Quit <br /> Traveler, etc. <br />  <br />When server down, rename log.nsf, mail.box, delete busytime.nsf<br /> <br /> Run maintenance commands (nfixup, ncompact, etc. for running command line on Windows while server down)<br /> nfixup names -f -J -v -l <br /> nfixup admin4 -f -J -v -l <br /> ncompact names -c -i -K -F <br /> ncompact admin4 -c -i -K -F <br /> nfixup -F -J <br /> nupdall -R -X <br /> ncompact -c -i <br /> <br /> Defrag drives if Windows machine <br /> Start/Restart server and ensure all tasks (router, http, etc.) are running. &nbsp;Copy any unrouted mail from renamed mail.box to new mail.box<br /> <br />   ]]></content:encoded>
<wfw:commentRss> http://blog.inetfusion.com/A55CF7/technotes.nsf/dxcomments/02092010090147AMEWEKMP.htm</wfw:commentRss>
<wfw:comment> http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/02092010090147AMEWEKMP.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Mapping templates on my thumb drive under the NotesData directory.</title>
<pubDate>Tue, 12 Jan 2010 09:03:55 -0500</pubDate>
<description>
<![CDATA[ 
Call me paranoid, but I just don't like leaving my development tools and notes templates that I've built over the years on personal time, or at other jobs on my current work computer. I still need ac ...
 ]]>
</description>
<link>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/01122010090355AMEWEKP2.htm</link>
<category>Lotus Notes</category>
<dc:creator>Erik Welch</dc:creator>
<comments>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/01122010090355AMEWEKP2.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/01122010090355AMEWEKP2.htm</guid>
<content:encoded><![CDATA[ Call me paranoid, but I just don't like leaving my development tools and notes templates that I've built over the years on personal time, or at other jobs on my current work computer. &nbsp;I still need access to them though, as I have built up quite a little knowledge base for myself. &nbsp;Paltry by other people's standards I'm sure, but important to me nonetheless. &nbsp; &nbsp;It's not that I don't trust others that I work with, as I'm the only developer here. &nbsp;It's just a really political environment, and you never know when they'll be sending the 'box brigade' around to pack someone up and toss them out. &nbsp; <br /> <br /> I usually keep these templates on a separate thumb drive and just navigate out of Notes Data to access them. &nbsp;It's been a pain, but nothing worth spending any time thinking about. &nbsp; It occurred to me that on all my servers that I simply map the external san drives as a subdirectory under NotesData when I need more space for something. &nbsp; Regular old shortcuts don't do the trick in Windows, but maybe you could map a drive to a subdirectory. &nbsp;I've been running windows for years and never even bothered to try. &nbsp;Lo and behold, you can and it's fairly pain free. <br /> <br /> 1. &nbsp;Create a new subdirectory on your computer under your NotesData directory. <br /> <br /> 2. &nbsp;Right-click on <strong>My Computer</strong> and select<strong> Manage</strong> from the menu. <br /> <br /> 3. &nbsp;Click <strong>Disk Management</strong> on the left under the <strong>Storage </strong>category. <br /> <br /> 4. &nbsp;Right-Click the drive you want to map to the directory you previously created and select <strong>Change Drive Letter and Paths</strong>. &nbsp;A box should open, and then you click the <strong>Add</strong> button. <br /> <br /> 5. &nbsp;Select <strong>Mount in the following empty NTFS folder</strong>, and use the <strong>Browse</strong> button to navigate to your folder. <br /> <br /> 6. &nbsp;Click OK when needed to navigate out of the dialog boxes. &nbsp;Verify &nbsp;in Windows Explorer that the contents of your thumb drive now show up in your new NotesData subdirectory.   ]]></content:encoded>
<wfw:commentRss> http://blog.inetfusion.com/A55CF7/technotes.nsf/dxcomments/01122010090355AMEWEKP2.htm</wfw:commentRss>
<wfw:comment> http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/01122010090355AMEWEKP2.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Notes deployment </title>
<pubDate>Wed, 6 Jan 2010 09:55:51 -0500</pubDate>
<description>
<![CDATA[ 
Per IBM recommendations, and borrowed from www.andypedisich.com. Here for my reference, as I need to throw away the printed piece of paper I'd been hanging onto. 1. Use Multi-user client install as ...
 ]]>
</description>
<link>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/01062010095551AMEWELPG.htm</link>
<category>Tech Notes</category>
<dc:creator>Erik Welch</dc:creator>
<comments>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/01062010095551AMEWELPG.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/01062010095551AMEWELPG.htm</guid>
<content:encoded><![CDATA[ Per IBM recommendations, and borrowed from www.andypedisich.com. &nbsp;Here for my reference, as I need to throw away the printed piece of paper I'd been hanging onto. <br /> <br />1. &nbsp;Use Multi-user client install as default unless unique situation requires the users to switch ID and maintain the rest of the desktop <br /> <br />2. &nbsp;Seamless setup on first startup. &nbsp; Include the redesign of the mail file with desktop policy. <br /> <br />3. &nbsp;User ID fetched from ID Vault <br /> <br />4. &nbsp;If migration step needed, use startup utility with script. <br /> <br />5. &nbsp;User settings and data populated through roaming user. &nbsp;Makes easer to manage core config, and restore data after workstation failures. <br /> <br />6. &nbsp;Notes settings driven through Domino policies. <br /> <br /> <br />  ]]></content:encoded>
<wfw:commentRss> http://blog.inetfusion.com/A55CF7/technotes.nsf/dxcomments/01062010095551AMEWELPG.htm</wfw:commentRss>
<wfw:comment> http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/01062010095551AMEWELPG.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Those silly cluster commands I only use once a year</title>
<pubDate>Wed, 6 Jan 2010 09:51:58 -0500</pubDate>
<description>
<![CDATA[ 
Notes to self... Show status: Cluster Resources turn off resource: i.e.: Cluster iPrint offline, or Cluster iFolder offline Cluster iPrint online, etc. To turn off and restart: cluster leave c ...
 ]]>
</description>
<link>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/01062010095158AMEWELM3.htm</link>
<category>Tech Notes</category>
<dc:creator>Erik Welch</dc:creator>
<comments>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/01062010095158AMEWELM3.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/01062010095158AMEWELM3.htm</guid>
<content:encoded><![CDATA[ <strong>Notes to self...</strong> <br /> <br />Show status: &nbsp;Cluster Resources <br /> <br />turn off resource: &nbsp;i.e.: &nbsp;Cluster iPrint offline, or Cluster iFolder offline <br /> <br />Cluster iPrint online, etc. <br /> <br /> <br />To turn off and restart: <br />cluster leave <br />cluster join <br /> <br /> <br />For that pesky ifolder, a quick restart script: <br /> <br />------------------ <br /> <br />#!/bin/bash <br />echo "Stop Apache" <br />rcapache2 stop <br />echo "Remove temp files" <br /> <br />rm -rf /tmp/.wapi <br />rm -rf /tmp/mod_mono_server* <br />rm -rf /tmp/wwwrun-temp-aspnet-0/ <br /> <br />killall mono <br />killall simias <br /> <br />sleep 10 <br />echo "Starting Apache" <br />rcapache2 start <br /> <br />  ]]></content:encoded>
<wfw:commentRss> http://blog.inetfusion.com/A55CF7/technotes.nsf/dxcomments/01062010095158AMEWELM3.htm</wfw:commentRss>
<wfw:comment> http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/01062010095158AMEWELM3.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Sync your Gmail Contacts with Thunderbird Address book</title>
<pubDate>Tue, 5 Jan 2010 12:57:30 -0500</pubDate>
<description>
<![CDATA[ 
I'm terribly cluttered when it comes to keeping track of addresses and phone numbers. It's not my fault. I use WordPerfect, Lotus Notes, Gmail, and a Moto phone that I can only push contacts to it ...
 ]]>
</description>
<link>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/01052010125730PMEWEQ92.htm</link>
<category>Tech Notes</category>
<dc:creator>Erik Welch</dc:creator>
<comments>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/01052010125730PMEWEQ92.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/01052010125730PMEWEQ92.htm</guid>
<content:encoded><![CDATA[ I'm terribly cluttered when it comes to keeping track of addresses and phone numbers. &nbsp;It's not my fault. &nbsp;I use WordPerfect, &nbsp;Lotus Notes, Gmail, and a Moto phone that I can only push contacts to it via it's Moto Tools software. <br /> <br /> In Moto's defense, I can sync my Notes contacts with it's address book. &nbsp;Pretty slick in fact... when the software want's to recognize my phone. &nbsp;It's buggy as hell, and has never worked acceptably on MS NT, XP, or Vista, through my V400, V600, or A1200 motorolas. &nbsp;Then getting all that to my WP address book? &nbsp;Don't even bother, I've had enough of tinkering with that. &nbsp;I've had it working, but don't remember how. <br /> <br /> <img  src="http://lh6.ggpht.com/_jW-hZu_MRk4/R5BHXhQLXzI/AAAAAAAAAD8/P1LpX38SXyo/s800/motoming.jpg"> <br /> <br /> In my quest to be more productive, I think I'll be moving to an Android based phone. &nbsp;I love my A1200, it makes great calls and the clamshell design is superior to those candy bar phones. &nbsp;I really have no complaints. &nbsp;If only it had wifi, and I could get away from the crippled motorola linux. <br /> <br /> Ok, I'll admit, I've had it 3 years and I want a Droid. &nbsp; I'm not completely sold I NEED a new device. &nbsp;I'm still feeling a bit burned from my Palm T3 that has sat in a drawer for five years now that didn't live up to expectations.<br /> <br /> Regardless, &nbsp;the first thing I needed to do was start organizing my Address book. &nbsp;For that, I found '<a href=http://www.zindus.com/><span style="text-decoration:underline">Zindus</span></a>', a google and Thunderbird contact sync tool. &nbsp;You just add it as a plugin to Thunderbird, and start adding and syncing all your gmail addresses. &nbsp;It's a mess, but I'm getting there. <br />   ]]></content:encoded>
<wfw:commentRss> http://blog.inetfusion.com/A55CF7/technotes.nsf/dxcomments/01052010125730PMEWEQ92.htm</wfw:commentRss>
<wfw:comment> http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/01052010125730PMEWEQ92.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Search your Lotus Notes Mail Journal archives</title>
<pubDate>Tue, 22 Dec 2009 12:55:44 -0500</pubDate>
<description>
<![CDATA[ 
Part 1 of 2 The ability to archive all mail traffic with mail journaling is a very powerful tool that can be used either by a private company to monitor mail, or perhaps a government agency that is ...
 ]]>
</description>
<link>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/12222009125544PMEWEQ7V.htm</link>
<category>Open Records</category>
<dc:creator>Erik Welch</dc:creator>
<comments>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/12222009125544PMEWEQ7V.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/12222009125544PMEWEQ7V.htm</guid>
<content:encoded><![CDATA[  Part 1 of 2 <br /> <br /> The ability to archive all mail traffic with mail journaling is a very powerful tool that can be used either by a private company to monitor mail, or perhaps a government agency that is required to keep all mail for Open Records purposes. &nbsp;In addition, it's a lot easier to go through mail journals from a document production standpoint if you're involved in a lawsuit, than it is to go through hundreds of individual user mailboxes. &nbsp;This assumes of course that your organization has determined that it's best interest is to maintain this documentation, and you have some kind of document retention and disposition schedule in place. <br /> <br /> As you probably know, by default the journaling process encrypts the body and recipient fields in the mail documents when journaling, and can only be accessed with the proper user id that contains the encryption key. &nbsp;While this is great for super tight security, it's a bit overkill for many situations where &nbsp;you need to search across multiple archives, and a tight control of the mail journal ACL would suffice. &nbsp;The following procedure is an overview of what I've done in my organizations, but you'll need to weigh the pro's and con's and determine if it would be appropriate in your situation. <br /> <br /> <strong>1)</strong> You will need to set this up on a server that isn't mission critical if possible. &nbsp;Your mail archives and their corresponding indexes will take up a whole lot of space, and you might want to consider some expandable storage. &nbsp;Security may be an issue and you may prefer to put this on a server that only certain administrative folks have access. &nbsp;In addition, with hundreds of mail archives you probably don't want this on your production mail server as they consistency checks on a restart could take an uncomfortable amount of time (See the '<a href="http://www-01.ibm.com/support/docview.wss?uid=swg21266170"><span style="text-decoration:underline">Fast Restart' IBM Technote</span></a> as it may help if you can't run another server). <br /> <br /> <strong>2) </strong> If your just setting up journaling, or modifying a current environment, the first order of business is to ensure you are archiving all mail, and that the fields are not encrypted so that the server can index those fields for Full Text search queries. <br /> <center> <br /> <img  src="http://lh5.ggpht.com/_jW-hZu_MRk4/SzJ4PlDQsdI/AAAAAAAAANw/GtokQS10o9U/s800/jsettings.jpg"><br /> <strong>Exclude fields from encryption that you will want to search.</strong><br><br> <br /> <img  src="http://lh4.ggpht.com/_jW-hZu_MRk4/SzJ4PlTzg1I/AAAAAAAAAN0/6480yhyOI00/s400/journal.jpg"><br><br /> <strong>Set up your mail rule to journal all messages.</strong><br>See your Administration help for specifics.<br><br></center> <br /> <br /> <br /> <br /> <br /> <strong>3) </strong>After journaling is set up the way you want it, you'll need to update your journaling template, and then unencrypt all your old mail archives so that the server can index them. <br /> - Replace the design of your mail journal db with the custom template you can download below &nbsp;that is based on the R8 journaling template. &nbsp; Make sure that &nbsp;you select the properties "List in db Catalog", and "Include in multi-db indexing".<br /> <img  sc="http://lh6.ggpht.com/_jW-hZu_MRk4/SzJ4PlrR0pI/AAAAAAAAAN4/4-8XwMK2CD8/s800/index.jpg"><br /> <br /> <strong>4)</strong> Copy all your mail journals to a subdirectory in your Notes Data directory (for organizational purposes) and the run the designer process on the server console to update them (<strong>load design</strong>). <br /> <br /> <br /> <br /> <strong>5)</strong> Log in with your Journaling ID that has the authority to read the mail documents (has the encryption key), and one at a time go through the databases and unencrypt the docs by clicking the 'Process Encrypted' view, selecting all the documents and clicking the 'Unencrypt' button (as shown in the picture below). <br /> <br /> <img  src="http://lh5.ggpht.com/_jW-hZu_MRk4/SzJ4PzjXKZI/AAAAAAAAAN8/FPtDPq_CeTY/s800/processencrypted.jpg"> <br /> <br /> <br /> <br /> This is tedious and will take some time. &nbsp;I suggest doing this on a secondary workstation as it will be tied up while the agent works. &nbsp;In one instance, I had over 200 databases to process, and it took me a week and a half of off and on attention to it to get this done. <br /> <br /> Note: &nbsp;I suspect there should be a way to give your server ID the encryption key from your Journaling ID, however I was unable to find anything in the Notes Help databases. &nbsp;It would sure save some time by eliminating the task of processing all the documents.<br /> <br /> <strong>6)</strong> Under domino administrator, select all the journaling databases and modify the ACL (Access Control Level) to include the current server, as well as any relevant employees that need to Read this database. <br /> <br /> <strong>7)</strong> Run the domain index process. <br /> <br /> <strong>8) </strong>You should now be able to go into catalog.nsf, and if you are an authorized user, click on Domain Search and run a multi-db query on all of your mail journals. &nbsp;Pretty slick huh? &nbsp; &nbsp;Except that now you'll notice that as fast as a multi-db search is, you can't search by specific fields (ie From, or Sender), and the results are not in any useful order. &nbsp;Additionally, you can't grab the results and throw them into another container/mailbox for production purposes. &nbsp;The multi-db domain search is still very handy for getting just a few narrow results, but for advanced needs we now need to build on it and actually do something with our search results. <br><br /> ->Part Two: Advanced Actions <em>Coming Soon...</em> <br /> <br /> Download custom template &nbsp; &nbsp;   ]]></content:encoded>
<wfw:commentRss> http://blog.inetfusion.com/A55CF7/technotes.nsf/dxcomments/12222009125544PMEWEQ7V.htm</wfw:commentRss>
<wfw:comment> http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/12222009125544PMEWEQ7V.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Rebuild the Domain Index for the Domino Server</title>
<pubDate>Tue, 22 Dec 2009 12:35:57 -0500</pubDate>
<description>
<![CDATA[ 
Lotus® Domino® server's Domain Index needs to be recreated due to corruption, or other reasons. From the admin client, verify the desired databases to be indexed have the properties 'List in Databa ...
 ]]>
</description>
<link>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/12222009123557PMEWEPTK.htm</link>
<category>Lotus Notes</category>
<dc:creator>Erik Welch</dc:creator>
<comments>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/12222009123557PMEWEPTK.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/12222009123557PMEWEPTK.htm</guid>
<content:encoded><![CDATA[ Lotus® Domino® server's Domain Index needs to be recreated due to corruption, or other reasons. &nbsp; <br /> <br />From the admin client, verify the desired databases to be indexed have the properties 'List in Database Catalog', and 'Include in multi-database indexing' selected. <br /> <br />At the domino server console type: <br /> <br /><strong>tell domidx q</strong> <br /> <br />Navigate to the domino data directory and delete ftdomain.di directory. <br /> <br />From the Admin client, delete the catalog.nsf from the files view. <br /> <br /> <br />Restart the Domino Server. &nbsp;If your catalog isn't already set to run in your Notes.ini, type: <br /> <br /><strong>load catalog</strong> <br /> <br />To speed things up, you can go into the server document, change 'Server Tasks -> Domain Indexer ->Repeat Interval of' to a shorter indexing interval. &nbsp;You can verify with <strong>Show Schedule</strong> at the console. <br /> <br />Note that the domain indexing process can take a considerable amount of time to create, and the server will be taxed heavily. &nbsp;You may need to temporarily stop any server tasks that aren't critical until finished. <br /> <br />You can verify the database is indexed by going to the admin client, opening catalog.nsf and moinitoring the domain indexer status. &nbsp;When everything has indexed, don't forget to go back into the server document and lengthen the indexing interval so as not to unnecessarily use resources, and re-enable any tasks that were temporarily terminated.  ]]></content:encoded>
<wfw:commentRss> http://blog.inetfusion.com/A55CF7/technotes.nsf/dxcomments/12222009123557PMEWEPTK.htm</wfw:commentRss>
<wfw:comment> http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/12222009123557PMEWEPTK.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Lotus Rooms and Resources Manager - fix busytime.nsf issues</title>
<pubDate>Thu, 17 Dec 2009 16:10:09 -0500</pubDate>
<description>
<![CDATA[ 
Most issues with the Reservations database can be tracked down to duplicates, improperly removed rooms and resources, or a corrupt busytime.nsf database. Verify that your resource names are correct, ...
 ]]>
</description>
<link>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/12172009041009PMEWETZF.htm</link>
<category>Lotus Notes</category>
<dc:creator>Erik Welch</dc:creator>
<comments>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/12172009041009PMEWETZF.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/12172009041009PMEWETZF.htm</guid>
<content:encoded><![CDATA[ Most issues with the Reservations database can be tracked down to duplicates, improperly removed rooms and resources, or a corrupt busytime.nsf database. &nbsp;Verify that your resource names are correct, and that they are no longer in the 'mail in databases' section of your Address book if they have been deleted. <br /> <br />A corrupted busytime.nsf database can take quite some time to rebuild depending on how big your reservations database is, so look for other problems first. &nbsp; <br /> <br />- You may have users that no longer exist in your domino directory but have outstanding calendars and reservations. &nbsp;Resolve these first. &nbsp;Check the schedule db with: &nbsp;<strong>Tell sched validate </strong> <br /> <br />-Additionally, check the RnRmgr with: &nbsp;<strong>tell rnrmgr validate</strong> <br /> <br /> <br />To recreate busytime.nsf, you can simply shut the server down and delete the file. &nbsp;Most often however, you can't afford any downtime on that server, so the procedure is to shut down services using it, and delete the file quickly after forcing the server to release the file for a moment. &nbsp; <br /> <br />- Verify that you have the busytime.NTF template on your server before continuing. &nbsp; <br />- Stop the sched, calconn, and rnrmgr tasks <br />- Navigate to the notes data directory containing your busytime.NSF database. <br />- Enter <strong>dbcache flush</strong> into the server console, and then quickly alternate back to the data directory and delete busytime.NSF <br />- Once successful, load sched, calconn, rnrmgr and busytime.nsf will begin rebuilding. <br /><br />   ]]></content:encoded>
<wfw:commentRss> http://blog.inetfusion.com/A55CF7/technotes.nsf/dxcomments/12172009041009PMEWETZF.htm</wfw:commentRss>
<wfw:comment> http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/12172009041009PMEWETZF.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Domino Blog - RSS publishing Fix</title>
<pubDate>Tue, 24 Nov 2009 14:37:53 -0500</pubDate>
<description>
<![CDATA[ 
Appears Syndication does not have a default ISO type thus throwing the following error XML Parsing Error: XML declaration not well-formed Location: http://domino-69.prominic.net/A55CF7/technotes.n ...
 ]]>
</description>
<link>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/11242009023753PMEWES7R.htm</link>
<category>Lotus Notes</category>
<dc:creator>Erik Welch</dc:creator>
<comments>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/11242009023753PMEWES7R.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/11242009023753PMEWES7R.htm</guid>
<content:encoded><![CDATA[ <strong><em>Appears Syndication does not have a default ISO type thus throwing the following error</em></strong> <br /> <br /> <br /> XML Parsing Error: XML declaration not well-formed <br /> Location: http://domino-69.prominic.net/A55CF7/technotes.nsf/3F36F5CACBC314CB802571690058604F <br /> Line Number 1, Column 31:<?xml version="1.0" encoding="" ?> <br /> ------------------------------^ <br /> <br /> &#91;Domino Blog 8.x template&#93; <br />Note that this is when the RSS option is set to pull from a view, as none of the others worked either. Appears the computed form and value it's referencing doesn't exist. &nbsp; <br /> <img  alt="Image:Domino Blog - RSS publishing Fix" border="0" src="http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/11242009023753PMEWES7R.htm/content/M2?OpenElement" /><br /> <br /> It's the computed value after 'encoding', and has the &nbsp;Formula: &nbsp;@DbLookup("";"":"";"vConfig"; 1;"config_xmlencoding") <br /> <br /> This form (vConfig) does not exist in the DB. &nbsp;The Form "Config" does.. however the default value for config_xmlencoding appears to be blank. <br /> <br /> The Fix <br /> - &nbsp;Added the value '<tt>ISO-8859-1</tt>' to the configuration document, under the Syndication tab, field " XML/Content Encoding:" down towards the bottom. <br /> <br /> When replacing the computed value with "ISO-8859-1", it appears to be working. &nbsp;Have not changed the lookup form value. &nbsp;This is probably in some documentation somewhere.. but there's no documentation with the template.  ]]></content:encoded>
<wfw:commentRss> http://blog.inetfusion.com/A55CF7/technotes.nsf/dxcomments/11242009023753PMEWES7R.htm</wfw:commentRss>
<wfw:comment> http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/11242009023753PMEWES7R.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Airstream Office updates</title>
<pubDate>Thu, 19 Nov 2009 15:25:18 -0500</pubDate>
<description>
<![CDATA[ 
My home office is being commandeered for a quick trip. Have to go visit the in-laws for a couple of days. Our choice is to stay on location in a tent or the trailer, or in a hotel 30 minutes away f ...
 ]]>
</description>
<link>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/11192009032518PMEWET5E.htm</link>
<category>Airstream</category>
<dc:creator>Erik Welch</dc:creator>
<comments>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/11192009032518PMEWET5E.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/11192009032518PMEWET5E.htm</guid>
<content:encoded><![CDATA[  My home office is being commandeered for a quick trip. &nbsp;Have to go visit the in-laws for a couple of days. &nbsp;Our choice is to stay on location in a tent or the trailer, or in a hotel 30 minutes away from the family we're hassling. <br /> <br /> The idea of a tent sounds a bit uncomfortable considering the cold weather, so I'm now clearing my computer and other peripherals out of the Airstream. <br /> <br /> In preparation, we've also: <br /> - Replaced 2 tires ($250) <br /> - Replaced the main front window glass (rock damage - $58) <br /> - Replaced the hot water thermostat (old one wouldn't shut off) ($20) <br /> - Updated the tag ($25) <br /> - Replaced a fuse in the Univolt so all the lights in the front will work (free!) <br /> - Replaced the door hold-open mechanism. ($8) <br /> <br /> I'm now questioning my judgment as to why I don't want to stay 30 minutes out of the way, &nbsp;in a maintenance free hotel room for less than I'm putting into this old girl to get her back on the road.   ]]></content:encoded>
<wfw:commentRss> http://blog.inetfusion.com/A55CF7/technotes.nsf/dxcomments/11192009032518PMEWET5E.htm</wfw:commentRss>
<wfw:comment> http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/11192009032518PMEWET5E.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Run multiple instance of Google Talk</title>
<pubDate>Sun, 15 Nov 2009 08:46:48 -0500</pubDate>
<description>
<![CDATA[ 
Run second instance of Google Talk. (windows) Modify (or make) your desktop shortcut with the switch /nomutex to allow work and personal accounts accounts to run at the same time. "c:\program ...
 ]]>
</description>
<link>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/11132009084648AMEWEKCC.htm</link>
<category>Tech Notes</category>
<dc:creator>Erik Welch</dc:creator>
<comments>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/11132009084648AMEWEKCC.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/11132009084648AMEWEKCC.htm</guid>
<content:encoded><![CDATA[  Run second instance of Google Talk. &nbsp;(windows) <br /> <br /> Modify (or make) your desktop shortcut with the switch /nomutex to allow work and personal accounts accounts to run at the same time. &nbsp; <br /> <tt><br /> "c:\program files\google\google talk\googletalk.exe" /nomutex</tt>   ]]></content:encoded>
<wfw:commentRss> http://blog.inetfusion.com/A55CF7/technotes.nsf/dxcomments/11132009084648AMEWEKCC.htm</wfw:commentRss>
<wfw:comment> http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/11132009084648AMEWEKCC.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Embed Google Talk status on your website.</title>
<pubDate>Thu, 12 Nov 2009 16:39:50 -0500</pubDate>
<description>
<![CDATA[ 
Embed your Google Talk status in your website. A Google Talk status notification will let visitors to your web page chat with you whenever you're signed in. Possibilities? Set up an accounts sp ...
 ]]>
</description>
<link>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/11122009043949PMEWEUKY.htm</link>
<category>Tech Notes</category>
<dc:creator>Erik Welch</dc:creator>
<comments>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/11122009043949PMEWEUKY.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/11122009043949PMEWEUKY.htm</guid>
<content:encoded><![CDATA[ <img  alt="Image:Embed Google Talk status on your website." border="0" src="http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/11122009043949PMEWEUKY.htm/content/M2?OpenElement" /><strong><br /> <br /> Embed your Google Talk status in your website.</strong> <br /> <br /> A Google Talk status notification will let visitors to your web page chat with you whenever you're signed in. <br /> <br /> Possibilities? &nbsp;Set up an accounts specific for customer service and display who is online? &nbsp; Not only do you get online status, but it will launch a direct chat without the user needing a google account.<br /> <br /> Go here to build your link: &nbsp;<a href="http://www.google.com/talk/service/badge/New">Google Talk chatback badge</a> <br /> <br /> <br /> <img  src="http://c.skype.com/i/images/logos/skype_logo.png"> <strong><br /> <br /> Embed your Skype status in your website</strong> <br /> <br /> For Skype, <a href="http://www.skype.com/intl/en/share/buttons/">Go here to build your button</a>.   ]]></content:encoded>
<wfw:commentRss> http://blog.inetfusion.com/A55CF7/technotes.nsf/dxcomments/11122009043949PMEWEUKY.htm</wfw:commentRss>
<wfw:comment> http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/11122009043949PMEWEUKY.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Wordperfect - Restore Printer Defaults</title>
<pubDate>Thu, 12 Nov 2009 10:44:29 -0500</pubDate>
<description>
<![CDATA[ 
Reset Printer page types | setup Regedit Scroll to the top to 'my computer' Drill down to 'HKEY_CURRENT_USER' - 'Software' - 'Corel' Right click on folder 'PrintEngine' and Delete or Rename Move ...
 ]]>
</description>
<link>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/11122009104429AMEWEMMU.htm</link>
<category>Tech Notes</category>
<dc:creator>Erik Welch</dc:creator>
<comments>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/11122009104429AMEWEMMU.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/11122009104429AMEWEMMU.htm</guid>
<content:encoded><![CDATA[ &nbsp;Reset Printer page types | setup <br /> <br /> <ul> <li>Regedit </li><li>Scroll to the top to 'my computer' </li><li>Drill down to &nbsp;'HKEY_CURRENT_USER' &nbsp;-> 'Software' -> 'Corel' </li><li>Right click on folder 'PrintEngine' and Delete or Rename </li><li>Move to 'WordPerfect', and then the version '12' or X3 </li><li>Delete the folder 'Envelope' (or rename) </li><li>Close the registry editor and test the changes</li></ul> <br />If this procedure fails, next thing to try is remove and reinstall the printer driver. &nbsp;-Make sure the driver is available before re-installing.  ]]></content:encoded>
<wfw:commentRss> http://blog.inetfusion.com/A55CF7/technotes.nsf/dxcomments/11122009104429AMEWEMMU.htm</wfw:commentRss>
<wfw:comment> http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/11122009104429AMEWEMMU.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Change an asset number on a Dell PC</title>
<pubDate>Thu, 12 Nov 2009 10:39:00 -0500</pubDate>
<description>
<![CDATA[ 
&#91;This is information from my old tech notes, have not verified if still valid but worked in 2006&#93; Change an asset number in a Dell PC. 1. Boot to the Dell Utility CD. 2. ...
 ]]>
</description>
<link>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/11122009103900AMEWEMJF.htm</link>
<category>Tech Notes</category>
<dc:creator>Erik Welch</dc:creator>
<comments>http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/11122009103900AMEWEMJF.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/11122009103900AMEWEMJF.htm</guid>
<content:encoded><![CDATA[ &#91;This is information from my old tech notes, have not verified if still valid but worked in 2006&#93; <br /> <br /> Change an asset number in a Dell PC. <br /> <br />  &nbsp; &nbsp; &nbsp; &nbsp;1. Boot to the Dell Utility CD. <br /> <br />  &nbsp; &nbsp; &nbsp; &nbsp;2. Choose Quit in the Utility. <br /> <br />  &nbsp; &nbsp; &nbsp; &nbsp;3. The PC will kick you out into DOS. <br /> <br />  &nbsp; &nbsp; &nbsp; &nbsp;4. Go to the csd/tools/bios folder using the "cd /" command. <br /> <br />  &nbsp; &nbsp; &nbsp; &nbsp;5. Inside the folder run "asset209 /sSERVICETAG#". Make sure that there is no space between the /s and the Service Tag #.   ]]></content:encoded>
<wfw:commentRss> http://blog.inetfusion.com/A55CF7/technotes.nsf/dxcomments/11122009103900AMEWEMJF.htm</wfw:commentRss>
<wfw:comment> http://blog.inetfusion.com/A55CF7/technotes.nsf/dx/11122009103900AMEWEMJF.htm?opendocument&amp;comments</wfw:comment>
</item>
</channel></rss>
