<?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"
	>

<channel>
	<title>sacha chua :: enterprise 2.0 consultant, storyteller, geek &#187; lotus</title>
	<atom:link href="http://sachachua.com/wp/category/lotus/feed/" rel="self" type="application/rss+xml" />
	<link>http://sachachua.com/wp</link>
	<description>I help people connect through blogs, wikis, other Web 2.0 tools. I'm also writing a book about Emacs.</description>
	<pubDate>Thu, 04 Sep 2008 17:24:15 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>Lotus Notes Tweak: End of Message, No Response Needed</title>
		<link>http://sachachua.com/wp/2008/05/09/lotus-notes-tweak-end-of-message-no-response-needed/</link>
		<comments>http://sachachua.com/wp/2008/05/09/lotus-notes-tweak-end-of-message-no-response-needed/#comments</comments>
		<pubDate>Fri, 09 May 2008 17:20:54 +0000</pubDate>
		<dc:creator>Sacha Chua</dc:creator>
		
		<category><![CDATA[geek]]></category>

		<category><![CDATA[lotus]]></category>

		<category><![CDATA[notes]]></category>

		<guid isPermaLink="false">http://sachachua.com/wp/2008/05/09/lotus-notes-tweak-end-of-message-no-response-needed/</guid>
		<description><![CDATA[Taking a quick break from Javascript hacking to post this Lotus Notes tweak. 
Following Susan Schreitmueller&#039;s advice in the 28-hour Workday presentation she gave, I started replying in subject lines and using [EOM, NRN] to indicate the end of the message and that no response is necessary.
Not everyone&#039;s familiar with this convention, so I always [...]]]></description>
			<content:encoded><![CDATA[<p>Taking a quick break from Javascript hacking to post this Lotus Notes tweak. </p>
<p>Following Susan Schreitmueller&#039;s advice in the 28-hour Workday presentation she gave, I started replying in subject lines and using [EOM, NRN] to indicate the end of the message and that no response is necessary.</p>
<p>Not everyone&#039;s familiar with this convention, so I always included a short explanation in the body of the message. After a number of these EOM/NRN messages, I created an AutoHotkey macro to save me a few keystrokes. I set up !eomnrn to expand to &#034;EOM - end of message, NRN - no response needed&#034;, and I used that in the body of the message.</p>
<p>I thought it still took too many keystrokes and mouse clicks to reply to a message, add my note to the subject line, add &#034;[EOM, NRN]&#034; to the end of the line, and type in the explanation in the body of the message. In fifteen minutes, I whipped up this little LotusScript agent that prompts you for a response, puts it in the subject line with an explanation, and sends the message off. </p>
<p>In Lotus Notes, use Create - Agent to create an agent called something like &#034;1. EOM - NRN&#034;. Edit the agent and put this in the Initialize sub.</p>
<pre>
	Dim workspace As New NotesUIWorkspace
	Dim session As New NotesSession
	Dim db As NotesDatabase
	Dim collection As NotesDocumentCollection
	Dim memo As NotesDocument
	Dim reply As NotesDocument
	Set db = session.CurrentDatabase
	Set collection = db.UnprocessedDocuments
	Set memo = collection.getFirstDocument()
	While Not(memo Is Nothing)
		Set reply = memo.CreateReplyMessage( False )
		response = Inputbox("Response to " + memo.Subject(0))
		If (response <> "") Then
			reply.Subject = response + " re: " + memo.Subject(0) + " [EOM, NRN]"
			reply.Body = "EOM - end of message, NRN - no response necessary"
			reply.IsSavedMessageOnSend = True
			reply.Send(False)
		End If
		Set memo = collection.GetNextDocument(memo)
	Wend
</pre>
<p>Then you can select the message(s) you want to whiz through, type Alt-A 1 to call the action, and reply quickly. You can also call it while viewing a message, which is probably a safer place to start.</p>
<p>Enjoy!</p>

<!-- start wp-tags-to-technorati 0.95 -->

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://sachachua.com/wp/2008/05/09/lotus-notes-tweak-end-of-message-no-response-needed/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
