mirror of
https://github.com/YunoHost/dynette.git
synced 2024-09-03 20:06:17 +02:00
Merge pull request #6 from YunoHost/more-allowed-operations
Add allowed operations to be able to sync with recommended DNS conf
This commit is contained in:
commit
ca135295d7
1 changed files with 7 additions and 4 deletions
|
@ -11,11 +11,14 @@ rname = 'hostmaster@yunohost.org' # Responsible person (https://tools.ietf.o
|
||||||
|
|
||||||
allowed_operations = {
|
allowed_operations = {
|
||||||
'.' : ['A', 'AAAA', 'TXT', 'MX'],
|
'.' : ['A', 'AAAA', 'TXT', 'MX'],
|
||||||
'pubsub.' : ['A', 'AAAA'],
|
'*' : ['A', 'AAAA'],
|
||||||
'muc.' : ['A', 'AAAA'],
|
'pubsub.' : ['A', 'AAAA', 'CNAME'],
|
||||||
'vjud.' : ['A', 'AAAA'],
|
'muc.' : ['A', 'AAAA', 'CNAME'],
|
||||||
|
'vjud.' : ['A', 'AAAA', 'CNAME'],
|
||||||
'_xmpp-client._tcp.' : ['SRV'],
|
'_xmpp-client._tcp.' : ['SRV'],
|
||||||
'_xmpp-server._tcp.' : ['SRV']
|
'_xmpp-server._tcp.' : ['SRV'],
|
||||||
|
'mail._domainkey' : ['TXT'],
|
||||||
|
'_dmarc' : ['TXT']
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue