Stop the Dispatcher.
Change the lib.agent.dispatch function fetchvalidusers
here:
Set myitem = mydoc.GetFirstItem("FullName")
myfoundqualified = False
to this one (simply insert one line)
Set myitem = mydoc.GetFirstItem("FullName")
myfoundqualified = False
print myitem.text
start the dispatcher manually.
The print should give you a hint where it hangs. It should be either the last document or the next one after that. With this info you can add a
if myitem.text = "Lastprintedvalue" then Stop
run the dispatcher again and if should stop at the entry that is wrong. From there you can debug this with single steps and check the values of myitem.
for example I think I should change this value
mybooks = mysession.AddressBooks
in something like
NAMES.NSF
Can somebody help me, telling me how to do?
Thank you
Alessandro
EDITED:
I've tried this one and it seems to work.
ORIGINAL
mybooks = mysession.AddressBooks
NEW
Can you confirm?
thank you