cf54502a10b16c985ea28db17885d377226b6145
bernd Bessere Darstellung des Dom...

bernd authored 14 years ago

1) <?php
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4) 
Bernd Wurst Copyright year update

Bernd Wurst authored 6 years ago

5) Written 2008-2018 by schokokeks.org Hosting, namely
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

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) */
bernd Bessere Darstellung des Dom...

bernd authored 14 years ago

16) 
17) require_once('inc/base.php');
18) require_once('inc/debug.php');
19) 
bernd Mailman-Domains nur auslese...

bernd authored 14 years ago

20) 
bernd Bessere Darstellung des Dom...

bernd authored 14 years ago

21) function mailman_subdomains($domain)
22) {
bernd Mailman-Domains nur auslese...

bernd authored 14 years ago

23)   if ( ! in_array('mailman', config('modules')))
24)   {
25)     return array();
26)   }
bernd Bessere Darstellung des Dom...

bernd authored 14 years ago

27)   $domain = (int) $domain;
Bernd Wurst Einige Statements auf Prepa...

Bernd Wurst authored 10 years ago

28)   $result = db_query("SELECT id, hostname FROM mail.mailman_domains WHERE domain=?", array($domain));
bernd Bessere Darstellung des Dom...

bernd authored 14 years ago

29)   $ret = array();
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

30)   while ($line = $result->fetch())
bernd Bessere Darstellung des Dom...

bernd authored 14 years ago

31)   {
32)     $ret[] = $line;
33)   }
34)   return $ret;
35) }
36) 
bernd Wirkliche nutzung der Domai...

bernd authored 14 years ago

37) function dns_in_use($domain)
38) {
39)   if ( ! in_array('dns', config('modules')))
40)     return false;
41)   $domain = (int) $domain;
Bernd Wurst Einige Statements auf Prepa...

Bernd Wurst authored 10 years ago

42)   $result = db_query("SELECT id FROM dns.custom_records WHERE domain=?", array($domain));
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

43)   return ($result->rowCount() > 0);
bernd Wirkliche nutzung der Domai...

bernd authored 14 years ago

44) }
45) 
46) 
47) function mail_in_use($domain)
48) {
49)   if ( ! in_array('email', config('modules')))
50)   {
51)     return false;
52)   }
53)   $domain = (int) $domain;
Bernd Wurst Einige Statements auf Prepa...

Bernd Wurst authored 10 years ago

54)   $result = db_query("SELECT mail FROM kundendaten.domains WHERE id=?", array($domain));
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

55)   if ($result->rowCount() < 1)
bernd Wirkliche nutzung der Domai...

bernd authored 14 years ago

56)     system_failure("Domain not found");
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

57)   $d = $result->fetch();
bernd Wirkliche nutzung der Domai...

bernd authored 14 years ago

58)   if ($d['mail'] == 'none')
59)     return false; // manually disabled
Bernd Wurst Einige Statements auf Prepa...

Bernd Wurst authored 10 years ago

60)   $result = db_query("SELECT id FROM mail.virtual_mail_domains WHERE domain=?", array($domain));
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

61)   if ($result->rowCount() < 1)
bernd Wirkliche nutzung der Domai...

bernd authored 14 years ago

62)     return true; // .courier
Bernd Wurst Einige Statements auf Prepa...

Bernd Wurst authored 10 years ago

63)   $result = db_query("SELECT acc.id FROM mail.vmail_accounts acc LEFT JOIN mail.virtual_mail_domains dom ON (acc.domain=dom.id) WHERE dom.domain=?", array($domain));
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

64)   return ($result->rowCount() > 0);
bernd Wirkliche nutzung der Domai...

bernd authored 14 years ago

65) }
66) 
67) function web_in_use($domain)
68) {
69)   if ( ! in_array('vhosts', config('modules')))
70)     return false;
71) 
72)   $domain = (int) $domain;
73) 
Bernd Wurst Einige Statements auf Prepa...

Bernd Wurst authored 10 years ago

74)   $result = db_query("SELECT id FROM kundendaten.domains WHERE id=? AND webserver=1", array($domain));
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

75)   if ($result->rowCount() < 1)
bernd Wirkliche nutzung der Domai...

bernd authored 14 years ago

76)     return false;
77) 
Bernd Wurst Einige Statements auf Prepa...

Bernd Wurst authored 10 years ago

78)   $result = db_query("SELECT id FROM vhosts.vhost WHERE domain=?", array($domain));
79)   $result2 = db_query("SELECT id FROM vhosts.alias WHERE domain=?", array($domain));
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

80)   return ($result->rowCount() > 0 || $result2->rowCount() > 0);
bernd Wirkliche nutzung der Domai...

bernd authored 14 years ago

81) }