So hab ich das mal gemacht:
Maske (CalenderProfile)>>>Feld Owner>>> den Code unter Eingabevaledierung gelöscht
Danach kann man als Besitzer E-Mail Adresse oder Kurzname verwenden(z.B: edv)
Code Eingabevaledierung:
xxNO_OWNER:="Für diese Mail-Datei wurde kein Besitzer angegeben.";
xxNO_HIER := "Der Name des Besitzers muss im hierarchischen Format eingegeben werden, weil auch die ID des aktuellen Benutzers hierarchisch ist (aktuelle ID ist " + @Name([Abbreviate]; @UserName) + ").";
@If(Owner = "" ;@Failure(xxNO_OWNER);
@Contains(@LowerCase(@UserName); "cn") & !@Contains(@LowerCase(owner); "cn"); @Failure(xxNO_HIER);
@Success)
Lotus Support:
1, You can manually change the hierarchical or flat address to internet address.
OR
2. If you want display the user's internet email address instead of the Notes Hierarchical Name on the header of their email or reply address.
Then try by customising your template: This requires changing the mail template, which should be done with caution.
Refer to "Making modifications to Notes system templates" (Technote#7003134).
The "Principal" field can be set to display any text value using LotusScript:
<Declare NotesDocument doc as the mail document to be changed>
doc.Principal = "Some text" 'where "some text" is the value you want to display
This change will show in the mail when it is saved or sent. "Some text" will become the value that is replied to as well, if a recipient wishes to reply to the mail.
Therefore, you must make sure the value you set is a legitimate e-mail address or Replies will fail.
The LotusScript can be set in subroutines to run automatically, or in an agent to allow users to set it.
Allerdigns hatte ich die Lösung vom Support nicht verstanden
.
Oder noch eine Möglichkeit ist:
http://www.automatedlogic.com/domblog.nsf/dx/DominoTeamMailboxMFG Michael