Come rimuovere il flag "alta priorità" dalla posta in arrivo nella posta macOS

6

Ho un vicino che contrassegna ognuno dei suoi messaggi come "alta priorità".

Vorrei rimuovere questo flag per tutte le email inviate da lui.

Quindi, c'è un modo per controllare il livello di priorità della posta in arrivo con una regola? In caso contrario, esiste un modo per modificare manualmente la priorità dei messaggi selezionati?

PS: Capisco che la priorità sia data dal server, ma dopo averlo scaricato localmente, non c'è motivo per cui non dovrei essere in grado di modificare alcuni flag.

    
posta Florian F 08.09.2018 - 19:43
fonte

1 risposta

2

Hmm. Questo è teorico e non testato, ma secondo questo :

Many mail clients have the option of marking an outgoing message 'high priority' or 'urgent.' In Mail.app, such messages show up in the Inbox with two exclamation marks (!!) in the flags column. If you want to sort messages by the flags column, so that messages you flag yourself are at the top, all high priority messages you have ever received will also be at the top of the inbox.

Mail.app currently has no way of removing this flag from emails you have received (as noted in this Apple discussions thread.). The following shell script allows you to unset the priority status of all the emails you have ever received, so that no emails in your inbox have '!!' next to them any more:

sqlite3 ~/Library/Mail/'Envelope Index' 'update messages set flags = flags | 196608 where flags & 196608 != 196608;'

You can save this as an AppleScript by opening AppleScript Editor and entering the following:

do shell script "sqlite3 ~/Library/Mail/'Envelope Index' 'update messages set flags = flags | 196608 where flags & 196608 != 196608;'"

Viene impostato per essere eseguito quando la posta riceve un'e-mail contrassegnata con priorità alta:

  1. Salva il tuo script in ~ ~ / Libreria / Applicazione
  2. Script / com.apple.mail "Mail > Preferenze > Regole > Aggiungi regola
    • Se sono soddisfatte any delle seguenti condizioni
    • Priority is High
    • Preforma le seguenti azioni:
    • Run AppleScript [Select Your Script]
risposta data 10.09.2018 - 01:05
fonte

Leggi altre domande sui tag