mirror of
https://github.com/getnamingo/registry.git
synced 2025-05-11 01:08:34 +02:00
Clarification in documentation on adding MX records
This commit is contained in:
parent
0231bc9e14
commit
7129fc7019
1 changed files with 6 additions and 0 deletions
|
@ -279,6 +279,12 @@ return [
|
||||||
'type' => 'TXT',
|
'type' => 'TXT',
|
||||||
'parameters' => ['"v=spf1 include:example.com ~all"'],
|
'parameters' => ['"v=spf1 include:example.com ~all"'],
|
||||||
],
|
],
|
||||||
|
// MX record
|
||||||
|
[
|
||||||
|
'name' => '@',
|
||||||
|
'type' => 'MX',
|
||||||
|
'parameters' => [10, 'mail.example.com.'], // Priority and mail server
|
||||||
|
],
|
||||||
];
|
];
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue