Noch eine Frage zur $Inbox:
In der Spalte 'Wer' sind 2 Aktionen enthalten, die ich nicht verstehe.
@Right(Who;"/DDA:")
Wann ist so etwas Bestandteil einer Mailadresse/Personennamens? (Außer bei der Teilnehmerdomäne eines IBM-Lehrgang).
Person := @If(CN != ""; CN; G != ""; G + " " + S; S != ""; S; @Trim(X400FreeForm));
Wo kommt X400FreeForm her?
Ich glaube, ich bin einfach zu blöde für die Notes-Entwicklung .......
REM {Begin_Do_Not_Tag};
SentBy := @If(Principal = ""; From; Principal);
Who := @If(form="Appointment"; Chair; DeliveredDate != "" | SendTo = ""; SentBy; @Subset(SendTo; 1));
CN1 := @Trim(@Name([CN]; Who));
CN1 := @If(@Contains(@Right(Who;"@");">") & (CN1="\"\"" | CN1="\" \""); @Trim(@Name([LP]; Who)); CN1);
CN2 := @Left(@Right(Who;"/DDA:");"/" );
CN := @If(@Contains(Who;"/DDA:");CN2;@Contains(@Right(Who;"@");">") & CN1="";@Trim(Who);CN1);
G := @If(CN = ""; @Trim(@If(DeliveredDate != "" | SendTo = ""; @Name([G]; SentBy); @Name([G]; @Subset(SendTo; 1)))); "");
S := @If(CN = ""; @Trim(@If(DeliveredDate != "" | SendTo = ""; @Name([S]; SentBy); @Name([S]; @Subset(SendTo; 1)))); "");
Person := @If(CN != ""; CN; G != ""; G + " " + S; S != ""; S; @Trim(X400FreeForm));
Person2 := @If(@Left(Person;1)="\"" & @Right(Person;1)="\""; @LeftBack(@RightBack(Person;1);1); Person);
@If(Form = "Delivery Report" : "NonDelivery Report" : "Trace Report" : "Quota Report" : "Recall Response"; "Mail-Router"; Person2);
REM {End_Do_Not_Tag};