summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2018-11-25 17:18:55 -0800
committerMicah Lee <micah@micahflee.com>2018-11-25 17:18:55 -0800
commit29d2518911e79f13a5b359f1a42919634ec906e7 (patch)
tree9b00fc551fa54114cb9809e3eea5693013037252
parent49340321445e9b5dcbcded52f72dd16b02dc7a39 (diff)
downloadonionshare-29d2518911e79f13a5b359f1a42919634ec906e7.tar.gz
onionshare-29d2518911e79f13a5b359f1a42919634ec906e7.zip
Add comments to entitlements file, and remove the application group
-rw-r--r--install/macos_sandbox/parent.plist17
1 files changed, 12 insertions, 5 deletions
diff --git a/install/macos_sandbox/parent.plist b/install/macos_sandbox/parent.plist
index 0e4505d5..35b4447c 100644
--- a/install/macos_sandbox/parent.plist
+++ b/install/macos_sandbox/parent.plist
@@ -4,23 +4,30 @@
<dict>
<key>com.apple.security.app-sandbox</key>
<true/>
+ <!-- Tor needs to network server and client, and OnionShare needs network client -->
<key>com.apple.security.network.server</key>
<true/>
<key>com.apple.security.network.client</key>
<true/>
- <key>com.apple.security.files.user-selected.read-only</key>
+ <!-- In share mode, users need to be able to select files, and in receive mode,
+ users need to be able to choose a folder to save files to -->
+ <key>com.apple.security.files.user-selected.read-write</key>
<true/>
+ <!-- Flask needs to read this mime.types file when starting an HTTP server -->
+ <key>com.apple.security.temporary-exception.files.absolute-path.read-only</key>
+ <array>
+ <string>/private/etc/apache2/mime.types</string>
+ </array>
+ <!-- For OnionShare to be able to connect to Tor Browser's tor control port,
+ it needs to read it's control_auth_cookie file -->
<key>com.apple.security.temporary-exception.files.home-relative-path.read-only</key>
<array>
<string>/Library/Application Support/TorBrowser-Data/Tor/control_auth_cookie</string>
</array>
+ <!-- In receive mode, OnionShare needs to be able to write to ~/OnionShare -->
<key>com.apple.security.temporary-exception.files.home-relative-path.read-write</key>
<array>
<string>/OnionShare</string>
</array>
- <key>com.apple.security.application-groups</key>
- <array>
- <string>com.micahflee.onionshare</string>
- </array>
</dict>
</plist>