71e87c960a844568bbe0c2a7dd012d8b9247b037
bernd Erste Version des vmail-Modul

bernd authored 18 years ago

modules/vmail/edit.php   1) <?php
Hanno Böck Add newlines before comment...

Hanno Böck authored 1 year ago

modules/email/edit.php   2) 
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 14 years ago

modules/email/edit.php   3) /*
modules/email/edit.php   4) This file belongs to the Webinterface of schokokeks.org Hosting
modules/email/edit.php   5) 
Hanno Böck Change license from CC0 to...

Hanno Böck authored 3 years ago

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

Bernd Wurst authored 14 years ago

modules/email/edit.php   7)   Bernd Wurst <bernd@schokokeks.org>
modules/email/edit.php   8)   Hanno Böck <hanno@schokokeks.org>
modules/email/edit.php   9) 
Hanno Böck Change license from CC0 to...

Hanno Böck authored 3 years ago

modules/email/edit.php  10) This code is published under a 0BSD license.
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 14 years ago

modules/email/edit.php  11) 
modules/email/edit.php  12) 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  13) */
bernd Erste Version des vmail-Modul

bernd authored 18 years ago

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

bernd authored 14 years ago

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

bernd authored 18 years ago

modules/vmail/edit.php  18) 
modules/vmail/edit.php  19) require_once('vmail.php');
modules/vmail/edit.php  20) 
Bernd Wurst removed jquery and jqueryUI...

Bernd Wurst authored 3 years ago

modules/email/edit.php  21) require_once('inc/javascript.php');
Bernd Wurst E-Mail-Modul auf JQuery umg...

Bernd Wurst authored 12 years ago

modules/email/edit.php  22) javascript();
modules/email/edit.php  23) 
bernd Alles in das email-modul ve...

bernd authored 18 years ago

modules/email/edit.php  24) $section = 'email_vmail';
Hanno Böck Codingstyle PSR12 + array s...

Hanno Böck authored 4 years ago

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

bernd authored 18 years ago

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

bernd authored 18 years ago

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

bernd authored 16 years ago

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

bernd authored 18 years ago

modules/vmail/edit.php  29) 
Hanno Fix coding style with php-c...

Hanno authored 7 years ago

modules/email/edit.php  30) if ($id != 0) {
modules/email/edit.php  31)     $account = get_account_details($id);
modules/email/edit.php  32) }
bernd Erste Version des vmail-Modul

bernd authored 18 years ago

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

bernd authored 14 years ago

modules/email/edit.php  34) $accountlogin = false;
modules/email/edit.php  35) if ($_SESSION['role'] == ROLE_VMAIL_ACCOUNT) {
Hanno Fix coding style with php-c...

Hanno authored 7 years ago

modules/email/edit.php  36)     $section = 'email_edit';
modules/email/edit.php  37)     $id = get_vmail_id_by_emailaddr($_SESSION['mailaccount']);
modules/email/edit.php  38)     $account = get_account_details($id, false);
modules/email/edit.php  39)     $accountlogin = true;
Bernd Wurst Umstellung von filter_input...

Bernd Wurst authored 6 years ago

modules/email/edit.php  40)     $accountname = filter_output_html($_SESSION['mailaccount']);
bernd VMail-User können ihre Eins...

bernd authored 14 years ago

modules/email/edit.php  41) }
modules/email/edit.php  42) 
modules/email/edit.php  43) 
bernd Erste Version des vmail-Modul

bernd authored 18 years ago

modules/vmail/edit.php  44) DEBUG($account);
modules/vmail/edit.php  45) if ($id == 0) {
Hanno Fix coding style with php-c...

Hanno authored 7 years ago

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

bernd authored 18 years ago

modules/vmail/edit.php  53) }
modules/vmail/edit.php  54) 
Bernd Wurst wip

Bernd Wurst authored 4 years ago

modules/email/edit.php  55) $has_extensions = $account['enableextensions'];
Hanno Fix coding style with php-c...

Hanno authored 7 years ago

modules/email/edit.php  56) $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 18 years ago

modules/vmail/edit.php  57) $is_forward = (count($account['forwards']) > 0);
Hanno Böck Remove some unneeded whites...

Hanno Böck authored 2 years ago

modules/email/edit.php  58) $is_mailbox = ($account['password'] != null || $id == 0);
bernd Anpassung auf neues Interface

bernd authored 18 years ago

modules/vmail/edit.php  59) $numforwards = max(count($account['forwards']), 1);
bernd Erste Version des vmail-Modul

bernd authored 18 years ago

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

bernd authored 14 years ago

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

bernd authored 18 years ago

modules/vmail/edit.php  62) 
Hanno Böck Fix not operator (!) spaces

Hanno Böck authored 2 years ago

modules/email/edit.php  63) if (!$accountlogin) {
Hanno Fix coding style with php-c...

Hanno authored 7 years ago

modules/email/edit.php  64)     if ($id != 0) {
modules/email/edit.php  65)         $domainlist = get_vmail_domains();
modules/email/edit.php  66)         $domain = null;
modules/email/edit.php  67)         foreach ($domainlist as $dom) {
modules/email/edit.php  68)             if ($dom['id'] == $account['domain']) {
modules/email/edit.php  69)                 $domain = $dom['domainname'];
modules/email/edit.php  70)             }
modules/email/edit.php  71)         }
modules/email/edit.php  72)         $form .= "
Bernd Wurst Erlaube nicht mehr das Ände...

Bernd Wurst authored 13 years ago

modules/email/edit.php  73)     <p><strong style=\"font-size: 1.5em;\">{$account['local']}@{$domain}</strong></p>";
Hanno Fix coding style with php-c...

Hanno authored 7 years ago

modules/email/edit.php  74)     } else {
modules/email/edit.php  75)         $domain = null;
modules/email/edit.php  76)         if (isset($_GET['domain'])) {
modules/email/edit.php  77)             $domain = (int) $_GET['domain'];
modules/email/edit.php  78)         }
modules/email/edit.php  79)         $form .= "
Hanno Böck vmail: Fix HTML validator w...

Hanno Böck authored 2 years ago

modules/email/edit.php  80)     <p><strong>E-Mail-Adresse:</strong>&#160;<input type=\"text\" name=\"local\" id=\"local\" size=\"10\" value=\"" . filter_output_html($account['local']) . "\"><strong style=\"font-size: 1.5em;\">&#160;@&#160;</strong>" . domainselect($domain) . "</p>";
Hanno Fix coding style with php-c...

Hanno authored 7 years ago

modules/email/edit.php  81)     }
Hanno Böck vmail: Fix HTML validator w...

Hanno Böck authored 2 years ago

modules/email/edit.php  82)     $form .= '<p><input type="checkbox" id="enableextensions" name="enableextensions" value="yes" ' . ($has_extensions ? 'checked="checked" ' : '') . '><label for="enableextensions">&#160;Ermögliche die Nutzung von Erweiterungsadressen (<a href="https://wiki.schokokeks.org/E-Mail/Erweiterungsadressen">Hilfe</a>)</label>';
Hanno Fix coding style with php-c...

Hanno authored 7 years ago

modules/email/edit.php  83)     $password_message = '';
modules/email/edit.php  84)     $password_value = '';
modules/email/edit.php  85)     if ($is_mailbox and ($account['password'] != '')) {
Hanno Böck vmail: Fix HTML validator w...

Hanno Böck authored 2 years ago

modules/email/edit.php  86)         $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>';
Hanno Fix coding style with php-c...

Hanno authored 7 years ago

modules/email/edit.php  87)         $password_value = '**********';
modules/email/edit.php  88)     }
Hanno remove whitespace in empty...

Hanno authored 7 years ago

modules/email/edit.php  89) 
Hanno Fix coding style with php-c...

Hanno authored 7 years ago

modules/email/edit.php  90)     $form .= "
Hanno Böck vmail: Fix HTML validator w...

Hanno Böck authored 2 years ago

modules/email/edit.php  91)     <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>
Bernd Wurst E-Mail-Modul auf JQuery umg...

Bernd Wurst authored 12 years ago

modules/email/edit.php  92)     <div style=\"margin-left: 2em;\" id=\"mailbox_config\" class=\"option_group\">
Hanno Böck vmail: Fix HTML validator w...

Hanno Böck authored 2 years ago

modules/email/edit.php  93)     <p>Passwort für Abruf:&#160;<input style=\"color: #aaa;\" type=\"password\" id=\"password\" name=\"password\" value=\"{$password_value}\" autocomplete=\"new-password\">{$password_message}</p>";
bernd Neues VMail-Interface (funk...

bernd authored 18 years ago

modules/vmail/edit.php  94) 
Hanno Fix coding style with php-c...

Hanno authored 7 years ago

modules/email/edit.php  95)     $quota = config('vmail_basequota');
modules/email/edit.php  96)     if ($is_mailbox and $account['quota']) {
modules/email/edit.php  97)         $quota = $account['quota'];
modules/email/edit.php  98)     }
Hanno Böck vmail: Fix HTML validator w...

Hanno Böck authored 2 years ago

modules/email/edit.php  99)     $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 14 years ago

modules/email/edit.php 100) 
Hanno Fix coding style with php-c...

Hanno authored 7 years ago

modules/email/edit.php 101)     $quota_notify = ($account['quota_threshold'] >= 0) ? ' checked="checked" ' : '';
modules/email/edit.php 102)     $quota_threshold = ($account['quota_threshold'] >= 0) ? $account['quota_threshold'] : '';
Hanno Böck vmail: Fix HTML validator w...

Hanno Böck authored 2 years ago

modules/email/edit.php 103)     $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 14 years ago

modules/email/edit.php 104) 
Hanno Fix coding style with php-c...

Hanno authored 7 years ago

modules/email/edit.php 105)     $form .= "</div>";
bernd VMail-User können ihre Eins...

bernd authored 14 years ago

modules/email/edit.php 106) }
bernd Konfiguration des Autorespo...

bernd authored 14 years ago

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

bernd authored 15 years ago

modules/email/edit.php 108) 
modules/email/edit.php 109) 
Hanno Böck vmail: Fix HTML validator w...

Hanno Böck authored 2 years ago

modules/email/edit.php 110) $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 18 years ago

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

Bernd Wurst authored 12 years ago

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

bernd authored 14 years ago

modules/email/edit.php 113) 
modules/email/edit.php 114) $ar = $account['autoresponder'];
Hanno Böck Fix not operator (!) spaces

Hanno Böck authored 2 years ago

modules/email/edit.php 115) if (!$ar) {
Hanno Fix coding style with php-c...

Hanno authored 7 years ago

modules/email/edit.php 116)     $ar = empty_autoresponder_config();
bernd Konfiguration des Autorespo...

bernd authored 14 years ago

modules/email/edit.php 117) }
modules/email/edit.php 118) 
Hanno Fix coding style with php-c...

Hanno authored 7 years ago

modules/email/edit.php 119) if ($ar['valid_until'] != null && $ar['valid_until'] < date('Y-m-d')) {
modules/email/edit.php 120)     // Daten sind Restbestand von einem früheren Einsatz des Autoresponders
modules/email/edit.php 121)     $ar['valid_from'] = null;
modules/email/edit.php 122)     $ar['valid_until'] = null;
bernd Konfiguration des Autorespo...

bernd authored 14 years ago

modules/email/edit.php 123) }
Hanno Fix coding style with php-c...

Hanno authored 7 years ago

modules/email/edit.php 124) $valid_from_now_checked = ($ar['valid_from'] <= date('Y-m-d H:i:s') || $ar['valid_from'] == null) ? ' checked="checked"' : '';
bernd Konfiguration des Autorespo...

bernd authored 14 years ago

modules/email/edit.php 125) $valid_from_future_checked = ($ar['valid_from'] > date('Y-m-d H:i:s')) ? ' checked="checked"' : '';
modules/email/edit.php 126) $startdate = $ar['valid_from'];
Hanno Böck Fix not operator (!) spaces

Hanno Böck authored 2 years ago

modules/email/edit.php 127) if (!$startdate || $startdate <= date('Y-m-d')) {
Hanno Böck codingstyle, spaces between...

Hanno Böck authored 2 years ago

modules/email/edit.php 128)     $startdate = date('Y-m-d', time() + 1 * 24 * 60 * 60);
bernd Konfiguration des Autorespo...

bernd authored 14 years ago

modules/email/edit.php 129) }
Hanno Böck Neuer @PER codingstyle mit...

Hanno Böck authored 8 months ago

modules/email/edit.php 130) $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>"
modules/email/edit.php 131)   . "<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 132)   . "<input type=\"date\" value=\"$startdate\" id=\"ar_startdate\" name=\"ar_startdate\" min=\"" . date('Y-m-d') . "\" max=\"" . date('Y-m-d', time() + 60 * 24 * 60 * 60) . "\"></p>";
bernd Konfiguration des Autorespo...

bernd authored 14 years ago

modules/email/edit.php 133) 
modules/email/edit.php 134) $enddate = $ar['valid_until'];
Hanno Böck Fix not operator (!) spaces

Hanno Böck authored 2 years ago

modules/email/edit.php 135) if (!$enddate) {
Hanno Böck codingstyle, spaces between...

Hanno Böck authored 2 years ago

modules/email/edit.php 136)     $enddate = date('Y-m-d', time() + 7 * 24 * 60 * 60);
bernd Konfiguration des Autorespo...

bernd authored 14 years ago

modules/email/edit.php 137) }
Hanno Böck codingstyle, spaces between...

Hanno Böck authored 2 years ago

modules/email/edit.php 138) $max_end = date('Y-m-d', time() + 60 * 24 * 60 * 60);
Bernd Wurst use HTML date input

Bernd Wurst authored 3 years ago

modules/email/edit.php 139) if ($ar['valid_from'] > date('Y-m-d')) {
modules/email/edit.php 140)     $max_end = date_create($ar['valid_from']);
modules/email/edit.php 141)     $max_end->modify("+60 day");
modules/email/edit.php 142)     $max_end = $max_end->format('Y-m-d');
modules/email/edit.php 143) }
bernd Konfiguration des Autorespo...

bernd authored 14 years ago

modules/email/edit.php 144) $form .= "<h4>Deaktivierung</h4>";
Hanno Böck Neuer @PER codingstyle mit...

Hanno Böck authored 8 months ago

modules/email/edit.php 145) $form .= "<p><label for=\"ar_enddate\">Keine Antworten mehr versenden ab dem </label>"
modules/email/edit.php 146)   . "<input type=\"date\" value=\"$enddate\" id=\"ar_enddate\" name=\"ar_enddate\" min=\"" . date('Y-m-d') . "\" max=\"" . $max_end . "\"><br>";
Bernd Wurst SMTP-seitige Autoresponder...

Bernd Wurst authored 11 years ago

modules/email/edit.php 147) if (!$accountlogin && ($id != 0)) {
Hanno Fix coding style with php-c...

Hanno authored 7 years ago

modules/email/edit.php 148)     $form .= "<small>(Automatische Antworten sind nur befristet erlaubt. Wenn Sie diese Adresse dauerhaft stilllegen möchten, können Sie dies am Ende dieser Seite tun.)</small></p>";
Bernd Wurst SMTP-seitige Autoresponder...

Bernd Wurst authored 11 years ago

modules/email/edit.php 149) }
bernd Konfiguration des Autorespo...

bernd authored 14 years ago

modules/email/edit.php 150) 
Bernd Wurst Umstellung von filter_input...

Bernd Wurst authored 6 years ago

modules/email/edit.php 151) $subject = filter_output_html($ar['subject']);
Hanno Fix coding style with php-c...

Hanno authored 7 years ago

modules/email/edit.php 152) $ar_subject_default_checked = ($subject == null) ? ' checked="checked"' : '';
bernd Konfiguration des Autorespo...

bernd authored 14 years ago

modules/email/edit.php 153) $ar_subject_custom_checked = ($subject) ? ' checked="checked"' : '';
Hanno Böck Neuer @PER codingstyle mit...

Hanno Böck authored 8 months ago

modules/email/edit.php 154) $form .= "<h4>Betreffzeile der automatischen Antwort</h4>"
modules/email/edit.php 155)   . "<p><input type=\"radio\" name=\"ar_subject\" value=\"default\" id=\"ar_subject_default\"{$ar_subject_default_checked}> "
modules/email/edit.php 156)   . "<label for=\"ar_subject_default\">Automatisch (Re: <em>&lt;Betreff der Originalnachricht&gt;</em>)</label><br>"
modules/email/edit.php 157)   . "<input type=\"radio\" name=\"ar_subject\" value=\"custom\" id=\"ar_subject_custom\"{$ar_subject_custom_checked}> "
modules/email/edit.php 158)   . "<label for=\"ar_subject_custom\">Anderer Betreff:</label> <input type=\"text\" name=\"ar_subject_value\" id=\"ar_subject_value\" value=\"{$subject}\"></p>";
bernd Konfiguration des Autorespo...

bernd authored 14 years ago

modules/email/edit.php 159) 
Bernd Wurst Umstellung von filter_input...

Bernd Wurst authored 6 years ago

modules/email/edit.php 160) $message = filter_output_html($ar['message']);
Hanno Böck Neuer @PER codingstyle mit...

Hanno Böck authored 8 months ago

modules/email/edit.php 161) $form .= "<h4>Inhalt der automatischen Antwort</h4>"
modules/email/edit.php 162)   . "<p><textarea cols=\"80\" rows=\"10\" name=\"ar_message\" id=\"ar_message\">{$message}</textarea></p>";
bernd Konfiguration des Autorespo...

bernd authored 14 years ago

modules/email/edit.php 163) $quote = $ar['quote'];
Hanno Böck Fix not operator (!) spaces

Hanno Böck authored 2 years ago

modules/email/edit.php 164) if (!$quote) {
Hanno Fix coding style with php-c...

Hanno authored 7 years ago

modules/email/edit.php 165)     $quote = 'none';
modules/email/edit.php 166) }
Hanno Böck Neuer @PER codingstyle mit...

Hanno Böck authored 8 months ago

modules/email/edit.php 167) $form .= "<p><label for=\"ar_quote\">Originalnachricht des Absenders </label>"
modules/email/edit.php 168)   . html_select('ar_quote', ["none" => 'nicht in Antwort einschließen',
Hanno Böck Neue codingstyle-rule array...

Hanno Böck authored 2 years ago

modules/email/edit.php 169)       "teaser" => 'anreißen (erste 10 Zeilen)',
modules/email/edit.php 170)       "inline" => 'zitieren (max. 50 Zeilen)', ], $quote) . "</p>";
Hanno Böck more strict codingstyle wit...

Hanno Böck authored 3 years ago

modules/email/edit.php 171) //"attach" => 'vollständig als Anhang beifügen'), $quote)."</p>";
bernd Konfiguration des Autorespo...

bernd authored 14 years ago

modules/email/edit.php 172) 
modules/email/edit.php 173) 
Hanno Fix coding style with php-c...

Hanno authored 7 years ago

modules/email/edit.php 174) $ar_from_default_checked = ($ar['fromname'] == null) ? ' checked="checked"' : '';
modules/email/edit.php 175) $ar_from_custom_checked = ($ar['fromname'] != null) ? ' checked="checked"' : '';
Bernd Wurst Umstellung von filter_input...

Bernd Wurst authored 6 years ago

modules/email/edit.php 176) $fromname = filter_output_html($ar['fromname']);
Hanno Böck Neuer @PER codingstyle mit...

Hanno Böck authored 8 months ago

modules/email/edit.php 177) $form .= "<h4>Absender der automatischen Antwort</h4>"
modules/email/edit.php 178)   . "<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 179)   . "<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 180)   . "<input type=\"text\" name=\"ar_fromname\" id=\"ar_fromname\" value=\"{$fromname}\"></p>";
bernd Neues Design für VMail-Edit...

bernd authored 18 years ago

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

bernd authored 14 years ago

modules/email/edit.php 182) 
modules/email/edit.php 183) 
modules/email/edit.php 184) 
modules/email/edit.php 185) $form .= '</div>';
modules/email/edit.php 186) 
modules/email/edit.php 187) 
modules/email/edit.php 188) 
modules/email/edit.php 189) 
modules/email/edit.php 190) 
Hanno Böck vmail: Fix HTML validator w...

Hanno Böck authored 2 years ago

modules/email/edit.php 191) $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 14 years ago

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

Bernd Wurst authored 12 years ago

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

bernd authored 18 years ago

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

bernd authored 14 years ago

modules/email/edit.php 196) $form .= '<div id="forward_entries">
modules/email/edit.php 197) ';
Hanno Böck Fix not operator (!) spaces

Hanno Böck authored 2 years ago

modules/email/edit.php 198) if (!isset($account['forwards'][0])) {
Hanno Böck Codingstyle PSR12 + array s...

Hanno Böck authored 4 years ago

modules/email/edit.php 199)     $account['forwards'][0] = ['destination' => ''];
bernd Anpassung auf neues Interface

bernd authored 18 years ago

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

Bernd Wurst authored 12 years ago

modules/email/edit.php 201) while (count($account['forwards']) < 10) {
Hanno Fix coding style with php-c...

Hanno authored 7 years ago

modules/email/edit.php 202)     // Dummy-Einträge für Leute ohne JavaScript
Hanno Böck Codingstyle PSR12 + array s...

Hanno Böck authored 4 years ago

modules/email/edit.php 203)     $account['forwards'][] = ['destination' => ''];
Bernd Wurst E-Mail-Modul auf JQuery umg...

Bernd Wurst authored 12 years ago

modules/email/edit.php 204) }
Hanno Fix coding style with php-c...

Hanno authored 7 years ago

modules/email/edit.php 205) for ($i = 0 ; $i < max($numforwards, 10) ; $i++) {
Hanno Böck codingstyle, spaces between...

Hanno Böck authored 2 years ago

modules/email/edit.php 206)     $num = $i + 1;
Hanno Fix coding style with php-c...

Hanno authored 7 years ago

modules/email/edit.php 207)     $form .= "<div class=\"vmail-forward\" id=\"vmail_forward_{$num}\">
Hanno Böck Spaces between string conca...

Hanno Böck authored 2 years ago

modules/email/edit.php 208)   <div style=\"float: right;\" class=\"delete_forward\">" . icon_delete("Diese Weiterleitung entfernen") . "</div>
Hanno Böck vmail: Fix HTML validator w...

Hanno Böck authored 2 years ago

modules/email/edit.php 209)   <p>Weiterleiten an <input type=\"text\" id=\"forward_to_{$num}\" name=\"forward_to_{$num}\" value=\"" . filter_output_html($account['forwards'][$i]['destination']) . "\"></p>
bernd JavaScript-Erweiterungen: U...

bernd authored 14 years ago

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

bernd authored 18 years ago

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

bernd authored 14 years ago

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

bernd authored 18 years ago

modules/vmail/edit.php 213) 
Hanno Böck Spaces between string conca...

Hanno Böck authored 2 years ago

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

bernd authored 14 years ago

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

bernd authored 18 years ago

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

Bernd Wurst authored 13 years ago

modules/email/edit.php 217) $target = 'vmail';
modules/email/edit.php 218) if ($accountlogin) {
Hanno Fix coding style with php-c...

Hanno authored 7 years ago

modules/email/edit.php 219)     $target = '../index/index';
Bernd Wurst Zeige User-Infos beim Login...

Bernd Wurst authored 13 years ago

modules/email/edit.php 220) }
Hanno Böck vmail: Fix HTML validator w...

Hanno Böck authored 2 years ago

modules/email/edit.php 221) $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 18 years ago

modules/vmail/edit.php 222) 
Hanno Böck Spaces between string conca...

Hanno Böck authored 2 years ago

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

bernd authored 18 years ago

modules/vmail/edit.php 224) 
Hanno Böck Fix not operator (!) spaces

Hanno Böck authored 2 years ago

modules/email/edit.php 225) if (!$accountlogin && ($id != 0)) {
Hanno Böck Spaces between string conca...

Hanno Böck authored 2 years ago

modules/email/edit.php 226)     output("<p>" . internal_link('suspend', 'Diese Adresse stilllegen (mit individuellem Fehlertext)', "account=" . $id) . "</p>");