f60ba9df344e386e1afbe3283148c1c182898750
bernd Erste Version des vmail-Modul

bernd authored 16 years ago

modules/vmail/edit.php   1) <?php
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

modules/email/edit.php   2) /*
modules/email/edit.php   3) This file belongs to the Webinterface of schokokeks.org Hosting
modules/email/edit.php   4) 
Bernd Wurst Lizenzinfos in eigenes Modu...

Bernd Wurst authored 10 years ago

modules/email/edit.php   5) Written 2008-2014 by schokokeks.org Hosting, namely
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

modules/email/edit.php   6)   Bernd Wurst <bernd@schokokeks.org>
modules/email/edit.php   7)   Hanno Böck <hanno@schokokeks.org>
modules/email/edit.php   8) 
modules/email/edit.php   9) 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.
modules/email/edit.php  10) 
modules/email/edit.php  11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see 
modules/email/edit.php  12) http://creativecommons.org/publicdomain/zero/1.0/
modules/email/edit.php  13) 
modules/email/edit.php  14) 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.
modules/email/edit.php  15) */
bernd Erste Version des vmail-Modul

bernd authored 16 years ago

modules/vmail/edit.php  16) 
modules/vmail/edit.php  17) require_once('inc/debug.php');
modules/vmail/edit.php  18) require_once('inc/security.php');
bernd JavaScript-Erweiterungen: U...

bernd authored 12 years ago

modules/email/edit.php  19) require_once('inc/icons.php');
bernd Erste Version des vmail-Modul

bernd authored 16 years ago

modules/vmail/edit.php  20) 
modules/vmail/edit.php  21) require_once('vmail.php');
modules/vmail/edit.php  22) 
Bernd Wurst E-Mail-Modul auf JQuery umg...

Bernd Wurst authored 10 years ago

modules/email/edit.php  23) require_once('inc/jquery.php');
modules/email/edit.php  24) javascript();
modules/email/edit.php  25) 
bernd Alles in das email-modul ve...

bernd authored 16 years ago

modules/email/edit.php  26) $section = 'email_vmail';
bernd VMail-User können ihre Eins...

bernd authored 12 years ago

modules/email/edit.php  27) require_role(array(ROLE_SYSTEMUSER, ROLE_VMAIL_ACCOUNT));
bernd Erste Version des vmail-Modul

bernd authored 16 years ago

modules/vmail/edit.php  28) 
bernd huch, was macht das denn da...

bernd authored 16 years ago

modules/vmail/edit.php  29) $account = empty_account();
bernd neue Bilder, mehr SSL-Zerti...

bernd authored 14 years ago

modules/email/edit.php  30) $id = (isset($_GET['id']) ? (int) $_GET['id'] : 0);
bernd Erste Version des vmail-Modul

bernd authored 16 years ago

modules/vmail/edit.php  31) 
modules/vmail/edit.php  32) if ($id != 0)
modules/vmail/edit.php  33)   $account = get_account_details($id);
modules/vmail/edit.php  34) 
bernd VMail-User können ihre Eins...

bernd authored 12 years ago

modules/email/edit.php  35) $accountlogin = false;
modules/email/edit.php  36) if ($_SESSION['role'] == ROLE_VMAIL_ACCOUNT) {
bernd Index-Blöcke werden jetzt v...

bernd authored 12 years ago

modules/email/edit.php  37)   $section = 'email_edit';
bernd VMail-User können ihre Eins...

bernd authored 12 years ago

modules/email/edit.php  38)   $id = get_vmail_id_by_emailaddr($_SESSION['mailaccount']);
modules/email/edit.php  39)   $account = get_account_details($id, false);
modules/email/edit.php  40)   $accountlogin = true;
modules/email/edit.php  41)   $accountname = filter_input_general($_SESSION['mailaccount']);
modules/email/edit.php  42) }
modules/email/edit.php  43) 
modules/email/edit.php  44) 
bernd Erste Version des vmail-Modul

bernd authored 16 years ago

modules/vmail/edit.php  45) DEBUG($account);
modules/vmail/edit.php  46) if ($id == 0) {
bernd Benutze überall title() sta...

bernd authored 13 years ago

modules/email/edit.php  47)   title("E-Mail-Adresse anlegen");
bernd Erste Version des vmail-Modul

bernd authored 16 years ago

modules/vmail/edit.php  48) }
modules/vmail/edit.php  49) else {
bernd VMail-User können ihre Eins...

bernd authored 12 years ago

modules/email/edit.php  50)   if ($accountlogin) {
modules/email/edit.php  51)     title("Einstellungen für {$accountname}");
modules/email/edit.php  52)   } else {
modules/email/edit.php  53)     title("E-Mail-Adresse bearbeiten");
modules/email/edit.php  54)   }
bernd Erste Version des vmail-Modul

bernd authored 16 years ago

modules/vmail/edit.php  55) }
modules/vmail/edit.php  56) 
modules/vmail/edit.php  57) 
Bernd Wurst Fehler behoben, durch den d...

Bernd Wurst authored 10 years ago

modules/email/edit.php  58) $is_autoresponder = is_array($account['autoresponder']) && $account['autoresponder']['valid_from'] != NULL && ($account['autoresponder']['valid_until'] > date('Y-m-d') || $account['autoresponder']['valid_until'] == NULL);
bernd Anpassung auf neues Interface

bernd authored 16 years ago

modules/vmail/edit.php  59) $is_forward = (count($account['forwards']) > 0);
modules/vmail/edit.php  60) $is_mailbox = ($account['password'] != NULL  ||  $id == 0);
modules/vmail/edit.php  61) $numforwards = max(count($account['forwards']), 1);
bernd Erste Version des vmail-Modul

bernd authored 16 years ago

modules/vmail/edit.php  62) 
bernd VMail-User können ihre Eins...

bernd authored 12 years ago

modules/email/edit.php  63) $form = '';
bernd Erste Version des vmail-Modul

bernd authored 16 years ago

modules/vmail/edit.php  64) 
bernd VMail-User können ihre Eins...

bernd authored 12 years ago

modules/email/edit.php  65) if ($accountlogin) {
modules/email/edit.php  66)   $form.= "<p class=\"spamfilter_options\">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'])."</p>";
modules/email/edit.php  67) } else {
Bernd Wurst Alle VMail-Domain in der Üb...

Bernd Wurst authored 11 years ago

modules/email/edit.php  68)   if ($id != 0) {
Bernd Wurst Erlaube nicht mehr das Ände...

Bernd Wurst authored 11 years ago

modules/email/edit.php  69)     $domainlist = get_vmail_domains();
modules/email/edit.php  70)     $domain = NULL;
modules/email/edit.php  71)     foreach ($domainlist as $dom) {
Bernd Wurst Alle VMail-Domain in der Üb...

Bernd Wurst authored 11 years ago

modules/email/edit.php  72)       if ($dom['id'] == $account['domain']) {
modules/email/edit.php  73)         $domain = $dom['domainname'];
Bernd Wurst Erlaube nicht mehr das Ände...

Bernd Wurst authored 11 years ago

modules/email/edit.php  74)       }
modules/email/edit.php  75)     }
modules/email/edit.php  76)     $form .= "
modules/email/edit.php  77)     <p><strong style=\"font-size: 1.5em;\">{$account['local']}@{$domain}</strong></p>";
modules/email/edit.php  78)   } else {
Bernd Wurst Alle VMail-Domain in der Üb...

Bernd Wurst authored 11 years ago

modules/email/edit.php  79)     $domain = NULL;
modules/email/edit.php  80)     if (isset($_GET['domain'])) {
modules/email/edit.php  81)       $domain = (int) $_GET['domain'];
modules/email/edit.php  82)     }
Bernd Wurst Erlaube nicht mehr das Ände...

Bernd Wurst authored 11 years ago

modules/email/edit.php  83)     $form .= "
Bernd Wurst Alle VMail-Domain in der Üb...

Bernd Wurst authored 11 years ago

modules/email/edit.php  84)     <p><strong>E-Mail-Adresse:</strong>&#160;<input type=\"text\" name=\"local\" id=\"local\" size=\"10\" value=\"{$account['local']}\" /><strong style=\"font-size: 1.5em;\">&#160;@&#160;</strong>".domainselect($domain)."</p>";
Bernd Wurst Erlaube nicht mehr das Ände...

Bernd Wurst authored 11 years ago

modules/email/edit.php  85)   }
bernd VMail-User können ihre Eins...

bernd authored 12 years ago

modules/email/edit.php  86)   $password_message = '';
modules/email/edit.php  87)   $password_value = '';
modules/email/edit.php  88)   if ($is_mailbox and ($account['password'] != ''))
modules/email/edit.php  89)   {
modules/email/edit.php  90)     $password_message = '<span style="font-size: 80%"><br /><em>Sie haben bereits ein Passwort gesetzt. Wenn Sie dieses Feld nicht ändern, wird das bisherige Passwort beibehalten.</em></span>';
modules/email/edit.php  91)     $password_value = '**********';
modules/email/edit.php  92)   } 
modules/email/edit.php  93)   
modules/email/edit.php  94)   $form .= "
Bernd Wurst E-Mail-Modul auf JQuery umg...

Bernd Wurst authored 10 years ago

modules/email/edit.php  95)     <p><input class=\"option_group\" type=\"checkbox\" id=\"mailbox\" name=\"mailbox\" value=\"yes\" ".($is_mailbox ? 'checked="checked" ' : '')." /><label for=\"mailbox\">&#160;<strong>In Mailbox speichern</strong></label></p>
modules/email/edit.php  96)     <div style=\"margin-left: 2em;\" id=\"mailbox_config\" class=\"option_group\">
modules/email/edit.php  97)     <p>Passwort für Abruf:&#160;<input style=\"color: #aaa;\" type=\"password\" id=\"password\" name=\"password\" value=\"{$password_value}\" />{$password_message}</p>";
bernd Neues VMail-Interface (funk...

bernd authored 16 years ago

modules/vmail/edit.php  98) 
bernd VMail-User können ihre Eins...

bernd authored 12 years ago

modules/email/edit.php  99)   $form.= "<p class=\"spamfilter_options\">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'])."</p>";
bernd Mailaccount-Quota auch bei...

bernd authored 12 years ago

modules/email/edit.php 100) 
bernd VMail-User können ihre Eins...

bernd authored 12 years ago

modules/email/edit.php 101)   $quota = config('vmail_basequota');
modules/email/edit.php 102)   if ($is_mailbox and $account['quota']) {
modules/email/edit.php 103)     $quota = $account['quota'];
modules/email/edit.php 104)   }
modules/email/edit.php 105)   $form .= "<p class=\"quota_options\">Größe des Postfachs: <input type=\"text\" id=\"quota\" name=\"quota\" value=\"{$quota}\" /> MB<br /><span style=\"font-size: 80%\"><em>Hinweis: Die Differenz zwischen dem hier gesetzten Wert und dem Sockelbetrag von ".config('vmail_basequota')." MB wird vom Speicherplatz Ihres Benutzer-Kontos abgezogen.</em></span></p>";
bernd Konfiguration des Autorespo...

bernd authored 12 years ago

modules/email/edit.php 106) 
bernd VMail-User können ihre Eins...

bernd authored 12 years ago

modules/email/edit.php 107)   $quota_notify = ($account['quota_threshold'] >= 0) ? ' checked="checked" ' : '';
modules/email/edit.php 108)   $quota_threshold = ($account['quota_threshold'] >= 0) ? $account['quota_threshold'] : '';
modules/email/edit.php 109)   $form .= "<p class=\"quota_options\"><input type=\"checkbox\" id=\"quota_notify\" name=\"quota_notify\" value=\"1\" {$quota_notify} /><label for=\"quota_notify\">Benachrichtigung wenn weniger als</label> <input type=\"text\" name=\"quota_threshold\" id=\"quota_threshold\" value=\"{$quota_threshold}\" /> MB Speicherplatz zur Verfügung stehen.</p>";
bernd Konfiguration des Autorespo...

bernd authored 12 years ago

modules/email/edit.php 110) 
bernd VMail-User können ihre Eins...

bernd authored 12 years ago

modules/email/edit.php 111)   $form .= "</div>";
modules/email/edit.php 112) }
bernd Konfiguration des Autorespo...

bernd authored 12 years ago

modules/email/edit.php 113) 
bernd Mailaccount-Quota auch bei...

bernd authored 12 years ago

modules/email/edit.php 114) 
modules/email/edit.php 115) 
Bernd Wurst E-Mail-Modul auf JQuery umg...

Bernd Wurst authored 10 years ago

modules/email/edit.php 116) $form .= "<p><input class=\"option_group\" type=\"checkbox\" id=\"autoresponder\" name=\"autoresponder\" value=\"yes\" ".($is_autoresponder ? 'checked="checked" ' : '')." /><label for=\"autoresponder\">&#160;<strong>Automatische Antwort versenden</strong></label></p>";
bernd Neues VMail-Interface (funk...

bernd authored 16 years ago

modules/vmail/edit.php 117) 
Bernd Wurst E-Mail-Modul auf JQuery umg...

Bernd Wurst authored 10 years ago

modules/email/edit.php 118) $form .= "<div style=\"margin-left: 2em;\" id=\"autoresponder_config\" class=\"option_group\">";
bernd Konfiguration des Autorespo...

bernd authored 12 years ago

modules/email/edit.php 119) 
modules/email/edit.php 120) $ar = $account['autoresponder'];
modules/email/edit.php 121) if (! $ar) {
modules/email/edit.php 122)   $ar = empty_autoresponder_config();
modules/email/edit.php 123) }
modules/email/edit.php 124) 
modules/email/edit.php 125) if ($ar['valid_until'] != NULL && $ar['valid_until'] < date('Y-m-d')) {
modules/email/edit.php 126)   // Daten sind Restbestand von einem früheren Einsatz des Autoresponders
modules/email/edit.php 127)   $ar['valid_from'] = NULL;
modules/email/edit.php 128)   $ar['valid_until'] = NULL;
modules/email/edit.php 129) }
modules/email/edit.php 130) $valid_from_now_checked = ($ar['valid_from'] <= date('Y-m-d H:i:s') || $ar['valid_from'] == NULL) ? ' checked="checked"' : '';
modules/email/edit.php 131) $valid_from_future_checked = ($ar['valid_from'] > date('Y-m-d H:i:s')) ? ' checked="checked"' : '';
modules/email/edit.php 132) $startdate = $ar['valid_from'];
bernd Datums-Check und Daten in u...

bernd authored 12 years ago

modules/email/edit.php 133) if (! $startdate || $startdate <= date('Y-m-d')) {
bernd Konfiguration des Autorespo...

bernd authored 12 years ago

modules/email/edit.php 134)   $startdate = date('Y-m-d', time() + 1*24*60*60);
modules/email/edit.php 135) }
modules/email/edit.php 136) $form .= "<p><input type=\"radio\" name=\"ar_valid_from\" value=\"now\" id=\"ar_valid_from_now\"{$valid_from_now_checked} /> <label for=\"ar_valid_from_now\">Ab sofort</label><br />".
Bernd Wurst Umgestellt auf JQueryUI-Dat...

Bernd Wurst authored 10 years ago

modules/email/edit.php 137)   "<input type=\"radio\" name=\"ar_valid_from\" value=\"date\" id=\"ar_valid_from_date\"{$valid_from_future_checked} /> <label for=\"ar_valid_from_date\">Erst ab dem </label>".
modules/email/edit.php 138)   "<input type=\"text\" value=\"$startdate\" id=\"ar_startdate\" name=\"ar_startdate\" /></p>";
bernd Konfiguration des Autorespo...

bernd authored 12 years ago

modules/email/edit.php 139) 
modules/email/edit.php 140) $valid_until_infinity_checked = ($ar['valid_until'] == NULL) ? ' checked="checked"' : '';
modules/email/edit.php 141) $valid_until_date_checked = ($ar['valid_until'] != NULL) ? ' checked="checked"' : '';
modules/email/edit.php 142) $enddate = $ar['valid_until'];
modules/email/edit.php 143) if (! $enddate) {
modules/email/edit.php 144)   $enddate = date('Y-m-d', time() + 7*24*60*60);
modules/email/edit.php 145) }
modules/email/edit.php 146) $form .= "<h4>Deaktivierung</h4>";
Bernd Wurst Autoresponder nur noch befr...

Bernd Wurst authored 9 years ago

modules/email/edit.php 147) $form .= "<p><label for=\"ar_valid_until_date\">Keine Antworten mehr versenden ab dem </label>".
Bernd Wurst SMTP-seitige Autoresponder...

Bernd Wurst authored 9 years ago

modules/email/edit.php 148)   "<input type=\"text\" value=\"$enddate\" id=\"ar_enddate\" name=\"ar_enddate\" /><br/>";
modules/email/edit.php 149) if (!$accountlogin && ($id != 0)) {
modules/email/edit.php 150)   $form .= "<small>(Automatische Antworten sind nur befristet erlaubt. Wenn Sie diese Adresse dauerhaft stillegen möchten, können Sie dies am Ende dieser Seite tun.)</small></p>";
modules/email/edit.php 151) }
Bernd Wurst Autoresponder nur noch befr...

Bernd Wurst authored 9 years ago

modules/email/edit.php 152) /*
bernd Konfiguration des Autorespo...

bernd authored 12 years ago

modules/email/edit.php 153) $form .= "<p><input type=\"radio\" name=\"ar_valid_until\" value=\"infinity\" id=\"ar_valid_until_infinity\"{$valid_until_infinity_checked} /> <label for=\"ar_valid_until_infinity\">Unbefristet</label><br />".
modules/email/edit.php 154)   "<input type=\"radio\" name=\"ar_valid_until\" value=\"date\" id=\"ar_valid_until_date\"{$valid_until_date_checked} /> <label for=\"ar_valid_until_date\">Keine Antworten mehr versenden ab dem </label>".
Bernd Wurst Autoresponder nur noch befr...

Bernd Wurst authored 9 years ago

modules/email/edit.php 155)   "<input type=\"text\" value=\"$enddate\" id=\"ar_enddate\" name=\"ar_enddate\" /><br/><small>(Automatische Antworten sind nur befristet erlaubt. Benötigen Sie langfristig funktionierende automatische Antworten, sprechen Sie unsere Administratoren bitte an, dann suchen wir eine Lösung.)</small></p>";
modules/email/edit.php 156) */
bernd Konfiguration des Autorespo...

bernd authored 12 years ago

modules/email/edit.php 157) 
schokokeks.org web services Daten für Autoresponder bei...

schokokeks.org web services authored 10 years ago

modules/email/edit.php 158) $subject = filter_input_general($ar['subject']);
bernd Konfiguration des Autorespo...

bernd authored 12 years ago

modules/email/edit.php 159) if ($subject == NULL)
modules/email/edit.php 160)   $subject = '';
modules/email/edit.php 161) $ar_subject_default_checked = ($subject == NULL) ? ' checked="checked"' : '';
modules/email/edit.php 162) $ar_subject_custom_checked = ($subject) ? ' checked="checked"' : '';
modules/email/edit.php 163) $form .= "<h4>Betreffzeile der automatischen Antwort</h4>".
modules/email/edit.php 164)   "<p><input type=\"radio\" name=\"ar_subject\" value=\"default\" id=\"ar_subject_default\"{$ar_subject_default_checked} /> ".
modules/email/edit.php 165)   "<label for=\"ar_subject_default\">Automatisch (Re: <em>&lt;Betreff der Originalnachricht&gt;</em>)</label><br />".
modules/email/edit.php 166)   "<input type=\"radio\" name=\"ar_subject\" value=\"custom\" id=\"ar_subject_custom\"{$ar_subject_custom_checked} /> ".
modules/email/edit.php 167)   "<label for=\"ar_subject_custom\">Anderer Betreff:</label> <input type=\"text\" name=\"ar_subject_value\" id=\"ar_subject_value\" value=\"{$subject}\"/></p>";
modules/email/edit.php 168) 
schokokeks.org web services Daten für Autoresponder bei...

schokokeks.org web services authored 10 years ago

modules/email/edit.php 169) $message = filter_input_general($ar['message']);
bernd Konfiguration des Autorespo...

bernd authored 12 years ago

modules/email/edit.php 170) $form .= "<h4>Inhalt der automatischen Antwort</h4>".
modules/email/edit.php 171)   "<p><textarea cols=\"80\" rows=\"10\" name=\"ar_message\" id=\"ar_message\">".$ar['message']."</textarea></p>";
modules/email/edit.php 172) $quote = $ar['quote'];
modules/email/edit.php 173) if (! $quote) 
modules/email/edit.php 174)   $quote = 'none';
modules/email/edit.php 175) $form .= "<p><label for=\"ar_quote\">Originalnachricht des Absenders </label>".
modules/email/edit.php 176)   html_select('ar_quote', array("none" => 'nicht in Antwort einschließen', 
Bernd Wurst Autoresponder nur noch befr...

Bernd Wurst authored 9 years ago

modules/email/edit.php 177)                                 "teaser" => 'anreißen (erste 10 Zeilen)', 
modules/email/edit.php 178)                                 "inline" => 'zitieren (max. 50 Zeilen)'), $quote)."</p>";
modules/email/edit.php 179)                                 //"attach" => 'vollständig als Anhang beifügen'), $quote)."</p>";
bernd Konfiguration des Autorespo...

bernd authored 12 years ago

modules/email/edit.php 180) 
modules/email/edit.php 181) 
modules/email/edit.php 182) $ar_from_default_checked = ($ar['fromname'] == NULL) ? ' checked="checked"' : '';
modules/email/edit.php 183) $ar_from_custom_checked = ($ar['fromname'] != NULL) ? ' checked="checked"' : '';
schokokeks.org web services Daten für Autoresponder bei...

schokokeks.org web services authored 10 years ago

modules/email/edit.php 184) $fromname = filter_input_general($ar['fromname']);
bernd Konfiguration des Autorespo...

bernd authored 12 years ago

modules/email/edit.php 185) $form .= "<h4>Absender der automatischen Antwort</h4>".
modules/email/edit.php 186)   "<p><input type=\"radio\" name=\"ar_from\" value=\"default\" id=\"ar_from_default\"{$ar_from_default_checked} /> <label for=\"ar_from_default\">Nur E-Mail-Adresse</label><br />".
modules/email/edit.php 187)   "<input type=\"radio\" name=\"ar_from\" value=\"custom\" id=\"ar_from_custom\"{$ar_from_custom_checked} /> <label for=\"ar_from_custom\">Mit Name: </label> ".
modules/email/edit.php 188)   "<input type=\"text\" name=\"ar_fromname\" id=\"ar_fromname\" value=\"{$fromname}\"/></p>";
bernd Neues Design für VMail-Edit...

bernd authored 16 years ago

modules/vmail/edit.php 189) 
bernd Konfiguration des Autorespo...

bernd authored 12 years ago

modules/email/edit.php 190) 
modules/email/edit.php 191) 
modules/email/edit.php 192) 
modules/email/edit.php 193) $form .= '</div>';
modules/email/edit.php 194) 
modules/email/edit.php 195) 
modules/email/edit.php 196) 
modules/email/edit.php 197) 
modules/email/edit.php 198) 
Bernd Wurst E-Mail-Modul auf JQuery umg...

Bernd Wurst authored 10 years ago

modules/email/edit.php 199) $form .= "<p><input class=\"option_group\" type=\"checkbox\" id=\"forward\" name=\"forward\" value=\"yes\" ".($is_forward ? 'checked="checked" ' : '')." /><label for=\"forward\">&#160;<strong>Weiterleitung an andere E-Mail-Adressen</strong></label></p>";
bernd Konfiguration des Autorespo...

bernd authored 12 years ago

modules/email/edit.php 200) 
modules/email/edit.php 201) 
Bernd Wurst E-Mail-Modul auf JQuery umg...

Bernd Wurst authored 10 years ago

modules/email/edit.php 202) $form .= "<div style=\"margin-left: 2em;\" id=\"forward_config\" class=\"option_group\">";
bernd Neues VMail-Interface (funk...

bernd authored 16 years ago

modules/vmail/edit.php 203) 
bernd JavaScript-Erweiterungen: U...

bernd authored 12 years ago

modules/email/edit.php 204) $form .= '<div id="forward_entries">
modules/email/edit.php 205) ';
modules/email/edit.php 206) if (! isset($account['forwards'][0])) {
Bernd Wurst Default für Weiterleitungen...

Bernd Wurst authored 10 years ago

modules/email/edit.php 207)   $account['forwards'][0] = array('destination' => '', 'spamfilter' => 'delete');
bernd Anpassung auf neues Interface

bernd authored 16 years ago

modules/vmail/edit.php 208) }
Bernd Wurst E-Mail-Modul auf JQuery umg...

Bernd Wurst authored 10 years ago

modules/email/edit.php 209) while (count($account['forwards']) < 10) {
modules/email/edit.php 210)   // Dummy-Einträge für Leute ohne JavaScript
modules/email/edit.php 211)   $account['forwards'][] = array('destination' => '', 'spamfilter' => 'delete');
modules/email/edit.php 212) }
modules/email/edit.php 213) for ($i = 0 ; $i < max($numforwards,10) ; $i++)
bernd Anpassung auf neues Interface

bernd authored 16 years ago

modules/vmail/edit.php 214) {
bernd JavaScript-Erweiterungen: U...

bernd authored 12 years ago

modules/email/edit.php 215)   $num = $i+1;
modules/email/edit.php 216)   $form .= "<div class=\"vmail-forward\" id=\"vmail_forward_{$num}\">
Bernd Wurst E-Mail-Modul auf JQuery umg...

Bernd Wurst authored 10 years ago

modules/email/edit.php 217)   <div style=\"float: right;\" class=\"delete_forward\">".icon_delete("Diese Weiterleitung entfernen")."</div>
bernd JavaScript-Erweiterungen: U...

bernd authored 12 years ago

modules/email/edit.php 218)   <p>Weiterleiten an <input type=\"text\" id=\"forward_to_{$num}\" name=\"forward_to_{$num}\" value=\"{$account['forwards'][$i]['destination']}\" /></p>
modules/email/edit.php 219)   <p>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'])."</p>
Bernd Wurst E-Mail-Modul auf JQuery umg...

Bernd Wurst authored 10 years ago

modules/email/edit.php 220)   <p class=\"warning\" style=\"display: none;\"></p>
Bernd Wurst Default für Weiterleitungen...

Bernd Wurst authored 10 years ago

modules/email/edit.php 221)   <p>Bitte beachten Sie unsere Hinweise zu <a href=\"http://wiki.schokokeks.org/E-Mail/Weiterleitungen\">Weiterleitungen und Spamfiltern</a>.</p>
bernd JavaScript-Erweiterungen: U...

bernd authored 12 years ago

modules/email/edit.php 222)   </div>\n";
bernd Anpassung auf neues Interface

bernd authored 16 years ago

modules/vmail/edit.php 223) }
bernd JavaScript-Erweiterungen: U...

bernd authored 12 years ago

modules/email/edit.php 224) $form .= '</div>';
bernd Anpassung auf neues Interface

bernd authored 16 years ago

modules/vmail/edit.php 225) 
Bernd Wurst E-Mail-Modul auf JQuery umg...

Bernd Wurst authored 10 years ago

modules/email/edit.php 226) $form .= '<p><a href="#" id="more_forwards">'.icon_add().' Weiteren Empfänger hinzufügen</a></p>
bernd Konfiguration des Autorespo...

bernd authored 12 years ago

modules/email/edit.php 227) </div>';
bernd Neues Design für VMail-Edit...

bernd authored 16 years ago

modules/vmail/edit.php 228) 
Bernd Wurst Zeige User-Infos beim Login...

Bernd Wurst authored 11 years ago

modules/email/edit.php 229) $target = 'vmail';
modules/email/edit.php 230) if ($accountlogin) {
modules/email/edit.php 231)   $target = '../index/index';
modules/email/edit.php 232) }
Bernd Wurst E-Mail-Modul auf JQuery umg...

Bernd Wurst authored 10 years ago

modules/email/edit.php 233) $form .= '<p><input id="submit" type="submit" value="Speichern" />&#160;&#160;&#160;&#160;'.internal_link($target, 'Abbrechen').'</p>';
bernd Erste Version des vmail-Modul

bernd authored 16 years ago

modules/vmail/edit.php 234) 
bernd eliminate .php extensions f...

bernd authored 15 years ago

modules/email/edit.php 235) output(html_form('vmail_edit_mailbox', 'save', 'action=edit'.($id != 0 ? '&id='.$id : ''), $form));
bernd Erste Version des vmail-Modul

bernd authored 16 years ago

modules/vmail/edit.php 236) 
Bernd Wurst SMTP-seitige Autoresponder...

Bernd Wurst authored 9 years ago

modules/email/edit.php 237) if (! $accountlogin && ($id != 0)) {
modules/email/edit.php 238)   output("<p>".internal_link('suspend', 'Diese Adresse stillegen (mit individuellem Fehlertext)', "account=".$id)."</p>");
modules/email/edit.php 239) }
modules/email/edit.php 240)