Hanno Böck This code is published under a 0BSD license. 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('jabberaccounts.php'); require_once('inc/security.php'); require_role(ROLE_CUSTOMER); require_once("inc/debug.php"); global $debugmode; if ($_GET['action'] == 'new') { check_form_token('jabber_new_account'); if (filter_input_username($_POST['local']) == '' || $_POST['domain'] == '' || $_POST['password'] == '') { input_error('Sie müssen alle Felder ausfüllen!'); } else { create_jabber_account($_POST['local'], $_POST['domain'], stripslashes($_POST['password'])); if (!$debugmode) { header('Location: accounts'); } } } elseif ($_GET['action'] == 'chpass') { check_form_token('jabber_chpass'); get_jabberaccount_details($_POST['accountid']); if ($_POST['newpass'] == '' || $_POST['newpass2'] == '' || $_POST['newpass'] != $_POST['newpass2'] || $_POST['accountid'] == '') { input_error('Bitte zweimal ein neues Passwort eingeben!'); } else { change_jabber_password($_POST['accountid'], stripslashes($_POST['newpass'])); if (!$debugmode) { header('Location: accounts'); } } } elseif ($_GET['action'] == 'delete') { $title = "Jabber-Account löschen"; $section = 'jabber_accounts'; $account = get_jabberaccount_details($_GET['account']); $account_string = $account['local'] . '@' . $account['domain']; $sure = user_is_sure(); if ($sure === null) { are_you_sure("action=delete&account={$_GET['account']}", "Möchten Sie den Account »" . filter_output_html($account_string) . "« wirklich löschen?"); } elseif ($sure === true) { delete_jabber_account($account['id']); if (!$debugmode) { header("Location: accounts"); } } elseif ($sure === false) { if (!$debugmode) { header("Location: accounts"); } } } elseif ($_GET['action'] == 'newdomain') { check_form_token('jabber_new_domain'); new_jabber_domain($_REQUEST['domain']); header("Location: accounts"); } elseif ($_GET['action'] == 'deldomain') { $title = "Jabber-Domain löschen"; $section = 'jabber_accounts'; $domain = new Domain((int) $_GET['domain']); $sure = user_is_sure(); if ($sure === null) { are_you_sure("action=deldomain&domain={$_GET['domain']}", "Möchten Sie die Domain »" . filter_output_html($domain->fqdn) . "« aus der Jabber-Konfiguration entfernen?"); } elseif ($sure === true) { delete_jabber_domain($domain->id); if (!$debugmode) { header("Location: accounts"); } } elseif ($sure === false) { if (!$debugmode) { header("Location: accounts"); } } } else { system_failure("Unimplemented action"); } output('');