Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Apple Mail plist entry to load remote content

So I know how to have apple mail 9 always load remote content, but I need to set that preference programmatically. I'm looking through the apple mail plist file but can't seem to find the value. Does anyone have an idea where this setting might be?

like image 969
Richthofen Avatar asked Sep 26 '22 05:09

Richthofen


1 Answers

I diffed ~/Library/Preferences/com.apple.mail-shared.plist after enabling 'Load remote content' in Mail preferences, and got this:

        <key>AlertForNonmatchingDomains</key>
        <false/>
        <key>DisableURLLoading</key>
-       <true/>
+       <false/>
        <key>ExpandPrivateAliases</key>
        <true/>
like image 114
chrismear Avatar answered Oct 20 '22 12:10

chrismear