Da hilft dann nur mit dem Debugger draufgehen ...
Das ist diese Stelle
' remove all duplicate entrys and the Databases MailIn Name from the OtherUsers Field
'first the duplicate entrys
otherusers = Arrayunique(otherusers)
' then empty everything that is in a configuration document
thisvalues = Split(Lcase(getConfigdocbyKeyMultivalue("DispatcherRemoveNamesFromOtherUsers","~")),"~")
otherusers = Arrayreplace(otherusers,thisvalues,"")
' at last do a fulltrim to extinct all empty entrys
otherusers = Fulltrim(otherusers)
If otherusers(0)<> "" Then
Set item = New NotesItem( NewTicket, "OtherUsers", Otherusers , NAMES )
End If
Im CreateNewTicket (lib.appl.function) die das tut. Dispatcher ausschalten und eine Mail reinschicken. Anschließend den Dispatcher manuell mit Debugger angeschaltet starten. Debug drauf setzen udn dann schauen was in Otherusers und Thisvalues stehen bleibt.