AppleScript de correo dejó de funcionar en Yosemite

2

Este script dejó de funcionar en Yosemite. Cualquier sugerencia sería muy apreciada.

tell application "Mail"
try


    set _msgs_to_move to (a reference to (every message of mailbox "INBOX" of every account whose flagged status is false and was replied to is true))
    set _msg_list to contents of _msgs_to_move
    if (_msg_list's length > 0) then
        move _msgs_to_move to mailbox "messaggi letti"
    end if
    -- End update for 10.7.0
end try
end tell

Recibo el siguiente error:

  

recibe todos los mensajes del buzón de correo "INBOX" de cada cuenta cuyos marcadores estén marcados   estado = falso y fue respondido a = verdadero
  - > número de error -1728 de   buzón "INBOX" de cada cuenta

¡Gracias!

Michele

    
pregunta user1202609 31.12.2014 - 09:43

2 respuestas

1

Gracias a Buscar comentario lo resolví:

tell application "Mail"
set accountlist to the name of every account
try
    repeat with n from 1 to (the number of items in accountlist)
        set _msgs_to_move to (a reference to (every message of mailbox "INBOX" of the account (item n of accountlist) whose flagged status is false and was replied to is true))
        set _msg_list to contents of _msgs_to_move
        if (_msg_list's length > 0) then
            move _msgs_to_move to mailbox "messaggi letti"
        end if
    end repeat
end try
end tell
    
respondido por el user1202609 31.12.2014 - 11:05
1

¿Obtienes los mismos resultados usando

tell application "Mail"
set _msgs_to_move to every message of inbox whose flagged status is false and was replied to is true
    log (count of _msgs_to_move)

end tell
    
respondido por el markhunte 31.12.2014 - 11:43

Lea otras preguntas en las etiquetas