Skip to Main Content
HCL Domino Ideas Portal

Welcome to the #dominoforever Product Ideas Forum! The place where you can submit product ideas and enhancement request. We encourage you to participate by voting on, commenting on, and creating new ideas. All new ideas will be evaluated by HCL Product Management & Engineering teams, and the next steps will be communicated. While not all submitted ideas will be executed upon, community feedback will play a key role in influencing which ideas are and when they will be implemented.

For more information and upcoming events around #dominoforever, please visit our Destination Domino Page

Status Needs Review
Workspace Notes
Created by Guest
Created on Feb 12, 2019

Add RFC822 address support for schedule lookups in Notes/Domino

Notes 9.0.x/10.0.1
1. A new mail is received with internal users with RFC822 style addresses, like User Name <user.name@testserverorg.com
2. The option More > Copy into New Calendar Entry is chosen
3. The calendar entry dialog is produced and the Find Available Times tab is chosen
4. The schedule does not appear for User Name <user.name@testserverorg.com
5. If the email address is manually changed to user.name@testserverorg.com then it works
 
Level 3 Development ought to include a template modification along the following lines for this to be circumvented:
 

The "Input Translation" fields for EnterSendTo must be adjusted from

@Trim(@Unique(EnterSendTo))

to

vVal := @Trim(@Unique(EnterSendTo));

@For(n := 1;n<=@Elements(vVal);n := n + 1;

vList:= vList : @If(

@Name([HIERARCHYONLY];vVal[n])<>"" ;

vVal[n];

@Name([ADDRESS821];vVal[n])

)

);

@Trim(@Unique(vList))

  • Attach files