Posted on 09-25-2023 06:42 AM
We have recently deployed notifications that will notify a user that an application deployed from Jamf App Catalog is due an update. These notifications have been created through configuration profiles. The user receives three notifications:
We have noticed an issue with the second notification that it is applying a 60 minute countdown before it automatically closes out the application, giving a "Minutes remaining: 60" at the end of the notification despite us not adding this as an instruction as part of the plist for the specific application.
The plist is written as:
<?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>notify</key>
<integer>86400</integer>
<key>notify_message</key> <string>An update for Edge is available. You can manually quit the application to update or Edge will automatically close and update in 4 hours.</string>
<key>deadline</key>
<integer>14400</integer>
<key>deadline_message</key> <string>Edge will quit to complete the update. The application will automatically relaunch once the update is complete.</string>
<key>quit_delay</key>
<integer>10</integer>
<key>relaunch</key>
<boolean>True</boolean>
</dict>
</plist>
The message the erroring notification is showing is:
"Edge will quit to complete the update. The application will automatically relaunch once the update is complete.
Minutes remaining: 60"
I'm not seeing any reason why that minutes remaining part of the notification should be apparent. What have I missed?