Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to run this mail rule (which copies the email to another location on the disk).

The script works fine if I right click on the mail and choose "Apply Rules", but it does not work fine on new incoming mails without user interaction.

Is this something to do with sandboxing? Is there any way around this? If not, is there another Mail client that does not have sandboxing?

The script stops on this line

set theEmail to (do shell script "mdfind -onlyin ~/Library/Mail \"kMDItemFSName = '" & theId & ".emlx'\"")

And I get these errors in my log:

26/01/13 14:38:53,806 mdworker[26304]: Unable to talk to lsboxd
26/01/13 14:38:53,823 mdworker[26305]: Unable to talk to lsboxd
26/01/13 14:38:53,859 sandboxd[26308]: ([26304]) mdworker(26304) deny mach-lookup com.apple.ls.boxd
26/01/13 14:38:53,899 sandboxd[26308]: ([26305]) mdworker(26305) deny mach-lookup com.apple.ls.boxd
26/01/13 14:38:54,000 kernel[0]: Sandbox: sandboxd(26308) deny mach-lookup com.apple.coresymbolicationd
26/01/13 14:38:55,443 mDNSResponder[54]: queryrecord_result_callback: mDNS_Lock: Locking failure! mDNS_busy (1) != mDNS_reentrancy (0)
26/01/13 14:38:55,443 mDNSResponder[54]: queryrecord_result_callback: mDNS_Unlock: Locking failure! mDNS_busy (1) != mDNS_reentrancy (0)
26/01/13 14:38:55,443 mDNSResponder[54]: queryrecord_result_callback: mDNS_Lock: Locking failure! mDNS_busy (1) != mDNS_reentrancy (0)
26/01/13 14:38:55,443 mDNSResponder[54]: queryrecord_result_callback: mDNS_Unlock: Locking failure! mDNS_busy (1) != mDNS_reentrancy (0)
26/01/13 14:38:55,444 mDNSResponder[54]: queryrecord_result_callback: mDNS_Lock: Locking failure! mDNS_busy (1) != mDNS_reentrancy (0)
26/01/13 14:38:55,444 mDNSResponder[54]: queryrecord_result_callback: mDNS_Unlock: Locking failure! mDNS_busy (1) != mDNS_reentrancy (0)
26/01/13 14:38:55,445 mDNSResponder[54]: queryrecord_result_callback: mDNS_Lock: Locking failure! mDNS_busy (1) != mDNS_reentrancy (0)
26/01/13 14:38:55,445 mDNSResponder[54]: queryrecord_result_callback: mDNS_Unlock: Locking failure! mDNS_busy (1) != mDNS_reentrancy (0)

Below is the full applescript for reference. The dialogs were added to find out where the script stopped processing.

using terms from application "Mail"
    on perform mail action with messages theselectedMessages for rule theRule
        tell application "Mail"             
            repeat with theMessage in theselectedMessages
                display dialog "inside"
                set theId to id of theMessage

                set theEmail to (do shell script "mdfind -onlyin ~/Library/Mail \"kMDItemFSName = '" & theId & ".emlx'\"")

                display dialog theEmail

                set archiveName to theId & "-" & (extract address from theMessage's sender) & ".emlx"
                set saveLocation to "Users:wesley:Documents:Incoming:"

                set theSender to sender of theMessage
                set theReceiver to name of the account of the mailbox of theMessage

                do shell script "cp '" & theEmail & "' '" & POSIX path of saveLocation & "';"

                set background color of theMessage to yellow
            end repeat
        end tell
    end perform mail action with messages
end using terms from
share|improve this question

1 Answer

yes, me too. when I run "Apply rules" script runs correctly, but when new letter is coming - not :(

share|improve this answer
I found out that this is only the case on POP inboxes, not IMAP. Are you also using POP? – Wesley Feb 5 at 14:19
yes, POP. Now I manually run rules every day :( – Alexander Borunov Mar 16 at 16:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.