Browse Source

feat(webapp): Terms: adds clause that requires secure delegation

Nils Wisiol 4 years ago
parent
commit
60624ca444
1 changed files with 12 additions and 1 deletions
  1. 12 1
      webapp/src/views/Terms.vue

+ 12 - 1
webapp/src/views/Terms.vue

@@ -32,7 +32,7 @@
         <v-col class="col-12 col-sm-6 d-flex" v-for="(t, idx) in terms_of_use" :key="t.title">
           <v-card>
             <v-card-title>§{{idx+1}} {{t.title}}</v-card-title>
-            <v-card-text>{{t.text}}</v-card-text>
+            <v-card-text v-html="t.text" />
           </v-card>
         </v-col>
       </v-row>
@@ -83,6 +83,17 @@ export default {
                 'deleted after a warning with 4 weeks notice. Owners can prevent deletion by updating DNS ' +
                 'information.',
       },
+      {
+        title: 'Secure Delegation Required',
+        text: 'Domains created at deSEC which do not include deSEC\'s nameservers in their set of authoritative ' +
+            'nameservers ("NS records") or which fail to establish a DNSSEC chain of trust may receive a deletion ' +
+            'warning and may be deleted four weeks thereafter if that condition still applies. <br/>' +
+            'Anyone who can prove ownership of a domain name by an upstream registry may claim control over this ' +
+            'domain at all deSEC nameservers, even if a corresponding deSEC zone has been created by another user. ' +
+            'During the transfer of control, the zone\'s DNS information and signing keys will be deleted; a backup ' +
+            'of the zone\'s record sets will be made available to the user account that previously held the domain ' +
+            'at deSEC.',
+      },
       {
         title: 'Domains with Illegal Activity',
         text: 'Domains that are used for illegal activity such as spam, scam, malware, phishing, etc. will be ' +