<?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>Thomas Hampel | Comments</title><description>Personal Blog of Thomas Hampel</description><link>https://blog.thomashampel.com/blog/tomcat2000.nsf/</link><language>en-us</language><lastBuildDate>Thu, 29 Jul 2021 14:11:10 +0200</lastBuildDate>
<item>
<title>Exporting Notes Documents</title>
<pubDate>Thu, 29 Jul 2021 14:11:10 +0200</pubDate>
<dc:creator>Michael Schaefer</dc:creator>
<dc:subject>Exporting Notes Documents</dc:subject>
<description><![CDATA[VERY USEFUL. Till now I did not know so much about DXL.<br /><br /> <br /><br />In above code I miss the code for function FileExists which could look like this<br /><br />Function FileExists(filenm As String) As Boolean<br /><br /> ' Tests if file exists, returns True for yes, False for no<br /><br /> On Error GoTo FErrorHandler 'Bail on an error<br /><br /> 'Test file<br /><br /> If (Dir$(filenm)="") Then<br /><br /> 'No file exists<br /><br /> FileExists = False<br /><br /> Else<br /><br /> 'File exists<br /><br /> FileExists = True<br /><br /> End If<br /><br /> Exit Function<br /><br /> <br /><br />FErrorHandler:<br /><br /> 'We had an error, so we assume there was no file found<br /><br /> FileExists = False<br /><br /> Exit Function<br /><br />End Function<br /><br />The code I found at "http://techblog.klingonheart.com/2012/03/lotus-script-file-exists-function.html"]]></description>
<content:encoded><![CDATA[VERY USEFUL. Till now I did not know so much about DXL.<br /><br /> <br /><br />In above code I miss the code for function FileExists which could look like this<br /><br />Function FileExists(filenm As String) As Boolean<br /><br /> ' Tests if file exists, returns True for yes, False for no<br /><br /> On Error GoTo FErrorHandler 'Bail on an error<br /><br /> 'Test file<br /><br /> If (Dir$(filenm)="") Then<br /><br /> 'No file exists<br /><br /> FileExists = False<br /><br /> Else<br /><br /> 'File exists<br /><br /> FileExists = True<br /><br /> End If<br /><br /> Exit Function<br /><br /> <br /><br />FErrorHandler:<br /><br /> 'We had an error, so we assume there was no file found<br /><br /> FileExists = False<br /><br /> Exit Function<br /><br />End Function<br /><br />The code I found at "http://techblog.klingonheart.com/2012/03/lotus-script-file-exists-function.html"]]></content:encoded>
<link>https://blog.thomashampel.com/blog/tomcat2000.nsf/dx/exporting-notes-documents.htm?opendocument&amp;comments#29072021141110THAGB4.htm</link>
</item>
<item>
<title>Y2k21 problem in Notes property box - Created date is empty</title>
<pubDate>Tue, 5 Jan 2021 10:11:42 +0200</pubDate>
<dc:creator>Thomas Hampel</dc:creator>
<dc:subject>Y2k21 problem in Notes property box - Created date is empty</dc:subject>
<description><![CDATA[No, this is not a server issue. <br /><br />It is just the propertybox display value. The create date information itself exists and you can verify that by using 3rd party tools like Ytria ScanEZ https://www.ytria.com/ezsuite/scanez <br /><br />Your analysis refers to the existence of the field $Created in the underlying document.]]></description>
<content:encoded><![CDATA[No, this is not a server issue. <br /><br />It is just the propertybox display value. The create date information itself exists and you can verify that by using 3rd party tools like Ytria ScanEZ https://www.ytria.com/ezsuite/scanez <br /><br />Your analysis refers to the existence of the field $Created in the underlying document.]]></content:encoded>
<link>https://blog.thomashampel.com/blog/tomcat2000.nsf/dx/y2k21-problem-in-notes-property-box-created-date-is-empty.htm?opendocument&amp;comments#05012021101142THACSW.htm</link>
</item>
<item>
<title>Y2k21 problem in Notes property box - Created date is empty</title>
<pubDate>Tue, 5 Jan 2021 09:55:49 +0200</pubDate>
<dc:creator>Christophe Jost</dc:creator>
<dc:subject>Y2k21 problem in Notes property box - Created date is empty</dc:subject>
<description><![CDATA[It does not seem to be only a display problem.<br /><br />My research shows that, if I take my Notes mailbox, <br /><br />- any SMTP email coming from NON Domino users has a creation date. <br /><br />- any SMTP email coming from Domino users has no creation date.<br /><br />- any Notes email coming from Domino users has no creation date<br /><br />- any document created on my iphone using the iphone app does NOT have a creation date<br /><br />- any document created on Verse does NOT have a creation date<br /><br />- any document created on Nomad on an iPad does NOT have a creation date<br /><br />- emails I receive from customers using Domino - but sending via SMTP do NOT have a creation date.<br /><br />- emails received from anyone NOT using Domino have a creation date<br /><br />So the issue looks to be something going wrong on the Domino server level, and is a 'variable' that is part of the SMTP content, or a different storing procedure if emails come from a Domino Server/Traveler via SMTP.<br /><br />Good hunting]]></description>
<content:encoded><![CDATA[It does not seem to be only a display problem.<br /><br />My research shows that, if I take my Notes mailbox, <br /><br />- any SMTP email coming from NON Domino users has a creation date. <br /><br />- any SMTP email coming from Domino users has no creation date.<br /><br />- any Notes email coming from Domino users has no creation date<br /><br />- any document created on my iphone using the iphone app does NOT have a creation date<br /><br />- any document created on Verse does NOT have a creation date<br /><br />- any document created on Nomad on an iPad does NOT have a creation date<br /><br />- emails I receive from customers using Domino - but sending via SMTP do NOT have a creation date.<br /><br />- emails received from anyone NOT using Domino have a creation date<br /><br />So the issue looks to be something going wrong on the Domino server level, and is a 'variable' that is part of the SMTP content, or a different storing procedure if emails come from a Domino Server/Traveler via SMTP.<br /><br />Good hunting]]></content:encoded>
<link>https://blog.thomashampel.com/blog/tomcat2000.nsf/dx/y2k21-problem-in-notes-property-box-created-date-is-empty.htm?opendocument&amp;comments#05012021095549THACGZ.htm</link>
</item>
<item>
<title>Untitled</title>
<pubDate>Mon, 24 Sep 2018 23:35:22 +0300</pubDate>
<dc:creator>maurits</dc:creator>
<dc:subject>Print Email Attachments automatically with a RaspberryPI</dc:subject>
<description><![CDATA[I love this work, but unfortunately the pdf attachments are not stored on my raspi and can therefore not be printed. I dont understand what' going wrong :(<br /><br />This is when it goes wrong:<br /><br />Processing : ./maildata/new/1537820739.910_0.raspberrypi<br /><br />Loaded from ./maildata/new/1537820739.910_0.raspberrypi: 'test5' (test5): test.txt part 1 Base64<br /><br />Found 'test.txt' State 16 Base64 Parts 1 OK<br /><br />Opened file ./maildata/new/1537820739.910_0.raspberrypi<br /><br />ERROR: Could not open target file ./attachments/test.txt for writing: No such file or directory<br /><br />ERROR: while writing ./attachments/test.txt (test5): File I/O Error<br /><br />0 files decoded from 1 input file, 1 failed<br /><br />tee: ./logs/printmail.log: No such file or directory<br /><br />Printing PDFs<br /><br />anyone has any ideas?]]></description>
<content:encoded><![CDATA[I love this work, but unfortunately the pdf attachments are not stored on my raspi and can therefore not be printed. I dont understand what' going wrong :(<br /><br />This is when it goes wrong:<br /><br />Processing : ./maildata/new/1537820739.910_0.raspberrypi<br /><br />Loaded from ./maildata/new/1537820739.910_0.raspberrypi: 'test5' (test5): test.txt part 1 Base64<br /><br />Found 'test.txt' State 16 Base64 Parts 1 OK<br /><br />Opened file ./maildata/new/1537820739.910_0.raspberrypi<br /><br />ERROR: Could not open target file ./attachments/test.txt for writing: No such file or directory<br /><br />ERROR: while writing ./attachments/test.txt (test5): File I/O Error<br /><br />0 files decoded from 1 input file, 1 failed<br /><br />tee: ./logs/printmail.log: No such file or directory<br /><br />Printing PDFs<br /><br />anyone has any ideas?]]></content:encoded>
<link>https://blog.thomashampel.com/blog/tomcat2000.nsf/dx/print-email-attachments-with-a-raspberrypi.htm?opendocument&amp;comments#24.09.2018233522ORIS66.htm</link>
</item>
<item>
<title>Untitled</title>
<pubDate>Tue, 14 Feb 2017 01:36:32 +0300</pubDate>
<dc:creator>Tinus Riyanto</dc:creator>
<dc:subject>Domino SingleSignOn - Level 1 - LDAP Authentication</dc:subject>
<description><![CDATA[When using Directory Assistance to provide single sign on with Active Directory you need to make sure that your existing Active Directory password does not match your existing Notes Internet password. If a user have the same password for both, he / she will not be able to login.<br /><br />Also you can still use your existing Notes Internet password to login, if you still remember it.]]></description>
<content:encoded><![CDATA[When using Directory Assistance to provide single sign on with Active Directory you need to make sure that your existing Active Directory password does not match your existing Notes Internet password. If a user have the same password for both, he / she will not be able to login.<br /><br />Also you can still use your existing Notes Internet password to login, if you still remember it.]]></content:encoded>
<link>https://blog.thomashampel.com/blog/tomcat2000.nsf/dx/moving-from-passwords-to-singlesignon-part-1.htm?opendocument&amp;comments#02142017013632AMORIVPD.htm</link>
</item>
<item>
<title>Untitled</title>
<pubDate>Sun, 29 Jan 2017 20:16:39 +0300</pubDate>
<dc:creator>Joachim </dc:creator>
<dc:subject>Print Email Attachments automatically with a RaspberryPI</dc:subject>
<description><![CDATA[Good article which helped my build my own Intel-based brick PC for automatically printing mail. However the script does not work with files that have a space in their name.]]></description>
<content:encoded><![CDATA[Good article which helped my build my own Intel-based brick PC for automatically printing mail. However the script does not work with files that have a space in their name.]]></content:encoded>
<link>https://blog.thomashampel.com/blog/tomcat2000.nsf/dx/print-email-attachments-with-a-raspberrypi.htm?opendocument&amp;comments#29.01.2017201639ORIPFG.htm</link>
</item>
<item>
<title>Untitled</title>
<pubDate>Fri, 23 Dec 2016 23:11:49 +0300</pubDate>
<dc:creator>Günther Rupitz</dc:creator>
<dc:subject>Passthru configuration done right</dc:subject>
<description><![CDATA[Hello<br /><br />I set the configuration as you wrote.<br /><br />If i test the connection with the trace tool everything works fine, i get the connection via the passthru server.<br /><br />But if i simply try to open a database on the server i get the message that the remote server is not a known TCP/IP Host.<br /><br />In the statusbar i can see that the client does not try to connect via the passthru server, do it does not use low priority connection documents.<br /><br />Is there any way to enable this?<br /><br />Thanks, Guenther]]></description>
<content:encoded><![CDATA[Hello<br /><br />I set the configuration as you wrote.<br /><br />If i test the connection with the trace tool everything works fine, i get the connection via the passthru server.<br /><br />But if i simply try to open a database on the server i get the message that the remote server is not a known TCP/IP Host.<br /><br />In the statusbar i can see that the client does not try to connect via the passthru server, do it does not use low priority connection documents.<br /><br />Is there any way to enable this?<br /><br />Thanks, Guenther]]></content:encoded>
<link>https://blog.thomashampel.com/blog/tomcat2000.nsf/dx/passthru-configuration-done-right.htm?opendocument&amp;comments#23.12.2016231149ORISUX.htm</link>
</item>
<item>
<title>Untitled</title>
<pubDate>Fri, 8 Jul 2016 13:49:14 +0300</pubDate>
<dc:creator>NadSurf</dc:creator>
<dc:subject>IDVault - ID file upload fails with Error 03:11</dc:subject>
<description><![CDATA[I was having the same problem, followed the steps you described and that solved it :-)<br /><br />Thanks a lot for this post.]]></description>
<content:encoded><![CDATA[I was having the same problem, followed the steps you described and that solved it :-)<br /><br />Thanks a lot for this post.]]></content:encoded>
<link>http://blog.thomashampel.com/blog/tomcat2000.nsf/dx/idvault-.htm?opendocument&amp;comments#07082016014914PMORIEPU.htm</link>
</item>
<item>
<title>Untitled</title>
<pubDate>Mon, 16 May 2016 12:57:44 +0300</pubDate>
<dc:creator>André Husken</dc:creator>
<dc:subject>Print Email Attachments automatically with a RaspberryPI</dc:subject>
<description><![CDATA[Hi Thomas. I love your script. Is it also possible to print the mail body and not the attachments? How to i have to modify the fetchmail shell script? Hope you can help me.]]></description>
<content:encoded><![CDATA[Hi Thomas. I love your script. Is it also possible to print the mail body and not the attachments? How to i have to modify the fetchmail shell script? Hope you can help me.]]></content:encoded>
<link>http://blog.thomashampel.com/blog/tomcat2000.nsf/dx/print-email-attachments-with-a-raspberrypi.htm?opendocument&amp;comments#16.05.2016125744ORIDPM.htm</link>
</item>
<item>
<title>Signing and deploying Eclipse Plugins into Notes Clients</title>
<pubDate>Fri, 1 Apr 2016 07:57:27 +0200</pubDate>
<dc:creator>Thomas Hampel</dc:creator>
<dc:subject>Signing and deploying Eclipse Plugins into Notes Clients</dc:subject>
<description><![CDATA[Try downloading the file again...]]></description>
<content:encoded><![CDATA[Try downloading the file again...]]></content:encoded>
<link>http://blog.thomashampel.com/blog/tomcat2000.nsf/dx/untitled.htm?opendocument&amp;comments#01.04.2016075727THA8ZH.htm</link>
</item>
<item>
<title>Untitled</title>
<pubDate>Thu, 31 Mar 2016 08:06:34 +0300</pubDate>
<dc:creator>Slade Swan</dc:creator>
<dc:subject>Signing and deploying Eclipse Plugins into Notes Clients</dc:subject>
<description><![CDATA[Hi Thomas, <br /><br />After much searching found your article which put some context around the various IBM articles that I have read so far. However the sign-update-site.cmd no longer exists or at least I can't download it. I was trying to confirm whether your .cmd file was the signing commands found here https://www.ibm.com/support/knowledgecenter/SSKTMJ_9.0.1/admin/inst_signingcustomorthirdpartyfeaturesandpluginsfori_t.dita?lang=en <br /><br />Would you be able to re post the .cmd file or at least send it to me if you still have it? Would be most grateful.<br /><br />Regards.]]></description>
<content:encoded><![CDATA[Hi Thomas, <br /><br />After much searching found your article which put some context around the various IBM articles that I have read so far. However the sign-update-site.cmd no longer exists or at least I can't download it. I was trying to confirm whether your .cmd file was the signing commands found here https://www.ibm.com/support/knowledgecenter/SSKTMJ_9.0.1/admin/inst_signingcustomorthirdpartyfeaturesandpluginsfori_t.dita?lang=en <br /><br />Would you be able to re post the .cmd file or at least send it to me if you still have it? Would be most grateful.<br /><br />Regards.]]></content:encoded>
<link>http://blog.thomashampel.com/blog/tomcat2000.nsf/dx/untitled.htm?opendocument&amp;comments#31032016080634AMORI7ZN.htm</link>
</item>
<item>
<title>Untitled</title>
<pubDate>Thu, 17 Mar 2016 15:07:35 +0200</pubDate>
<dc:creator>Thomas Hampel</dc:creator>
<dc:subject>Deploying a customized Discover page in IBM Notes 9.0.x</dc:subject>
<description><![CDATA[Attachment link has been updated]]></description>
<content:encoded><![CDATA[Attachment link has been updated]]></content:encoded>
<link>http://blog.thomashampel.com/blog/tomcat2000.nsf/dx/customizing-the-discover-page-in-ibm-notes-9.0.x.htm?opendocument&amp;comments#17.03.2016150735THAJKU.htm</link>
</item>
<item>
<title>Untitled</title>
<pubDate>Thu, 17 Mar 2016 15:40:13 +0300</pubDate>
<dc:creator>Kai Schleifer</dc:creator>
<dc:subject>Deploying a customized Discover page in IBM Notes 9.0.x</dc:subject>
<description><![CDATA[Hi Thomas. We use a MarvelClient filedrop job with an OS condition (32 or 64bit). The user assignment is done via a dynamic group build on department or company basis. Works brilliant. Happy costumer! :)]]></description>
<content:encoded><![CDATA[Hi Thomas. We use a MarvelClient filedrop job with an OS condition (32 or 64bit). The user assignment is done via a dynamic group build on department or company basis. Works brilliant. Happy costumer! :)]]></content:encoded>
<link>http://blog.thomashampel.com/blog/tomcat2000.nsf/dx/customizing-the-discover-page-in-ibm-notes-9.0.x.htm?opendocument&amp;comments#03172016034013PMORIJ2P.htm</link>
</item>
<item>
<title>Untitled</title>
<pubDate>Thu, 17 Mar 2016 14:31:01 +0300</pubDate>
<dc:creator>Christian</dc:creator>
<dc:subject>Deploying a customized Discover page in IBM Notes 9.0.x</dc:subject>
<description><![CDATA["Install-DiscoveryPage.zip" is invalid !!!!]]></description>
<content:encoded><![CDATA["Install-DiscoveryPage.zip" is invalid !!!!]]></content:encoded>
<link>http://blog.thomashampel.com/blog/tomcat2000.nsf/dx/customizing-the-discover-page-in-ibm-notes-9.0.x.htm?opendocument&amp;comments#17.03.2016143101ORIGPF.htm</link>
</item>
<item>
<title>Untitled</title>
<pubDate>Fri, 29 Jan 2016 15:25:31 +0300</pubDate>
<dc:creator>Malte</dc:creator>
<dc:subject>NotesAPI - Import Pictures into RichText Fields using Backend Classes</dc:subject>
<description><![CDATA[Hi, <br /><br />this code doesnt work well. Only 70% of my images are imported properly. <br /><br />Some richtextfields are missing and other field contains image data but the image is not shown. No errors.<br /><br />Any suggestions?]]></description>
<content:encoded><![CDATA[Hi, <br /><br />this code doesnt work well. Only 70% of my images are imported properly. <br /><br />Some richtextfields are missing and other field contains image data but the image is not shown. No errors.<br /><br />Any suggestions?]]></content:encoded>
<link>http://blog.thomashampel.com/blog/tomcat2000.nsf/dx/notesapi-import-pictures-into-richtext-fields-using-backend-classes.htm?opendocument&amp;comments#29.01.2016152531ORIHRH.htm</link>
</item>
<item>
<title>Untitled</title>
<pubDate>Thu, 24 Dec 2015 19:30:29 +0300</pubDate>
<dc:creator>Stephan H. Wissel</dc:creator>
<dc:subject>IBM Connections 5.5 Desktop Plug-in - without logging in at Greenhouse</dc:subject>
<description><![CDATA[Also available in Mac flavour?]]></description>
<content:encoded><![CDATA[Also available in Mac flavour?]]></content:encoded>
<link>http://blog.thomashampel.com/blog/tomcat2000.nsf/dx/ibm-connections-desktop-plug-in-without-logging-in-at-greenhouse.htm?opendocument&amp;comments#12242015073029PMORINJL.htm</link>
</item>
<item>
<title>Untitled</title>
<pubDate>Mon, 14 Dec 2015 11:57:34 +0300</pubDate>
<dc:creator>Christian</dc:creator>
<dc:subject>Print Email Attachments automatically with a RaspberryPI</dc:subject>
<description><![CDATA[Thanks, Thomas. This ist working perfect on a Ubuntu 14.04.3 LTS virtual machine...<br /><br />I only had to change "lpr $x" to "lp -d PrinterName $x -o fit-to-page -o media=a4"<br /><br />I agree to @rodrigo that it would be nice to print the email body too.<br /><br />Christian]]></description>
<content:encoded><![CDATA[Thanks, Thomas. This ist working perfect on a Ubuntu 14.04.3 LTS virtual machine...<br /><br />I only had to change "lpr $x" to "lp -d PrinterName $x -o fit-to-page -o media=a4"<br /><br />I agree to @rodrigo that it would be nice to print the email body too.<br /><br />Christian]]></content:encoded>
<link>http://blog.thomashampel.com/blog/tomcat2000.nsf/dx/print-email-attachments-with-a-raspberrypi.htm?opendocument&amp;comments#14.12.2015115734ORIDPJ.htm</link>
</item>
<item>
<title>Untitled</title>
<pubDate>Wed, 25 Nov 2015 11:52:36 +0300</pubDate>
<dc:creator>Chris</dc:creator>
<dc:subject>error while loading shared libraries: libnotes.so</dc:subject>
<description><![CDATA[thanks for the hint! Solution of Frederico worked for me, too.<br /><br />Best Regards Chris]]></description>
<content:encoded><![CDATA[thanks for the hint! Solution of Frederico worked for me, too.<br /><br />Best Regards Chris]]></content:encoded>
<link>http://blog.thomashampel.com/blog/tomcat2000.nsf/dx/notes.htm?opendocument&amp;comments#25.11.2015115236ORIDLF.htm</link>
</item>
<item>
<title>Untitled</title>
<pubDate>Wed, 25 Nov 2015 10:42:16 +0300</pubDate>
<dc:creator>Markus Petzold</dc:creator>
<dc:subject>Domino Security - Disable HTTPEnableConnectorHeaders NOW</dc:subject>
<description><![CDATA[Checked on all Servers<br /><br />Nothing found<br /><br />Puh :-)]]></description>
<content:encoded><![CDATA[Checked on all Servers<br /><br />Nothing found<br /><br />Puh :-)]]></content:encoded>
<link>http://blog.thomashampel.com/blog/tomcat2000.nsf/dx/domino-security-disable-httpenableconnectorheaders-now.htm?opendocument&amp;comments#25.11.2015104216ORIC8G.htm</link>
</item>
<item>
<title>Untitled</title>
<pubDate>Wed, 23 Sep 2015 15:43:22 +0300</pubDate>
<dc:creator>Rodrigo</dc:creator>
<dc:subject>Print Email Attachments automatically with a RaspberryPI</dc:subject>
<description><![CDATA[Hi I wonder if would rather print the attachments of the email I could print the body of the email?]]></description>
<content:encoded><![CDATA[Hi I wonder if would rather print the attachments of the email I could print the body of the email?]]></content:encoded>
<link>http://blog.thomashampel.com/blog/tomcat2000.nsf/dx/print-email-attachments-with-a-raspberrypi.htm?opendocument&amp;comments#23092015154322ORIGX6.htm</link>
</item>

</channel></rss>
