fix(email/exchange): zone Exchange server hostname (ex.mail.ovh.ca) for CA in config guides#235
Draft
BrenKt wants to merge 1 commit into
Draft
fix(email/exchange): zone Exchange server hostname (ex.mail.ovh.ca) for CA in config guides#235BrenKt wants to merge 1 commit into
BrenKt wants to merge 1 commit into
Conversation
…n config guides
CA/APAC Exchange uses the fixed hostname ex.mail.ovh.ca (no server number),
while EU uses ex?.mail.ovh.net. The new-docs migration exposed the EU form to
all zones. Wrap each hostname reference in <Region> blocks (eu = ex?.mail.ovh.net
with the 'replace ?' note, ca = ex.mail.ovh.ca without it) across 6 guides x 7
languages: how-to-configure-{ios,mail-macos,thunderbird-mac,android},
thunderbird-windows-configuration, diagnostic-advanced.
Also fixes an MX-record leak (mx0-4.mail.ovh.net -> .ca in the ca block) and
removes a duplicated POP block in how-to-configure-thunderbird-mac.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What & why
The Hosted Microsoft Exchange server hostname is zone-specific:
ex?.mail.ovh.net(the?is the customer's server number)ex.mail.ovh.ca(fixed hostname, no server number)The new-docs migration exposed only the EU form to every zone, so CA readers
were shown the wrong server name. This PR gates each hostname reference per
zone with
<Region>.Changes — 6 guides × 7 languages (42 files)
how-to-configure-{ios,mail-macos,thunderbird-mac,android},thunderbird-windows-configuration,diagnostic-advanced.For each hostname reference:
<Region zones={['eu']}>keepsex?.mail.ovh.net+ the "replace ?" note<Region zones={['ca']}>showsex.mail.ovh.ca(note dropped — CA has no number)Also in
diagnostic-advanced: MX-record list zoned (mx0-4.mail.ovh.net→.cain the CA block). Removed a duplicated POP-config block in
how-to-configure-thunderbird-mac(pre-existing editing artifact).Source of truth
Legacy docs (
ovh/docs) CA locales (en-ca/fr-ca/en-us/es-us) useex.mail.ovh.ca.Validation
.nethostname leaks outside aneuRegion (region-state scan).The landing-pages counterpart shipped in #220.