git.schokokeks.org
Repositories
Help
Report an Issue
webinterface.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
3e33ab3
Branches
Tags
master
ticket
webinterface.git
modules
vmail
save.php
Löschen geht jetzt auch
bernd
commited
3e33ab3
at 2007-11-20 10:54:27
save.php
Blame
History
Raw
<?php require_once('session/start.php'); require_once('vmail.php'); require_role(ROLE_SYSTEMUSER); require_once("inc/debug.php"); global $debugmode; if ($_GET['action'] == 'edit') { check_form_token('vmail_edit_mailbox'); $id = (int) $_GET['id']; $account = empty_account(); $account['id'] = NULL; if ($id) $account['id'] = $id; $account['local'] = $_POST['local']; $account['domain'] = (int) $_POST['domain']; $account['type'] = $_POST['type']; if ($_POST['type'] == 'mailbox') $account['data'] = $_POST['password']; else $account['data'] = $_POST['forward_to']; $account['spamfilter'] = $_POST['spamfilter_action']; if ($_POST['spamfilter'] != '1') $account['spamfilter'] = NULL; $account['virusfilter'] = $_POST['virusfilter_action']; if ($_POST['virusfilter'] != '1') $account['virusfilter'] = NULL; DEBUG($account); save_vmail_account($account); if (! ($debugmode || we_have_an_error())) header('Location: accounts.php'); } elseif ($_GET['action'] == 'delete') { $title = "E-mail-Adresse löschen"; $section = 'vmail_vmail'; $account = get_account_details( (int) $_GET['id'] ); $domain = NULL; $domains = get_vmail_domains(); foreach ($domains as $dom) if ($dom->id == $account['domain']) { $domain = $dom->domainname; break; } $account_string = $account['local'] . "@" . $domain; $sure = user_is_sure(); if ($sure === NULL) { are_you_sure("action=delete&id={$account['id']}", "Möchten Sie die E-Mail-Adresse »{$account_string}« wirklich löschen?"); } elseif ($sure === true) { delete_account($account['id']); if (! $debugmode) header("Location: accounts.php"); } elseif ($sure === false) { if (! $debugmode) header("Location: accounts.php"); } } else system_failure("Unimplemented action"); output(''); ?>