Lilly hatte ein Problem (Apple Mail lädt eine Nachricht immer wieder herunter und zeigt keine neuen mehr an) mit ihrem Mac und oh Wunder… ein AppleSkript (von hier) half bei der Lösung ;-P
display dialog “Delete Mail’s offline caches?” buttons {“Cancel”, “Delete”} default button 2
copy the result as list to {buttonpressed}
if the buttonpressed is “Delete” then
set thePath to (path to library folder from user domain as text) & “Mail”
tell application “Finder”
set theIMAPFolders to (every folder of folder thePath whose name begins with “IMAP”) as alias list
end tell
repeat with thisFolder in theIMAPFolders
set theCachePath to (POSIX path of thisFolder & “.OfflineCache”)
do shell script “rm -rf ” & theCachePath
end repeat
end if
Scheint ein häufiger Bug zu sein, wenn man versucht Emails mit dicken Anhängen über eine langsame Internetverbindungen zu verschicken.