Me gustaría automatizar, con applescript, la copia de seguridad de un buzón de correo, que se hace manualmente con el menú "Exportar buzón...", pero: No puedo configurar la carpeta donde se guardará el buzón; No puedo establecer el buzón a exportar, sólo funciona con el buzón que previamente he seleccionado manualmente con el siguiente comando: Haga clic en la opción de menú...
Las líneas del script, que no funciona, son:
tell application "Finder"
--set mboxSavePath to "HD Macintosh:Users:simonepiersigilli:Desktop:e-mail:" -incorrect command to set the save path-
--set mboxSavePath to "/Users/simonepiersigilli/Desktop/e-mail/" -incorrect command to set the save path-
--set path POSIX to mboxSavePath -incorrect command to set the save path-
end tell
tell application "Mail" to activate
tell application "System Events"
tell process "Mail"
--click menu item "cesare@appuntidigitali.eu" of menu "Entrata" of menu "Caselle" of menu bar 2 -wrong command to set the mailbox to export-
click menu item "Esporta casella di posta…" of menu "Casella" of menu bar 1 -correct command to open the menu "Export mailbox ..."-
-- Now click the Go (choose) button
click button "Scegli" of sheet of front window -correct command to click the button choose-
tell application "Mail" to close the front window
end tell
end tell
**UPDATE****
La intención es que el script se ejecute cada semana y tendrá que hacer una copia de seguridad de los siguientes buzones de entrada y envío resaltados en rojo.