Apple Mail plist entry item for downloading remote content

So, I know how to have apple mail 9 always download remote content, but I need to set this preference programmatically. I am looking at the plice apple mail file but cannot find the value. Does anyone have an idea where this setting might be?

+5
source share
1 answer

I split ~/Library/Preferences/com.apple.mail-shared.plist after enabling "Download Remote Content" in Mail settings and got the following:

  <key>AlertForNonmatchingDomains</key> <false/> <key>DisableURLLoading</key> - <true/> + <false/> <key>ExpandPrivateAliases</key> <true/> 
+4
source

Source: https://habr.com/ru/post/1244256/


All Articles