Fix for troubleshooting the alias email address is not fetched as To Address instead the primary address is retrieved.
Ticket:
Files Modified :
<SDP>\helpdesk\src\library\com\manageengine\servicedesk\mail\core\IncomingMail.java
<SDP>\helpdesk\src\library\com\adventnet\servicedesk\helpdesk\mail\task\MailFetchingTask.java
<SDP>\helpdesk\src\library\com\manageengine\servicedesk\mail\core\ProcessEWSMessage.java
Jar Compatibility :
11126 - SDP Build Version
New to ADSelfService Plus?
Related Articles
Fix: Failed to parse To/Cc address while fetching mails using Graph
Issue: If the To / Cc address contains the email address in the format "Test, SDP" <test@sdp.com> (containing "," character in the email address itself), then parsing of such addresses using Microsoft Graph fails in SDP. If such address is a support ...
Custom Script to Trigger an Alert if there is no email address associated with Requester (using FAFR)
Working on Builds: 14500 too Scenario: Request should not be created if there is no email address associated with the requester. Instead it should prompt and alert stating there is no email address associated with the requester. The above requirement ...
FAQs for FOS(Failover Service)
Q1: What is FOS? FOS stands for "Fail Over Service." It is a feature designed to address unexpected hardware or software failures that could potentially render a service desk application unavailable. In the context of SDPMSP , the Fail Over Service ...
How to use Account based support e-mail address ?
How can i raise a request through an Email and how it will be assigned to an Account? In your mail-server, create a user e-mail account to which all e-mails will be fetched. Create an e-mail alias for this e-mail account for each of your customer ...
FAFR script to validate email address
Script var field = "WorkOrder_Fields_UDF_CHAR1"; var emailID = $CS.getValue(field); if (!ValidateEmail(emailID)) { alert('Please enter a valid email address example@abc.com'); $CS.stopFormSubmission(); } /*A function which takes email and validate ...