Hi Thomas,
could you please check if there is an Accounts.plist files by running the
following command in Terminal:
find ~/Library/Group\ Containers/*.airmail/SharedData*/Accounts.plist
And check if there is any email accounts set in those files.
Then please run the following script in Apple’s Script Editor app, and see if it returns any email
accounts and account file content. For privacy, we just want to know if there is any email accounts, not the details.
set filePaths to do shell script "find ~/Library/Group\\ Containers/*.airmail/SharedData*/Accounts.plist"
tell application "System Events"
set pfileContent to ""
set mailAccounts to {}
repeat with filePath in every paragraph of filePaths
try
set itemNodes to property list items of property list file filePath
repeat with i from 1 to number of items in itemNodes
set pfileContent to pfileContent & (read filePath)
set itemNode to item i of itemNodes
set mailAccount to value of property list item "mail" of itemNode
if mailAccounts does not contain mailAccount then
set end of mailAccounts to mailAccount
end if
end repeat
end try
end repeat
repeat with a from 1 to length of mailAccounts
set acc to item a of mailAccounts
set filePaths to filePaths & " " & acc
end repeat
set res to filePaths & " " & pfileContent
end tell
Thank you again for your persistence.
Luc
iPhone: 778 997-0612
CogSci Apps Corp.