Share via


Disclaimer in E2K7 Sp1 by modifying the FBA (Forms Based Authentication) page.

Note: Following programming examples is for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This sample code assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. This sample code is provided for the purpose of illustration only and is not intended to be used in a production environment.

The first step is to modify the logon.aspx under "C:\Program Files\Microsoft\Exchange Server\ClientAccess\Owa\auth" folder

Find the text "ConnectedToExchange" till you find:
"class="tdConn"><%=LocalizedStrings.GetHtmlEncoded(Strings.IDs.ConnectedToExchange)%
></td>
</tr>
<tr>

DISCLAIMER

<td
class="tdCopy"><%=String.Format(LocalizedStrings.GetHtmlEncoded(Strings.IDs.LogonCop
yright), "&copy;")%></td>
</tr>"

 Where it says "DISCLAIMER" you will put the following disclaimer or one of your choice:

<label><div align=left>This communication is for use by the intended recipient and contains
information that may be privileged, confidential and exempt from disclosure or copyrighted
under applicable law. If you are not the intended recipient, you are hereby formally notified
that any dissemination, use, copying or distribution of this e-mail,in whole or in part,
is strictly prohibited. Please notify the sender by return e-mail and delete this
e-mail from your system.</div></label>

the final code would be:

"class="tdConn"><%=LocalizedStrings.GetHtmlEncoded(Strings.IDs.ConnectedToExchange)%
></td>
</tr>
<tr>
<label><div align=left>This communication is for use by the intended recipient and contains
information that may be privileged, confidential and exempt from disclosure or copyrighted
under applicable law. If you are not the intended recipient, you are hereby formally notified
that any dissemination, use, copying or distribution of this e-mail,in whole or in part,
is strictly prohibited. Please notify the sender by return e-mail and delete this
e-mail from your system.</div></label>

<td
class="tdCopy"><%=String.Format(LocalizedStrings.GetHtmlEncoded(Strings.IDs.LogonCop
yright), "&copy;")%></td>
</tr>"

fyi:You can also apply this change for FBA page in E2K3 servers.