Skip to content

Commit 4dd6e75

Browse files
authored
Merge pull request #8299 from ovh/FB-domain-icloud
FB - Personalized domain iCloud
2 parents 0d9a83e + c06c6bb commit 4dd6e75

File tree

4 files changed

+205
-0
lines changed

4 files changed

+205
-0
lines changed

pages/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1355,6 +1355,7 @@
13551355
+ [How to connect an OVHcloud domain name to a Wix hosting plan](web_cloud/domains/how_to_connect_domain_to_wix)
13561356
+ [How to connect an OVHcloud domain name to a GoDaddy hosting plan](web_cloud/domains/how_to_connect_domain_to_godaddy)
13571357
+ [How to connect an OVHcloud domain name to a Webflow hosting plan](web_cloud/domains/how_to_connect_domain_to_webflow)
1358+
+ [How to use an OVHcloud domain with iCloud Mail](web_cloud/domains/domain-icloud)
13581359
+ [DNS (Domain Name System)](products/web-cloud-domains-dns)
13591360
+ [DNS servers](web-cloud-domains-dns-dns-servers)
13601361
+ [Everything you need to know about DNS servers](web_cloud/domains/dns_server_general_information)
Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
---
2+
title: 'How to use an OVHcloud domain with iCloud Mail'
3+
excerpt: 'Find out how to configure your OVHcloud domain name with iCloud to create custom email addresses'
4+
updated: 2025-08-27
5+
---
6+
7+
> [!warning]
8+
>
9+
> OVHcloud provides services that you are responsible for with regard to their configuration and management. It is therefore your responsibility to ensure that they function properly.
10+
>
11+
> This tutorial is designed to help you with common tasks. Nevertheless, we recommend contacting a [specialist provider](/links/partner) if you encounter any difficulties. We will not be able to assist you. You can find more information in the [Go further](#go-further) section of this guide.
12+
>
13+
14+
## Objective
15+
16+
This guide explains how to use an OVHcloud-registered domain name with the Apple iCloud Mail service. You can then create custom email addresses (`[email protected]`), which are fully managed and hosted by Apple.
17+
18+
## Requirements
19+
20+
- A [domain name](/links/web/domains) registered with OVHcloud.
21+
- You have access to the [OVHcloud Control Panel](/links/manager).
22+
- You have the rights to manage the DNS zone for the domain name concerned via the [OVHcloud Control Panel](/links/manager).
23+
- An Apple ID with an **iCloud+** subscription.
24+
25+
## Instructions
26+
27+
### Step 1: Activate the domain name in iCloud <a name="step1"></a>
28+
29+
To activate your domain name in iCloud, follow the instructions from the “Add a domain you own to iCloud Mail on iCloud.com” page in [Apple's official documentation](https://support.apple.com/guide/icloud/add-a-domain-you-own-mma473945269/icloud). Focus on the “Step 3: Update the records with your domain registrar” section, to find the DNS records to add to your OVHcloud DNS zone.
30+
31+
At the end of this step, Apple will send you a list of DNS records (MX, CNAME, TXT) to configure in your OVHcloud DNS zone. Save them for the next step.
32+
33+
### Step 2: Configure the DNS records in your OVHcloud Control Panel
34+
35+
1. Log in to your [OVHcloud Control Panel](/links/manager).
36+
2. Go to the `Web Cloud`{.action} section.
37+
3. Click `DNS zones`{.action}, then choose the domain name concerned.
38+
4. Add or edit the records mentioned below.
39+
40+
To find out how to add, modify or delete each type of DNS record (MX, CNAME, TXT, etc.), read our guide [Everything you need to know about DNS records](/pages/web_cloud/domains/dns_zone_records).
41+
42+
Using the DNS records you previously retrieved ([Step 1](#step1)), create or update the corresponding fields in your OVHcloud DNS zone:
43+
44+
- **MX** : for receiving emails.
45+
- **CNAME**: for DKIM keys (`sig1._domainkey...`, `sig2._domainkey...`).
46+
- **TXT**: for SPF (merge if an SPF record already exists).
47+
- **TXT DMARC**: Optional but recommended ([Step 3](#step3)).
48+
49+
> [!warning]
50+
>
51+
> Use only the quotation marks `"` as they appear in Apple's technical documentation (usually in English). The quotation marks « » or “ ” displayed in some translations should not be used in DNS configuration.
52+
53+
### Step 3: Add a DMARC record (optional) <a name="step3"></a>
54+
55+
To improve the deliverability of your emails and prevent them from being delivered as SPAM, add a **DMARC** record.
56+
57+
To find out how to create a DMARC record in the OVHcloud Control Panel, please refer to our guide on [Enhancing email security via a DMARC record](/pages/web_cloud/domains/dns_zone_dmarc).
58+
59+
### Step 4: Verify and activate the domain in iCloud
60+
61+
Once the DNS records (MX, CNAME, TXT, DMARC) have been correctly added to your OVHcloud DNS zone, go back to [iCloud.com](https://www.icloud.com).
62+
63+
Follow the instructions from the “Add a domain you own to iCloud Mail on iCloud.com” page in [Apple's official documentation](https://support.apple.com/guide/icloud/add-a-domain-you-own-mma473945269/icloud). Focus on the “Step 4: Finish setting up the domain” section.
64+
65+
Once this step is complete, your custom domain is fully activated and you can create up to 3 addresses per person within your family.
66+
67+
> [!warning]
68+
>
69+
> Validation may fail if your DNS records have not yet been propagated. This propagation may take several hours.
70+
71+
### Common troubleshooting
72+
73+
#### Check where the DNS zone is managed
74+
75+
If your domain name is associated with DNS servers external to OVHcloud (Wix, Squarespace, Cloudflare, etc. ), the configuration must be carried out in the management interface for these DNS servers, outside of the OVHcloud Control Panel.
76+
77+
#### CNAME already exists
78+
79+
- A **CNAME** record cannot coexist with a **A, AAAA, or TXT** record configured on the same domain or subdomain.
80+
- Delete the old record before creating the CNAME requested by Apple.
81+
82+
#### Duplicate SPF
83+
84+
- There can only be **one SPF record** per domain name. If an OVHcloud SPF record already exists (e.g.: `v=spf1 include:mx.ovh.com ~all`), merge it with the one provided by Apple (e.g.:
85+
`v=spf1 include:mx.ovh.com include:icloud.com ~all`).
86+
87+
#### Incomplete DKIM
88+
89+
- Apple invites you to save several DKIM keys (`sig1`, `sig2`, etc.) in your DNS zone.
90+
91+
#### Propagation time
92+
93+
- DNS changes can take several hours (up to 24 hours) to be recognized by Apple.
94+
95+
## Go further
96+
97+
For specialised services (SEO, development, etc.), contact [OVHcloud partners](/links/partner) .
98+
99+
If you would like assistance using and configuring your OVHcloud solutions, please refer to our [support offers](/links/support).
100+
101+
Join our [community of users](/links/community).
Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
---
2+
title: 'Comment utiliser un domaine OVHcloud avec iCloud Mail'
3+
excerpt: 'Découvrez comment configurer votre nom de domaine OVHcloud avec iCloud pour créer des adresses e-mail personnalisées'
4+
updated: 2025-08-27
5+
---
6+
7+
> [!warning]
8+
>
9+
> OVHcloud met à votre disposition des services dont la configuration, la gestion et la responsabilité vous incombent. Il vous revient de ce fait d'en assurer le bon fonctionnement.
10+
>
11+
> Nous vous recommandons de faire appel à un [prestataire spécialisé](/links/partner) si vous éprouvez des difficultés. En effet, nous ne serons pas en mesure de vous fournir une assistance. Plus d'informations dans la section [« Aller plus loin »](#go-further) de ce tutoriel.
12+
>
13+
14+
## Objectif
15+
16+
Ce guide vous explique comment utiliser un nom de domaine enregistré chez OVHcloud avec le service iCloud Mail d’Apple. Vous pourrez ainsi créer des adresses e-mail personnalisées (`[email protected]`), entièrement gérées et hébergées par Apple.
17+
18+
## Prérequis
19+
20+
- Disposer d'un [nom de domaine](/links/web/domains) enregistré chez OVHcloud.
21+
- Être connecté à votre [espace client OVHcloud](/links/manager).
22+
- Disposer d'un accès à la gestion de la zone DNS du nom de domaine concerné depuis l'[espace client OVHcloud](/links/manager).
23+
- Un identifiant Apple avec un abonnement **iCloud+**.
24+
25+
## En pratique
26+
27+
### Étape 1 : Activer le nom de domaine dans iCloud <a name="step1"></a>
28+
29+
Pour activer votre nom de domaine dans iCloud, suivez les instructions de la page « Add a domain you own to iCloud Mail on iCloud.com » de la [documentation officielle Apple](https://support.apple.com/guide/icloud/add-a-domain-you-own-mma473945269/icloud). Concentrez-vous sur la section « Step 3: Update the records with your domain registrar » (Mettre à jour les enregistrements auprès de votre registraire de domaine), pour relever les enregistrements DNS à ajouter dans votre zone DNS OVHcloud.
30+
31+
À l’issue de cette étape, une liste d’enregistrements DNS (MX, CNAME, TXT) à configurer dans votre zone DNS OVHcloud vous sera communiquée par Apple. Conservez-les pour l’étape suivante.
32+
33+
### Étape 2 : Configurer les enregistrements DNS dans votre espace client OVHcloud
34+
35+
1. Connectez-vous à votre [espace client OVHcloud](/links/manager).
36+
2. Rendez-vous dans la partie `Web Cloud`{.action}.
37+
3. Cliquez sur `Zones DNS`{.action}, puis choisissez le nom de domaine concerné.
38+
4. Ajoutez ou modifiez les enregistrements ci-dessous.
39+
40+
Pour savoir comment ajouter, modifier ou supprimer chaque type d'enregistrement DNS (MX, CNAME, TXT, etc.), consultez notre guide [Tout savoir sur les enregistrements DNS](/pages/web_cloud/domains/dns_zone_records).
41+
42+
À l’aide des enregistrements DNS relevés précédemment ([Étape 1](#step1)), créez ou mettez à jour les champs correspondants dans votre zone DNS OVHcloud :
43+
44+
- **MX** : pour la réception des e-mails.
45+
- **CNAME** : pour les clefs DKIM (`sig1._domainkey...`, `sig2._domainkey...`).
46+
- **TXT** : pour le SPF (fusionnez si un enregistrement SPF existe déjà).
47+
- **TXT DMARC** : facultatif mais recommandé ([Étape 3](#step3)).
48+
49+
> [!warning]
50+
>
51+
> Utilisez uniquement des guillemets droits `"` tels qu’ils apparaissent dans la documentation technique d’Apple (généralement en version anglaise). Les guillemets typographiques « » ou “ ” affichés dans certaines traductions ne doivent pas être utilisés dans la configuration DNS.
52+
53+
### Étape 3 : Ajouter un enregistrement DMARC (facultatif) <a name="step3"></a>
54+
55+
Pour améliorer la délivrabilité de vos e-mails et éviter que vos messages arrivent en SPAM, ajoutez un enregistrement **DMARC**.
56+
57+
Pour savoir comment créer un enregistrement DMARC dans votre espace client OVHcloud, consultez notre guide [Améliorer la sécurité des e-mails via un enregistrement DMARC](/pages/web_cloud/domains/dns_zone_dmarc).
58+
59+
### Étape 4 : Vérifier et activer le domaine dans iCloud
60+
61+
Une fois les enregistrements DNS (MX, CNAME, TXT, DMARC) correctement ajoutés dans votre zone DNS OVHcloud, retournez sur [iCloud.com](https://www.icloud.com).
62+
63+
Suivez les instructions de la page « Add a domain you own to iCloud Mail on iCloud.com » de la [documentation officielle Apple](https://support.apple.com/guide/icloud/add-a-domain-you-own-mma473945269/icloud). Concentrez-vous sur la section « Step 4: Finish setting up the domain ».
64+
65+
Une fois cette étape terminée, votre domaine personnalisé est pleinement activé et vous pouvez créer jusqu’à 3 adresses par personne, dans le cadre familial.
66+
67+
> [!warning]
68+
>
69+
> La validation peut échouer si vos enregistrements DNS n’ont pas encore été propagés. Cette propagation peut prendre plusieurs heures.
70+
71+
### Dépannages courants
72+
73+
#### Vérifier où est gérée la zone DNS
74+
75+
Si votre nom de domaine est associé à des serveurs DNS externes à OVHcloud (Wix, Squarespace, Cloudflare, etc. ), la configuration doit être effectuée dans l'interface de gestion de ces serveurs DNS, hors de l’espace client OVHcloud.
76+
77+
#### CNAME déjà existant
78+
79+
- Un enregistrement **CNAME** ne peut pas cohabiter avec un enregistrement **A, AAAA ou TXT** configuré sur le même domaine ou sous-domaine.
80+
- Supprimez l’ancien enregistrement avant de créer le CNAME demandé par Apple.
81+
82+
#### SPF en doublon
83+
84+
- Il ne peut exister qu’**un seul enregistrement SPF** par nom de domaine. Si un enregistrement SPF OVHcloud existe déjà (ex : `v=spf1 include:mx.ovh.com ~all`), fusionnez-le avec celui fourni par Apple (ex : `v=spf1 include:mx.ovh.com include:icloud.com ~all`).
85+
86+
#### DKIM incomplet
87+
88+
- Apple vous invite à enregistrer plusieurs clefs DKIM (`sig1`, `sig2`, etc.) dans votre zone DNS.
89+
90+
#### Délai de propagation
91+
92+
- Les modifications DNS peuvent prendre plusieurs heures (jusqu’à 24h) avant d’être reconnues par Apple.
93+
94+
## Aller plus loin
95+
96+
Pour des prestations spécialisées (référencement, développement, etc), contactez les [partenaires OVHcloud](/links/partner).
97+
98+
Si vous souhaitez bénéficier d'une assistance à l'usage et à la configuration de vos solutions OVHcloud, nous vous proposons de consulter nos différentes [offres de support](/links/support).
99+
100+
Échangez avec notre [communauté d'utilisateurs](/links/community).
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
id: fdbfcc57-3738-41a1-b277-ae52a4435298
2+
full_slug: domain-icloud
3+
translation_banner: true

0 commit comments

Comments
 (0)