git.schokokeks.org
Repositories
Help
Report an Issue
webinterface.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
cf54502
Branches
Tags
master
ticket
webinterface.git
modules
jabber
new_domain.php
Copyright year update
Bernd Wurst
commited
cf54502
at 2018-01-13 06:07:05
new_domain.php
Blame
History
Raw
<?php /* This file belongs to the Webinterface of schokokeks.org Hosting Written 2008-2018 by schokokeks.org Hosting, namely Bernd Wurst <bernd@schokokeks.org> Hanno Böck <hanno@schokokeks.org> 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. You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see http://creativecommons.org/publicdomain/zero/1.0/ 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. */ require_once('session/start.php'); require_once('class/domain.php'); require_once('jabberaccounts.php'); require_role(ROLE_CUSTOMER); $section = 'jabber_accounts'; $title = "Domain für Jabber freischalten"; title("Eigene Domain für Jabber-Nutzung freischalten"); $domains = get_domain_list((int) $_SESSION['customerinfo']['customerno']); DEBUG($domains); if (! count($domains)) { system_failure("Sie haben gar keine eigenen Domains."); } $pending_domains = array(); $available_domains = array(); foreach ($domains AS $d) { if ($d->jabber == 0) $available_domains[$d->id] = $d->domainname.'.'.$d->tld; if ($d->jabber == 2) $pending_domains[] = $d->fqdn; } $pending = ''; if (count($pending_domains) > 0) { $pending = '<h3>Wartend auf Freischaltung</h3> <p>Folgende Domains sind bereits eingetragen und werden in der kommenden Nacht im Jabber-Server registriert:</p> <ul>'; foreach($pending_domains AS $d) $pending .= '<li>'.$d.'</li>'; $pending .= '</ul>'; } output('<p>Sie können hier eine Ihrer eigenen Domains für Jabber-Nutzung freischalten. Da dafür ein Neustart des Jabber-Servers nötig ist, können Sie die Domain erst ab dem darauffolgenden Tag für eigene Jabber-Accounts nutzen.</p> <p><strong>Bitte beachten Sie:</strong> Damit beim Verbinden ihrer Jabber-Accounts kein Fehler auftritt, nutzen wir für die TLS-Verschlüsselung ein Zertifikat der Webserver-Konfiguration mit dem passenden Domainnamen, sofern dort ein gültiges Zertifikat vorhanden ist. Ohne passendes Zertifikat wird beim Verbinden eines Accounts mit einer eigenen Domain ein Zertifikat-Fehler auftreten.</p> '.html_form('jabber_new_domain', 'save', 'action=newdomain', ' <p>Domain wählen: '.html_select('domain', $available_domains).'</p> <input type="submit" name="submit" value="Freischalten" /> ').$pending); ?>