This isn't actually an issue, rather a tip that others might find helpful.
I was frustrated that prefs:root=Phone#SILENCE_CALLS wasn't working so I did some digging and found that this is the one that actually seems to work in 26.2 to get the the "Screen Unknown Callers" settings section:
prefs:root=Phone#INTELLIGENT_CALL_SCREENING_MENU_TITLE
Basically I found it in
\System\Library\PreferenceBundles\IntelligentCallScreeningSettingsBundle.bundle\IntelligentCallScreeningSettingsBundle.loctable
I tried the other keys in there but it seems to only work for the section header one above:
<key>en</key>
<dict>
<key>INTELLIGENT_CALL_SCREENING_MENU_TITLE</key>
<string>Screen Unknown Callers</string>
<key>INTELLIGENT_CALL_SCREENING_OPTION_ASK_EXPLANATION</key>
<string>Calls from unsaved numbers will be asked for more information before iPhone rings. Calling and data rates may apply.</string>
<key>INTELLIGENT_CALL_SCREENING_OPTION_ASK_TITLE</key>
<string>Ask Reason for Calling</string>
<key>INTELLIGENT_CALL_SCREENING_OPTION_NEVER_EXPLANATION</key>
<string>Calls from unsaved numbers will ring, and missed calls will be displayed on the Recents list.</string>
<key>INTELLIGENT_CALL_SCREENING_OPTION_NEVER_TITLE</key>
<string>Never</string>
<key>INTELLIGENT_CALL_SCREENING_OPTION_SILENCE_EXPLANATION</key>
<string>Calls from unsaved numbers will be silenced, sent to voicemail, and displayed on the Recents list. Calling and data rates may apply.</string>
<key>INTELLIGENT_CALL_SCREENING_OPTION_SILENCE_TITLE</key>
<string>Silence</string>
</dict>
So that might be good to know for anyone looking for a more universal method for getting to a certain settings menu section. Try the various strings in the loctable (localization table) files, specifically the ones for the section titles.
This isn't actually an issue, rather a tip that others might find helpful.
I was frustrated that
prefs:root=Phone#SILENCE_CALLSwasn't working so I did some digging and found that this is the one that actually seems to work in 26.2 to get the the "Screen Unknown Callers" settings section:Basically I found it in
I tried the other keys in there but it seems to only work for the section header one above:
So that might be good to know for anyone looking for a more universal method for getting to a certain settings menu section. Try the various strings in the
loctable(localization table) files, specifically the ones for the section titles.