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:
Laurent Peuch 2017-07-20 14:39:06 +02:00 committed by GitHub
commit ca135295d7

View file

@ -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']
} }