Pregunta

¿Hay alguna forma de correo basura marca automáticamente como 'leer' en OS X (10.6.5) E-mail? Una utilidad gratuita o shareware estaría bien.

Mi correo es compatible proveedor de filtros de basura que se mueve automáticamente los mensajes seleccionados a la carpeta de correo basura, pero no marcarlos como leídos. OS X Mail para arriba (IMAP) y muestra recoge los encabezados en la carpeta de correo basura como no leído.

Me gustaría seguir utilizando filtros de mi proveedor de correo en lugar de sólo el 'Reglamento' en OS X Mail porque de lo contrario muestro toneladas de mensajes en mi bandeja de entrada iPhone, ya que no es compatible con el filtrado.

¿Fue útil?

Solución

Go To Mail -> Preferences -> Junk

When junk mail arrives, say: Perform Custom actions

Click on the Advanced button at the bottom, which just turned up to be active.

Junk

Then say "Mark as read" in one of your actions:

enter image description here

Otros consejos

The link in the accepted answer is dead. I've been able to solve this using the following AppleScript:

using terms from application "Mail"
    on perform mail action with messages theMessages
        tell application "Mail"
            set read status of messages of mailbox "Bulk Mail" of account "Yahoo!" to true
        end tell
    end perform mail action with messages
end using terms from

Using Script Editor, edit the above with the name of your Junk mailbox and account. Save it as "Mark_Junk_Read.scpt" in ~/Library/Application Scripts/com.apple.mail. Then, in Mail, go to "Preferences", "Rules", "Add Rule". Make the rule apply to "Every Message" and tell it to run your script, like so:

Apple Mail Script Rule

You could add a Mail.app Rule that mark every new mail in the "Junk" folder as read.

You could create an AppleScript that does this.

I haven't looked into it much, but this link appears to have a promising solution.

http://discussions.apple.com/message.jspa?messageID=8350917

I don't really trust SPAM headers. I've seen messages from mail-lists I subscribed to be labeled as SPAM and end up in that folder where I don't see it for ages.

As a result I bought a copy of SpamSieve which, after training, does a much better job filtering out the garbage.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a apple.stackexchange
scroll top