86a998cc45a0bc186446c40ca878b3f57df85795
bernd Info-Seite über Mail-Login-...

bernd authored 13 years ago

1) <?php
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

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

Hanno Böck authored 1 year ago

5) Written by schokokeks.org Hosting, namely
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

6)   Bernd Wurst <bernd@schokokeks.org>
7)   Hanno Böck <hanno@schokokeks.org>
8) 
Hanno Böck Change license from CC0 to...

Hanno Böck authored 1 year ago

9) This code is published under a 0BSD license.
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

10) 
11) 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.
12) */
13) 
bernd Info-Seite über Mail-Login-...

bernd authored 13 years ago

14) require_once('inc/base.php');
15) 
Bernd Wurst Erlaube die E-Mail-Abrufdat...

Bernd Wurst authored 11 years ago

16) # Diese Seiten benötigt keine speziellen Rechte, man darf diese auch unangemeldet anschauen
bernd Info-Seite über Mail-Login-...

bernd authored 13 years ago

17) 
Hanno Böck codingstyle, spaces between...

Hanno Böck authored 8 months ago

18) $section = 'email_vmail';
bernd Info-Seite über Mail-Login-...

bernd authored 13 years ago

19) title("Einstellungen zum E-Mail-Abruf");
20) 
Hanno Böck Remaining HTML fixes email,...

Hanno Böck authored 3 months ago

21) $servername = "zucker.schokokeks.org";
22) if (isset($_REQUEST['server'])) {
23)     $servername = filter_input_hostname($_REQUEST['server']);
24) }
bernd Info-Seite über Mail-Login-...

bernd authored 13 years ago

25) $type = 'vmail';
26) if (isset($_REQUEST['type']) && $_REQUEST['type'] == 'manual') {
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

27)     $type = 'manual';
bernd Info-Seite über Mail-Login-...

bernd authored 13 years ago

28) }
29) 
Hanno Böck Spaces between string conca...

Hanno Böck authored 6 months ago

30) output("<p>Sie können bei " . config('company_name') . " Ihre E-Mails wahlweise direkt im Browser mit einem Web-Mail-System lesen oder mit einem E-Mail-Programm auf Ihrem Rechner per POP3 oder IMAP abrufen. Im folgenden möchten wir Ihnen erklären, wie Sie diese Möglichkeiten nutzen können.</p>");
bernd Info-Seite über Mail-Login-...

bernd authored 13 years ago

31) 
bernd Firmenname und Webmail-URL...

bernd authored 13 years ago

32) $webmail_host = str_replace('https://', '', config('webmail_url'));
bernd Info-Seite über Mail-Login-...

bernd authored 13 years ago

33) output('<h3>Lesen per Web-Mail</h3>
34) <p>Die Anmeldung zu unseren Web-Mail-Systemen erfolgt unter</p>
Hanno Böck Spaces between string conca...

Hanno Böck authored 6 months ago

35) <p style="margin-left: 2em; font-size: 130%; font-weight: bold;"><a href="' . config('webmail_url') . '">' . $webmail_host . '</a></p>');
bernd Info-Seite über Mail-Login-...

bernd authored 13 years ago

36) if ($type == 'manual') {
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

37)     output('<p>Dort geben Sie bitte im Feld für die E-Mail-Adresse Ihren Account-Namen ein.</p>');
bernd Info-Seite über Mail-Login-...

bernd authored 13 years ago

38) } else {
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

39)     output('<p>Dort geben Sie bitte Ihre E-Mail-Adresse und das dazu gehörige Passwort ein um sich anzumelden.</p>');
bernd Info-Seite über Mail-Login-...

bernd authored 13 years ago

40) }
41) 
42) output('<h3>Abruf mit einem E-Mail-Programm</h3>
bernd Servername noch prominenter...

bernd authored 13 years ago

43) <p>Ihre E-Mails befinden auf dem Server</p>
Hanno Böck Spaces between string conca...

Hanno Böck authored 6 months ago

44) <p style="margin-left: 2em; font-size: 130%; font-weight: bold;">' . $servername . '.</p>
bernd Info-Seite über Mail-Login-...

bernd authored 13 years ago

45) <p>Wenn Sie ein E-Mail-Programm auf Ihrem Computer (wie z.B. Mozilla Thunderbird) zum Abruf benutzen möchten, haben Sie die Wahl zwischen POP3 und IMAP. Ihre Zugangsdaten lassen sich mit beiden Technologien benutzen.</p>
bernd Servername noch prominenter...

bernd authored 13 years ago

46) 
bernd Info-Seite über Mail-Login-...

bernd authored 13 years ago

47) <div style="width: 20%; margin-right: 2em; float: left;">
48) <h3 style="text-align: center;">IMAP</h3>
49) <p style="text-align: justify;">Bei IMAP werden die E-Mails dauerhaft <strong>auf dem Server gespeichert</strong>. Das E-Mail-Programm läd (je nach Einstellung) nur die Kopfzeilen und die jeweils angeschaute E-Mail herunter. Bei IMAP können Sie <strong>Unterordner</strong> in Ihrem Postfach haben. Da die Mails auf dem Server gespeichert sind, können Sie jederzeit mit einem <strong>Web-Mail-System</strong> auch auf gelesene E-Mails zugreifen. Die gespeicherten E-Mails können allerdings dazu führen, dass Ihr Speicherplatz schneller verbraucht ist.</p>
50) <p>Die Einstellungen für IMAP:</p>
51) <dl>
52) <dt>Protokoll</dt><dd>IMAP</dd>
Hanno Böck Spaces between string conca...

Hanno Böck authored 6 months ago

53) <dt>Servername</dt><dd>' . $servername . '</dd>
Hanno Böck dedicated TLS-ports empfehl...

Hanno Böck authored 4 years ago

54) <dt>Port</dt><dd>993</dd>
55) <dt>Verschlüsselung</dt><dd>SSL / TLS</dd>
Hanno Böck Spaces between string conca...

Hanno Böck authored 6 months ago

56) <dt>Benutzername</dt><dd><em>' . ($type == 'manual' ? 'Ihr Account-Name' : 'Ihre E-Mail-Adresse') . '</em></dd>
bernd Info-Seite über Mail-Login-...

bernd authored 13 years ago

57) <dt>Passwort</dt><dd><em>Ihr E-Mail-Passwort</em></dd>
58) </dl>
59) </div>
60) <div style="width: 20%; margin-right: 2em; float: left;">
61) <h3 style="text-align: center;">POP3</h3>
62) <p style="text-align: justify;">Bei POP3 werden die E-Mails auf Ihren Computer herunter geladen und anschließend (je nach Einstellung) <strong>auf dem Server gelöscht</strong>. Sie können mit einem Web-Mail-System von unterwegs nur die E-Mails lesen, die noch nicht von Ihrem E-Mail-Programm abgerufen worden sind.</p>
63) <p>Die Einstellungen für POP3:</p>
64) <dl>
65) <dt>Protokoll</dt><dd>POP3</dd>
Hanno Böck Spaces between string conca...

Hanno Böck authored 6 months ago

66) <dt>Servername</dt><dd>' . $servername . '</dd>
Hanno Böck dedicated TLS-ports empfehl...

Hanno Böck authored 4 years ago

67) <dt>Port</dt><dd>995</dd>
68) <dt>Verschlüsselung</dt><dd>SSL / TLS</dd>
Hanno Böck Spaces between string conca...

Hanno Böck authored 6 months ago

69) <dt>Benutzername</dt><dd><em>' . ($type == 'manual' ? 'Ihr Account-Name' : 'Ihre E-Mail-Adresse') . '</em></dd>
bernd Info-Seite über Mail-Login-...

bernd authored 13 years ago

70) <dt>Passwort</dt><dd><em>Ihr E-Mail-Passwort</em></dd>
71) </dl>
72) </div>
Hanno Böck Remaining HTML fixes email,...

Hanno Böck authored 3 months ago

73) <br style="clear: left;">
bernd Info-Seite über Mail-Login-...

bernd authored 13 years ago

74) <h3>SMTP</h3>
75) <p>Zum Verschicken von E-Mails muss sich Ihr E-Mail-Programm auch per SMTP anmelden. Benutzen Sie dafür bitte die folgenden Daten:</p>
Hanno Böck Remaining HTML fixes email,...

Hanno Böck authored 3 months ago

76) <dl>
bernd Info-Seite über Mail-Login-...

bernd authored 13 years ago

77) <dt>Protokoll</dt><dd>SMTP</dd>
Hanno Böck Spaces between string conca...

Hanno Böck authored 6 months ago

78) <dt>Servername</dt><dd>' . $servername . '</dd>
Hanno Böck dedicated TLS-ports empfehl...

Hanno Böck authored 4 years ago

79) <dt>Port</dt><dd>465</dd>
80) <dt>Verschlüsselung</dt><dd>SSL / TLS</dd>
Hanno Böck Spaces between string conca...

Hanno Böck authored 6 months ago

81) <dt>Benutzername</dt><dd><em>' . ($type == 'manual' ? 'Ihr Account-Name' : 'Ihre E-Mail-Adresse') . '</em></dd>
bernd Info-Seite über Mail-Login-...

bernd authored 13 years ago

82) <dt>Passwort</dt><dd><em>Ihr E-Mail-Passwort</em></dd>
Hanno Böck Remaining HTML fixes email,...

Hanno Böck authored 3 months ago

83) </dl>
84) <br>