07-01-2022 07:33 AM - edited 07-01-2022 07:34 AM
I'm looking to Disable/turn Off SMIME to everyone via Jamf. So far the research just ended up here!!
This doesn't helped,
defaults read com.microsoft.Outlook DisableSMIMECompose 1
End goal is that Users shouldn't use the feature at all, unfortunately we cant remove SMIME Cert that creates problem for the older emails that encrypted using it!
Any help please...!
07-01-2022 11:33 AM - edited 07-05-2022 06:39 AM
@Jonathanjo The "defaults read" line doesn't set the DisableSMIMECompose value, it reads it. You'd use "defaults write..." to set the value.
That said, instead of writing a script to set that flag, which would not prevent your users from changing it, you should use a Configuration Profile with an Applications & Custom Settings payload for the com.microsoft.Outlook domain with the following .plist:
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>DisableSMIMECompose</key> <true/> </dict> </plist>
Posted on 07-05-2022 06:07 AM
Ahh I didn't noticed that 'read' instead of 'write'. Thanks @sdagley for correcting me.
I'll try this out way.
Is there any way to disable 'Digital Signing' too?
Posted on 07-05-2022 07:10 AM
@Jonathanjo You can see the different options for Outlook at https://docs.microsoft.com/en-us/deployoffice/mac/preferences-outlook
The easiest way to configure those in Jamf Pro is via a Configuration profile using the following steps: