Applescript zum Importieren von E-Mails mit Anhängen in devonthink, die archivierte Dateien erweitern würden


2

Mein Arbeitsablauf besteht darin, alle eingehenden Dokumente von Mail.app zu markieren und in Devonthink abzulegen. Ich mache das mit Applescript. Das Skript funktioniert mit einer Ausnahme einwandfrei - ich weiß nicht, wie ich es dazu bringen soll, ZIP- und RAR-Dateien in den Anhängen zu erweitern, bevor ich sie nach Devonthink verschiebe. Wäre wahrscheinlich ein Unarchiver oder ein anderes skriptfähiges Archivierungsprogramm erforderlich. Ich würde mich über Ihre Vorschläge freuen. Mein Skript ist unten.

property pNoSubjectString : "(no subject)"

tell application "Mail"
    try
        tell application id "com.devon-technologies.thinkpro2"
            if not (exists «class DTcu») then error "No database is in use."
        end tell
        set theSelection to the selection
        set theFolder to (POSIX path of (path to temporary items))
        if the length of theSelection is less than 1 then error "One or more messages must be selected."
        repeat with theMessage in theSelection
            my importMessage(theMessage, theFolder)
        end repeat
    on error error_message number error_number
        if error_number is not -128 then display alert "Mail" message error_message as warning
    end try
end tell

on importMessage(theMessage, theFolder)
    tell application "Mail"
        try
            tell theMessage
                set {theDateReceived, theDateSent, theSender, theSubject, theSource, theReadFlag} to {the date received, the date sent, the sender, subject, the source, the read status}
                tell application "MailTagsHelper"
                    tell theMessage
                        set theTags to the keywords
                    end tell
                end tell
            end tell
            if theSubject is equal to "" then set theSubject to pNoSubjectString
            set theAttachmentCount to count of mail attachments of theMessage
            tell application id "com.devon-technologies.thinkpro2"
                set theGroup to «class DTig»
                if theAttachmentCount is greater than 0 then set theGroup to «event DTpacd08» {name:theSubject, «class DTty»:«constant DtypDTgr»} given «class DTin»:theGroup
                set theRecord to «event DTpacd08» {name:theSubject & ".eml", «class DTty»:«constant Dtyp****», «class DTcr»:theDateSent, «class DTmo»:theDateReceived, URL:theSender, «class conT»:(theSource as string), «class tags»:theTags} given «class DTin»:theGroup
                set «class DTur» of theRecord to (not theReadFlag)
            end tell
            repeat with theAttachment in mail attachments of theMessage
                set theFile to theFolder & (name of theAttachment)
                tell theAttachment to save in theFile
                tell application id "com.devon-technologies.thinkpro2"
                    set theAttachmentRecord to «event DTpacd01» theFile given «class DTto»:theGroup
                    set «class DTur» of theAttachmentRecord to (not theReadFlag)
                    set URL of theAttachmentRecord to theSender
                    set «class tags» of theAttachmentRecord to theTags
                end tell
            end repeat
        on error error_message number error_number
            if error_number is not -128 then display alert "Mail" message error_message as warning
        end try
    end tell
end importMessage

Antworten:


1

Ich sehe zwei Möglichkeiten:

Zunächst müssen Sie die Datei speichern und einfach den openBefehl verwenden, wie er unter dem folgenden Link angezeigt wird. Ich habe es versucht und es funktioniert gut genug.

https://stackoverflow.com/questions/13651533/create-an-applescript-or-shell-script-to-unzip-and-rename-files

Alternativ können Sie einen do shell scriptBefehl verwenden, um mit dem unzipBefehlszeilentool dasselbe wie hier gezeigt zu tun.

https://discussions.apple.com/message/9062795#9062795

Das Extrahieren des Archivinhalts ist jedoch einfach. Hat das Archiv eine Struktur? Wird es immer dasselbe sein? Hier kann es zu Problemen kommen.

Hoffe das hilft.

Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.