Notes/Domino Fix List
SPR # SCRL5GWL43Fixed in 5.0.13 releaseTemplate fix: mail50.ntf, mail50ex.ntf



Product Area: Client; Template Technical Area: Mail Client Platform: Cross Platform

SPR# SCRL5GWL43 - Sending an email by opening it using the "Send Document" action is no longer possible. Prior to this fix, a document could have been sent to other recipients and included the Originator's name in the header.

Technote Number: 1094354

Problem:
The issue with the Mail template design was reported to Quality Engineering and
has been fixed in the Notes 5.0.13 and Notes 6.0.3/6.5 mail template designs.

Workaround:

You can work around this issue in Notes 6.x by modifying the LotusScript code
in the Mail template's PostOpen event. The suggested modification will allow
users to still place received memos into Edit mode from the view level but when
the user presses the Escape key (ESC), the document will be closed rather than
prompting to Save, Send or Discard, etc.

In the Mail template's Memo, Reply and Reply with History forms, change the
code under the PostOpen event to:

Sub Postopen(Source As Notesuidocument)
Call cMemoObject.PostOpen(Source)
If source.editmode And Not (source.isnewdoc) Then
Call cMemoObject.QueryModeChange(Source)
Call cMemoObject.PostModeChange()
End If
End Sub


Supporting Information:
The base cause for this issue is a general change in behavior introduced in
Notes R5 where a form's QueryModeChange and PostModeChange events do not
trigger, when a document is opened in Edit mode directly from a view. For
related information, refer to the document titled "QueryModeChange and
PostModeChange Do not Trigger in R5 if Automatically Enabling Edit Mode"
(#1084361).
More >



Last Modified on 01/17/2014

Go back