Stop displaycopyto_icon being added to memo form

Hi,

I am currently using 6.0.1.

I have a code to send email with _viewicon = 169.

With some emails, (e.g. if I am CC’ed), the icon (169 = confidential) disappears because during send, Domino somehow added a field called displaycopyto_icon = “1”.

Displaycopyto_icon causes the result icon to be different which is a big frustration as I would like all emails sent from this function to have confidential icon.

Rather than go and fix 300+ users templates, is there a way to stop displaycopyto_icon field from being added to my emails?

TIA

JJ

*********** LN 6.0.1 icon column formula **********

REM {This icon formula is used in ($Inbox) folder, (MailThreads) view, and ($All) view};

CSisPrivate := @If(@IsUnavailable($PublicAccess) & @IsAvailable($CSVersion);“1”;“0”);

isImportant := @If(Importance=“1”;“1”;“0”);

ViewIcon2 := @If(_ViewIcon = 158 & AppointmentType != “1” & BookFreeTime = “1”; 12; _ViewIcon);

tmpIcon := @If(ExpireDate !=“” ;64;displaycopyto_icon = “1”;“sentto.gif”;

@If(DeliveredDate = “”;

@If(PostedDate="" | @IsUnavailable(PostedDate);

    @If(@IsAvailable(IsMailStationery);

        21;

    @IsAvailable(_ViewIcon);

        ViewIcon2;

     58);

@If(IsImportant="1";

    124;

122));

@IsAvailable(_ViewIcon);

ViewIcon2;

$TypeIcon));

REM; “If the Task has no icon, display the invitation icon - backward compatibility”;

varTaskIcon := @If(Form = “Task” & (!@IsAvailable(_ViewIcon) | ViewIcon2 = “”) & (!@IsAvailable(_ViewIcon2) | ViewIcon2 = “”); @False; @True);

iconOne := @If(!varTaskIcon; 133; @If(tmpIcon = “”; 0; tmpIcon));

iconTwo := @If(iconOne=124;0;CSisPrivate=“1”; 164; isImportant=“1”; 150; 0);

iconOne:iconTwo