זה לא קשור ל-SP5 ,זו פרוצדורה שיש לבצע גם ב-SP's קודמים:
how to disable "From" field when scheduling a report to email destination in Central Management Console?
Resolution
Open the web.xml under CmcApp folder.
Locate following parameter :
<context-param>
<param-name>SMTPFrom</param-name>
<param-value>true</param-value>
</context-param>
Change "true" to "false"
Save the changes to the web.xml into the CmcApp.war.
Re-deploy or restart your CmcApp.war (web application).
Open a new browser and log in to Central Management Console.
Verify that the schedule to email destination has been updated so that the FROM field is now removed.
You may need to force a re-compile of jsp's depending on the
appserver and appserver configuration.
זה עבור הוובי :
Open the web.xml in the InfoViewApp.war file.
Locate following parameter :
<!-- Shared Destination From Field -->
<!-- Enables or Disables the From field when scheduling a object to a destination.
When the value is set to false the From field will not be rendered and the system will first attempt to get the email value from the report default, if report default is not available it will attempt to get the value from the email address on user profile of the logged on user and lastly if the user profile email address in not available it will use the job server default. -->
Change "true" to "false"
Save the changes to the web.xml into the InfoViewApp.war.
Re-deploy or restart your InfoViewApp.war (web application).
Open a new browser and log in to Infoview.
Verify that the schedule to email destination has been updated so that the FROM field is now removed.
You may need to force a re-compile of jsp's depending on the appserver and appserver configuration