Add allowed operations to be able to sync with recommended DNS conf

This commit is contained in:
Alexandre Aubin 2017-04-21 02:40:49 +02:00 committed by GitHub
parent cac36c93fa
commit 94f9b8f587

View file

@ -11,11 +11,14 @@ rname = 'hostmaster@yunohost.org' # Responsible person (https://tools.ietf.o
allowed_operations = {
'.' : ['A', 'AAAA', 'TXT', 'MX'],
'pubsub.' : ['A', 'AAAA'],
'muc.' : ['A', 'AAAA'],
'vjud.' : ['A', 'AAAA'],
'*' : ['A', 'AAAA'],
'pubsub.' : ['A', 'AAAA', 'CNAME'],
'muc.' : ['A', 'AAAA', 'CNAME'],
'vjud.' : ['A', 'AAAA', 'CNAME'],
'_xmpp-client._tcp.' : ['SRV'],
'_xmpp-server._tcp.' : ['SRV']
'_xmpp-server._tcp.' : ['SRV'],
'mail._domainkey' : ['TXT'],
'_dmarc' : ['TXT']
}