Skip to content

Commit

Permalink
Add iCloud Plus (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
aeden committed Oct 18, 2022
1 parent 58e5629 commit 631864d
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 0 deletions.
49 changes: 49 additions & 0 deletions services/icloud-plus/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
"config": {
"name": "icloud-plus",
"label": "iCloud Plus",
"description": "Set up a custom domain with iCloud Mail",
"category": "email"
},

"fields": [
{
"name": "icloud_plus_txt",
"label": "iCloud+ TXT record",
"description": "Enter the personal TXT record provided during set up",
"example": ""
}
],

"records": [
{
"type": "TXT",
"content": "{{icloud_plus_txt}}",
"ttl": 3600
},
{
"type": "MX",
"content": "mx01.mail.icloud.com",
"prio": 10,
"ttl": 3600
},
{
"type": "MX",
"content": "mx02.mail.icloud.com",
"prio": 10,
"ttl": 3600
},
{
"type": "TXT",
"name": "sig1._domainkey",
"content": "sig1.dkim.{{domain}}.at.icloudmailadmin.com",
"prio": 10,
"ttl": 3600
},
{
"type": "SPF",
"content": "v=spf1 include:icloud.com ~all",
"ttl": 3600
}
]
}
Binary file added services/icloud-plus/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions services/icloud-plus/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Set up a custom domain with iCloud Mail.

0 comments on commit 631864d

Please sign in to comment.