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
I checked what changes we did to the OOO agent and they are just two:
1. As I already mentioned: Preventing OOO notification to be sent for e-mails sent to groups. This was done in three places:
1.1 Declaration of neccessary variables as class fields.
1.2 Initialization of these variables/fields (Function "New")
1.3 Determining whether to send or not (Function "DocumentOK")
(By populating an array with the internet addresses of all groups in the directory. This may not be very perfomant but there are only a few groups. And by comparing if the field "SendTo" of the document contains one of these addresses. If so, exit the function so it retuns "false".)
2. Because of some oddities in our mail setup we had to change which address the agent sends the notifications to:
Function "GetAddressFromMessage":
[...]
'Me.m_strFrom = Message.GetItemValue( "SMTPOriginator" )(0)
Me.m_strFrom = Message.GetItemValue( "From" )(0)
[...]