$_GET['id'], 'account' => $account, 'mailbox' => $_POST['mailbox'], 'enabled' => $enabled); if ($_POST['password'] != '') $acc['password'] = $_POST['password']; $error = check_valid($acc); if ($error != "") { input_error($error); $title = "E-Mail-Accounts"; output(""); } else { change_mailaccount($_GET['id'], $acc); if (! $debugmode) header('Location: accounts.php'); die(); } } elseif (isset($_POST['create'])) { check_form_token('imap_accounts_create'); $account = $_POST['user'].'@'.$_POST['domain']; if (isset($_POST['enabled']) && $_POST['enabled'] == 'true') $enabled = 'Y'; else $enabled = 'N'; $acc = array('account' => $account, 'mailbox' => $_POST['mailbox'], 'enabled' => $enabled); if ($_POST['password'] != '') $acc['password'] = $_POST['password']; $error = check_valid($acc); if ($error != "") { input_error($error); output(""); } else { create_mailaccount($acc); if (! $debugmode) header('Location: accounts.php'); die(); } } } elseif (isset($_GET['action']) && $_GET['action'] == 'create') { $options = ''; $domains = get_domain_list($user['customerno'], $user['uid']); if (count($domains) > 0) $options .= ''; foreach ($domains as $dom) $options .= ''; output('
Hier können Sie ein neues POP3/IMAP-Konto anlegen.
ACHTUNG: ein POP3-/IMAP-Account ist keine E-Mail-Adresse. Wenn Sie sich nicht sicher sind, lesen Sie bitte die Anleitung in unserem Wiki. Sie können Ihre E-Mail-Konten auch über eine einfachere Möglichkeit verwalten, dann ist eine Einrichtung über diese Weboberfläche möglich. Die Umstellung erfolgt unter Domains.
'.html_form('imap_accounts_create', 'accounts.php', 'action=save', 'Einstellung: | Wert: | |
---|---|---|
Benutzername: | @ | |
Mailbox: | ||
Passwort: | ||
Account sofort aktivieren: |
Soll der folgende Account wirklich gelöscht werden?
Benutzername: | '.filter_input_general($account['account']).' |
Mailbox: | '.filter_input_general($account['mailbox']).' |
Konto aktiv: | '.$enabled.' |
Hier können Sie die Einstellungen des IMAP-Kontos bearbeiten.
'); $_GET['edit'] = (int) $_GET['edit']; $account = get_mailaccount($_GET['edit']); list($username, $domain) = explode('@', $account['account'], 2); $enabled = ($account['enabled'] ? ' checked="checked"' : ''); $form = 'Einstellung: | alter Wert: | neuer Wert: | |
---|---|---|---|
Benutzername: | @ | ||
Mailbox: | |||
Passwort: | nicht angezeigt | ||
Konto aktiv: |
Hinweis: Das Passwort wird nur geändert, wenn Sie auf dieser Seite eines eingeben. Geben Sie keines an, wird das bisherige beibehalten!
Folgende POP3/IMAP-Konten sind eingerichtet:
Kontoname: | Mailbox-Pfad: | aktiv | |
---|---|---|---|
'.internal_link('accounts.php', $account['account'], 'edit='.$account['id']).' | '.$mailbox.' | '.($account['enabled'] ? 'Ja' : 'Nein').' | löschen |