mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-03 00:07:05 +00:00
using "primary" to describe the domain of the box / mail server is confusing when working with multiple domains. Usually the box domain is different from the domain you want to host your mail for.
127 lines
4.1 KiB
XML
127 lines
4.1 KiB
XML
<?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">
|
|
<!--
|
|
iOS/OS X Configuration Profile
|
|
|
|
Mobileconfig for iOS/OS X users to setup IMAP, SMTP, Contacts & Calendar
|
|
|
|
https://developer.apple.com/library/ios/featuredarticles/iPhoneConfigurationProfileRef/Introduction/Introduction.html
|
|
-->
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>PayloadContent</key>
|
|
<array>
|
|
<dict>
|
|
<key>CalDAVAccountDescription</key>
|
|
<string>BOX_HOSTNAME calendar</string>
|
|
<key>CalDAVHostName</key>
|
|
<string>BOX_HOSTNAME</string>
|
|
<key>CalDAVPort</key>
|
|
<real>443</real>
|
|
<key>CalDAVUseSSL</key>
|
|
<true/>
|
|
<key>PayloadDescription</key>
|
|
<string>BOX_HOSTNAME (Mail-in-a-Box)</string>
|
|
<key>PayloadDisplayName</key>
|
|
<string>BOX_HOSTNAME calendar</string>
|
|
<key>PayloadIdentifier</key>
|
|
<string>email.mailinabox.mobileconfig.BOX_HOSTNAME.CalDAV</string>
|
|
<key>PayloadOrganization</key>
|
|
<string></string>
|
|
<key>PayloadType</key>
|
|
<string>com.apple.caldav.account</string>
|
|
<key>PayloadUUID</key>
|
|
<string>UUID1</string>
|
|
<key>PayloadVersion</key>
|
|
<integer>1</integer>
|
|
</dict>
|
|
<dict>
|
|
<key>EmailAccountDescription</key>
|
|
<string>BOX_HOSTNAME mail</string>
|
|
<key>EmailAccountType</key>
|
|
<string>EmailTypeIMAP</string>
|
|
<key>IncomingMailServerAuthentication</key>
|
|
<string>EmailAuthPassword</string>
|
|
<key>IncomingMailServerHostName</key>
|
|
<string>BOX_HOSTNAME</string>
|
|
<key>IncomingMailServerPortNumber</key>
|
|
<integer>993</integer>
|
|
<key>IncomingMailServerUseSSL</key>
|
|
<true/>
|
|
<key>OutgoingMailServerAuthentication</key>
|
|
<string>EmailAuthPassword</string>
|
|
<key>OutgoingMailServerHostName</key>
|
|
<string>BOX_HOSTNAME</string>
|
|
<key>OutgoingMailServerPortNumber</key>
|
|
<integer>465</integer>
|
|
<key>OutgoingMailServerUseSSL</key>
|
|
<true/>
|
|
<key>OutgoingPasswordSameAsIncomingPassword</key>
|
|
<true/>
|
|
<key>PayloadDescription</key>
|
|
<string>BOX_HOSTNAME (Mail-in-a-Box)</string>
|
|
<key>PayloadDisplayName</key>
|
|
<string>BOX_HOSTNAME mail</string>
|
|
<key>PayloadIdentifier</key>
|
|
<string>email.mailinabox.mobileconfig.BOX_HOSTNAME.E-Mail</string>
|
|
<key>PayloadOrganization</key>
|
|
<string></string>
|
|
<key>PayloadType</key>
|
|
<string>com.apple.mail.managed</string>
|
|
<key>PayloadUUID</key>
|
|
<string>UUID2</string>
|
|
<key>PayloadVersion</key>
|
|
<integer>1</integer>
|
|
<key>PreventAppSheet</key>
|
|
<false/>
|
|
<key>PreventMove</key>
|
|
<false/>
|
|
<key>SMIMEEnabled</key>
|
|
<false/>
|
|
</dict>
|
|
<dict>
|
|
<key>CardDAVAccountDescription</key>
|
|
<string>BOX_HOSTNAME contacts</string>
|
|
<key>CardDAVHostName</key>
|
|
<string>BOX_HOSTNAME</string>
|
|
<key>CardDAVPort</key>
|
|
<integer>443</integer>
|
|
<key>CardDAVPrincipalURL</key>
|
|
<string>/cloud/remote.php/carddav/addressbooks/</string>
|
|
<key>CardDAVUseSSL</key>
|
|
<true/>
|
|
<key>PayloadDescription</key>
|
|
<string>BOX_HOSTNAME (Mail-in-a-Box)</string>
|
|
<key>PayloadDisplayName</key>
|
|
<string>BOX_HOSTNAME contacts</string>
|
|
<key>PayloadIdentifier</key>
|
|
<string>email.mailinabox.mobileconfig.BOX_HOSTNAME.carddav</string>
|
|
<key>PayloadOrganization</key>
|
|
<string></string>
|
|
<key>PayloadType</key>
|
|
<string>com.apple.carddav.account</string>
|
|
<key>PayloadUUID</key>
|
|
<string>UUID3</string>
|
|
<key>PayloadVersion</key>
|
|
<integer>1</integer>
|
|
</dict>
|
|
</array>
|
|
<key>PayloadDescription</key>
|
|
<string>BOX_HOSTNAME (Mail-in-a-Box)</string>
|
|
<key>PayloadDisplayName</key>
|
|
<string>BOX_HOSTNAME</string>
|
|
<key>PayloadIdentifier</key>
|
|
<string>email.mailinabox.mobileconfig.BOX_HOSTNAME</string>
|
|
<key>PayloadOrganization</key>
|
|
<string></string>
|
|
<key>PayloadRemovalDisallowed</key>
|
|
<false/>
|
|
<key>PayloadType</key>
|
|
<string>Configuration</string>
|
|
<key>PayloadUUID</key>
|
|
<string>UUID4</string>
|
|
<key>PayloadVersion</key>
|
|
<integer>1</integer>
|
|
</dict>
|
|
</plist>
|