Showtime
My Blackberry Enterprise Server Push Utility for the Lotus Notes Client, allows you to create Jobs for individual Channel, Message, and Browser Content Pushes, as well as allows you to delete Pushed Channel Icons from defined recipient devices.
Contact Information
Blogger, podcaster, writer, and geek Chris Toohey covers topics from application development to the latest must-have-gadgets.
Latest Updates
Products & Applications
Time Tracker
The idea is simple. At the start of your day - upon completion of your first task - create an entry highlighting what you did and whether you feel it was an efficient or inefficient use of your time. Based on several requests, you can also select the priority, apply categories, or even align your time against a project.
For Lotus Notes Client v8.0 and above, you can use the Time Tracker Widget to make this process even easier!
Zephyr
My Configuration-based Rich Text Mail Merge and Emailing Utility, Zephyr allows you to create rich, data-driven emails to support automated workflow - all via Microsoft Word Mail Merge-like architecture. Dear <firstname> allows you to personalize each email message not only to the individual recipient, but also to the individual application workflow event!
xCopy
xCopy is a simple configurable xCopy client for the Lotus Notes client. By creating and defining xCopy Profiles, you can batch process your file backup or remote upload jobs. With the addition of the xCopy sidebar widget, you can easily kick-off these jobs, and modify both the xCopy Profiles and xCopy itself.
Community & Resources
Lotus Technical Information & Education Community
The Lotus Technical Information & Education community is comprised of IBM, business partner, and customer subject matter experts who use product wikis, published articles, white papers, community blogs and the latest in social media to build and share high quality technical content.
OpenNTF.org - Open Source Community for Lotus Notes Domino
OpenNTF is devoted to enabling groups of individuals all over the world to collaborate on IBM Lotus Notes/Domino applications and release them as open source.
developerWorks Lotus : Wikis
Share your deployment experiences and best practices in our wikis and help IBM to create scenarios for successful deployments. Contribute to the community by collaborating on shared content and leverage the shared knowledge from that community.
Disabling $KeepPrivate documents!
03/19/2003 03:20:57 PM by Chris Toohey
The other day I got an email that I thought that my boss should see. Of course, the originator sent the email message to me (and other people) having used the "Prevent Copying" attribute, which would not allow me to print, forward or copy the message. I could have always taken a screen print of this, but with my "Disable Privacy" SmartIcon I was able to forward the e-mail message along.
Now before you start thinking about the moral conflicts in disabling the "Prevent Copying" safeguard; sharing information etc. that was FYEO, you have to understand that people who curse you out in an unprofessional tone (I say that having been cursed out before in quite a professional tone before) because you informed them that, due to company policy, they cannot send a 15 MB M$ Powerpoint presentation to 200 of their closest friends are not subject to the same treatment as someone who's sending you personal and confidential information. I'm not telling you to use this when your HR department sends you your payroll information, or your fellow co-workers send the server information for joining the MOHAA-LAN party. This is to be used for those times when the aforementioned non-professionals nasty-gram you just for doing your job.
A slight modification (added logic and better client UI) of the old formula implementation sits in a SmartIcon that has saved me having to call people over to my desk to read something that wasn't meant for anyone else to see!
Once you've selected the SmartIcon that you wish to use, have added it to the SmartIcon bar, paste this code into the Formula section:
FIELD $KeepPrivate := $KeepPrivate;
@If($KeepPrivate != "";
@Do(@SetField("$KeepPrivate";"");
@Prompt([OK];"$KeepPrivate Flag Disabled";"The selected message can now be forwarded/copied!"));
@Prompt([OK];"$KeepPrivate Flag Not Found";"The selected message does not appear to have forwarding/copying disabled."))
Now, that you have your SmartIcon, let's use it!
If the document's $KeepPrivate field value is set, it changes the value to "" or blank and lets you know that the message can now be forwarded and/or copied.

If the $KeepPrivate field is not set, it simply lets you know that the message doesn't appear to have the "Prevent Copying" Delivery Option selected..

After running this small-but-useful bit of formula, you can now forward that nasty-gram on!






Some ";" are missing. I added them and everything works fine ;-)
FIELD $KeepPrivate := $KeepPrivate; @If($KeepPrivate != ""; @Do( @SetField("$KeepPrivate";""); @Prompt([OK];"$KeepPrivate Flag Disabled"; "The selected message can now be forwarded/copied!") ); @Prompt([OK];"$KeepPrivate Flag Not Found"; "The selected message does not appear to have forwarding/copying disabled.") )Thank you, that was an awesome fix! Amazingly effective. Glad i learnt that the Prevent Copy is so easily disabled! Much respect to the author and the first commentator. =)
I have Notes 7. I put in the button, and the message comes back that it disabled prevent copy, but it still cannot be copied. Repeated use of the button always says prevent copying has been disabled. It seems to recognize the flag, but cannot reset it. Using the button on notes that do not have keep private get the message that the flag was not found. Thanks
I've run into this as well - the Notes 6.5/7/(possibly)8 mail template triggers the UI code which locks (as far as I can tell) the ability to modify the $$KeepPrivate field/flag.
Run this from the view, and you should be good to go!
This still doesnt allow me to forward. I try opening the email, running the script, I get the "selected message can now be forwarded/copied", but when I hit forward, it says its locked.
Any ideas?? I have lotus notes 6.5
Nevermind, I did this from the view and it worked perfectly.
Thanks Chris!
What do you mean "Run this from the view, and you should be good to go!". From the preview?
I've tried it , but no luck. Thanks in advance.
@Chevy:
Any UI rendering of the document - either Preview or by opening the email itself - will result in the code that "locks" the document from this edit. So you'll need to do trigger this SmartIcon while in your Inbox/View/Folder.
Thank You. That was awesome. I have a jerk that I work with that just tries to be difficult. By having the KeepPrivate flag on his email it forced me to have to reply to all without any context to the original email. This will make my life easier. You're the best.
It works fine thanks a Lot.
Hiya,
Im a bit of a dummy on this, could you give me a step by step guide on how to do this,
much appreciated
It worked just fine!, Excellent...
For some reason this just doesn't work for me...can't figure out why. I'm a geek to boot too!
Original code works like a charm :-), thanks a lot !.