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 Domino
Categories Templates
Created by Guest
Created on May 6, 2024

Improve Alternate from feature mail-in database lookup

The code in the Entering event of the IsMailInDB item in the CalendarProfile form should be improved.

I have cases where db.Server is not returning CN=ServerName/O=Org but just ServerName/Org, thus this comparison is going to fail:

If (MDBdoc.MailServer(0) = db.Server) And ((MDBdoc.MailFile(0) = db.Filepath) Or ( Lfpth = db.Filepath))Then

Better compare the lowercase abbreviated version of both server names, such as:

(LCase(Join(Evaluate(|@Name([Abbreviate]; MailServer)|, MDBdoc))) = LCase(Join(Evaluate(|@Name([Abbreviate]; "| + db.Server + |")|))))

Furthermore, the file extension can be omitted in File name item in the Mail-in database document, while the comparison in the above code is not taking care of this, but it should do.

  • Attach files