0); $is_mailbox = ($account['password'] != NULL || $id == 0); $numforwards = max(count($account['forwards']), 1); output(" "); $form = ''; if ($accountlogin) { $form.= "

Unerwünschte E-Mails (Spam, Viren) in diesem Postfach ".html_select('spamfilter_action', array("none" => 'nicht filtern', "folder" => 'in Unterordner »Spam« ablegen', "tag" => 'markieren und zustellen', "delete" => 'nicht zustellen (löschen)'), $account['spamfilter'])."

"; } else { $form .= "

E-Mail-Adresse:  @ ".domainselect($account['domain'])."

"; $password_message = ''; $password_value = ''; if ($is_mailbox and ($account['password'] != '')) { $password_message = '
Sie haben bereits ein Passwort gesetzt. Wenn Sie dieses Feld nicht ändern, wird das bisherige Passwort beibehalten.
'; $password_value = '**********'; } $form .= "

Passwort für Abruf: {$password_message}

"; $form.= "

Unerwünschte E-Mails (Spam, Viren) in diesem Postfach ".html_select('spamfilter_action', array("none" => 'nicht filtern', "folder" => 'in Unterordner »Spam« ablegen', "tag" => 'markieren und zustellen', "delete" => 'nicht zustellen (löschen)'), $account['spamfilter'])."

"; $quota = config('vmail_basequota'); if ($is_mailbox and $account['quota']) { $quota = $account['quota']; } $form .= "

Größe des Postfachs: MB
Hinweis: Die Differenz zwischen dem hier gesetzten Wert und dem Sockelbetrag von ".config('vmail_basequota')." MB wird vom Speicherplatz Ihres Benutzer-Kontos abgezogen.

"; $quota_notify = ($account['quota_threshold'] >= 0) ? ' checked="checked" ' : ''; $quota_threshold = ($account['quota_threshold'] >= 0) ? $account['quota_threshold'] : ''; $form .= "

MB Speicherplatz zur Verfügung stehen.

"; $form .= "
"; } $form .= "

"; $form .= "
"; $ar = $account['autoresponder']; if (! $ar) { $ar = empty_autoresponder_config(); } if ($ar['valid_until'] != NULL && $ar['valid_until'] < date('Y-m-d')) { // Daten sind Restbestand von einem früheren Einsatz des Autoresponders $ar['valid_from'] = NULL; $ar['valid_until'] = NULL; } $valid_from_now_checked = ($ar['valid_from'] <= date('Y-m-d H:i:s') || $ar['valid_from'] == NULL) ? ' checked="checked"' : ''; $valid_from_future_checked = ($ar['valid_from'] > date('Y-m-d H:i:s')) ? ' checked="checked"' : ''; $startdate = $ar['valid_from']; if (! $startdate || $startdate <= date('Y-m-d')) { $startdate = date('Y-m-d', time() + 1*24*60*60); } $form .= "


". " ". html_datepicker("ar_valid_from", strtotime($startdate))."

"; $valid_until_infinity_checked = ($ar['valid_until'] == NULL) ? ' checked="checked"' : ''; $valid_until_date_checked = ($ar['valid_until'] != NULL) ? ' checked="checked"' : ''; $enddate = $ar['valid_until']; if (! $enddate) { $enddate = date('Y-m-d', time() + 7*24*60*60); } $form .= "

Deaktivierung

"; $form .= "


". " ". html_datepicker("ar_valid_until", strtotime($enddate))."

"; $subject = $ar['subject']; if ($subject == NULL) $subject = ''; $ar_subject_default_checked = ($subject == NULL) ? ' checked="checked"' : ''; $ar_subject_custom_checked = ($subject) ? ' checked="checked"' : ''; $form .= "

Betreffzeile der automatischen Antwort

". "

". "
". " ". "

"; $message = $ar['message']; $form .= "

Inhalt der automatischen Antwort

". "

"; $quote = $ar['quote']; if (! $quote) $quote = 'none'; $form .= "

". html_select('ar_quote', array("none" => 'nicht in Antwort einschließen', "inline" => 'zitieren (max. 50 Zeilen)', "attach" => 'vollständig als Anhang beifügen'), $quote)."

"; $ar_from_default_checked = ($ar['fromname'] == NULL) ? ' checked="checked"' : ''; $ar_from_custom_checked = ($ar['fromname'] != NULL) ? ' checked="checked"' : ''; $fromname = $ar['fromname']; $form .= "

Absender der automatischen Antwort

". "


". " ". "

"; $form .= '
'; $form .= "

"; $form .= "
"; if ($is_forward) { for ($i = 0 ; $i < $numforwards ; $i++) { $num = $i+1; $form .= "

Weiterleiten an

Spam-Mails an diese Adresse ".html_select('spamfilter_action_'.$num, array("none" => 'nicht filtern', "tag" => 'markieren und zustellen', "delete" => 'nicht zustellen'), $account['forwards'][$i]['spamfilter'])."

\n"; } } else { $form .= "

Weiterleiten an

Spam-Mails an diese Adresse ".html_select('spamfilter_action_1', array("none" => 'nicht filtern', "tag" => 'markieren und zustellen', "delete" => 'nicht zustellen'), "none")."

\n"; } $form .= '

[ mehr Empfänger ]

'; $form .= '

    '.internal_link('vmail', 'Abbrechen').'

'; output(html_form('vmail_edit_mailbox', 'save', 'action=edit'.($id != 0 ? '&id='.$id : ''), $form)); ?>