View Single Post
Tim,

Thanks for the info. I was able to extract the applescript and take a look at it. It appears that it has some logging capabilities built into the script:

on perform mail action with messages theMessages
try
set theMessageCount to count of theMessages
repeat with theMessageIndex from 1 to theMessageCount
my process_message(item theMessageIndex of theMessages)
end repeat
on error m number n
tell application "OmniFocus"
log "Exception in Mail action: (" & n & ") " & m
end tell
end try
end perform mail action with messages


Do you happen to know where OmniFocus might save this logging information, if it even does?