84e7f97b51440d22e9df723486a8a1fa57c1279b
Bernd Wurst verify-Funktion um via DNS-...

Bernd Wurst authored 6 years ago

1) <?php
2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4) 
5) Written 2008-2018 by schokokeks.org Hosting, namely
6)   Bernd Wurst <bernd@schokokeks.org>
7)   Hanno Böck <hanno@schokokeks.org>
8) 
9) To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty.
10) 
11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see 
12) http://creativecommons.org/publicdomain/zero/1.0/
13) 
14) Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code.
15) */
16) 
17) require_once('inc/debug.php');
18) require_once('inc/icons.php');
19) 
20) require_once('class/domain.php');
21) require_once('domains.php');
22) 
23) require_role(ROLE_CUSTOMER);
24) 
25) $dom = NULL;
26) if (!isset($_REQUEST['id'])) {
27)     system_failure("Keine Domain angegeben!");
28) }
29) $dom = new Domain( (int) $_REQUEST['id']);
30) $dom->ensure_customerdomain();
31) if ($dom->mailserver_lock === 0) {
32)     system_failure("Diese Domain ist momentan nicht gesperrt. Entsperrung nicht notwendig.");
33) }
34) if ($dom->provider == 'terions') {
35)     system_failure("Diese Domain ist bereits über uns registriert und sollte schon freigeschaltet sein. Wenden Sie sich im Zweifel bitte an den Support.");
36) }
Bernd Wurst Bestätige eine Domain ohne...

Bernd Wurst authored 6 years ago

37) if (has_own_ns($dom->domainname, $dom->tld)) {
38)     unset_mailserver_lock($dom);
39)     success_msg("Die Domain {$dom->fqdn} wurde erfolgreich bestätigt und kann nun in vollem Umfang verwendet werden.");
40)     redirect("domains");
41) }
Bernd Wurst verify-Funktion um via DNS-...

Bernd Wurst authored 6 years ago

42) if (!$dom->secret) {
43)     create_domain_secret($dom);
44) }
45) 
46) $TXT = get_txt_record('_schokokeks', $dom->domainname, $dom->tld);
47) if ($TXT == $dom->secret) {
48)     unset_mailserver_lock($dom);
49)     success_msg("Die Domain {$dom->fqdn} wurde erfolgreich bestätigt und kann nun in vollem Umfang verwendet werden.");
50)     redirect("domains");
51) }
52) 
53) 
54) title("Bestätigung der Domain {$dom->fqdn}");
55) $section = 'domains_domains';
56) output('<p>Bitte wenden Sie eine der unten genannten Methoden an um die Domain-Inhaberschaft zu bestätigen. Erst nach diesem Schritt können Sie diese Domain bei uns als Mail-Domain nutzen.</p>');
57) output('<p>Die Zeichenkette zur Bestätigung lautet <strong>'.$dom->secret.'</strong>.</p>');
58) output('<p>Richten Sie bitte auf dem zuständigen DNS-Server einen DNS-Record vom Typ TXT unter dem Hostname <strong>_schokokeks.'.$dom->fqdn.'</strong> ein und hinterlegen Sie dort diese Zeichenkette als Inhalt:</p>
Bernd Wurst Ermögliche das Hinzufügen e...

Bernd Wurst authored 6 years ago

59) <p><code>_schokokeks.'.$dom->fqdn.'.    IN TXT "'.$dom->secret.'"</code></p>