Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

enable BCC field by default in OWA 2007?

594 views
Skip to first unread message

robro

unread,
Jan 16, 2008, 3:54:29 PM1/16/08
to
In OWA 2003, the BCC field was present by default, in 2007, you have
to enable it with options>show bcc every time you want to use it. Is
there a way to turn this field on by default as it was in 2003?

thev...@gmail.com

unread,
Feb 11, 2008, 1:44:41 PM2/11/08
to

I'm having the same problem, anyone?

thev...@gmail.com

unread,
Feb 11, 2008, 3:20:32 PM2/11/08
to
This fix worked for us. Backup your original file before altering it.


******In \Exchange2007\ClientAccess\Owa\forms\premium
\editmessage.aspx*********


******Change this Block of code (search for bcc)**********


<tr id="trBcc" <%= ShowBcc ? "" : " style=\"display:none\"" %>>
<td class="tdABB">
<a id="btnBcc" class="flat btn <%=UserContext.IsRtl ? "r" : "l"%>"
<%RenderOnClick("shwABM(\"divBcc\");");%> hidefocus="true"
tabindex="-1" href="#">
<img align=absmiddle src="<
%UserContext.RenderThemeFileUrl(Response.Output,
ThemeFileId.AddressBook);%>"> <
%=LocalizedStrings.GetHtmlEncoded(Strings.IDs.BccEllipsis)%>
</a>
</td>
<td>
<%
if (ShowBcc)
RecipientWell.Render(Response.Output, UserContext,
RecipientWellType.Bcc);
else
RecipientWell.Render(Response.Output, UserContext,
RecipientWellType.Bcc, RecipientWell.RenderFlags.Hidden);
%>
</td>
</tr>

******To This************


<tr id="trBcc">
<td class="tdABB">
<a id="btnBcc" class="flat btn <%=UserContext.IsRtl ? "r" : "l"%>"
<%RenderOnClick("shwABM(\"divBcc\");");%> hidefocus="true"
tabindex="-1" href="#">
<img align=absmiddle src="<
%UserContext.RenderThemeFileUrl(Response.Output,
ThemeFileId.AddressBook);%>"> <
%=LocalizedStrings.GetHtmlEncoded(Strings.IDs.BccEllipsis)%>
</a>
</td>
<td>
<% RecipientWell.Render(Response.Output, UserContext,
RecipientWellType.Bcc); %>
</td>
</tr>

**************************

Now BCC is on by default and can be turned off in options.

thev...@gmail.com

unread,
Feb 11, 2008, 3:23:04 PM2/11/08
to
This worked for us. Alter this file at your own risk. You can apply
this fix without restarting any services and it works on the fly.

robro

unread,
Mar 14, 2008, 6:26:55 PM3/14/08
to
Wow!!! I just happened to stumble upon this response to my old
question.
I will try this tomorrow, thank you for what appears to be the
answer!!
0 new messages