dcc202fb249a446ac15c7cf413b9f1b4a3f31b58
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) 
18) $section='email_vmail';
19) title("Einstellungen zum E-Mail-Abruf");
20) 
21) $servername = filter_input_hostname($_REQUEST['server']);
22) $type = 'vmail';
23) if (isset($_REQUEST['type']) && $_REQUEST['type'] == 'manual') {
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

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

bernd authored 13 years ago

25) }
26) 
bernd Firmenname und Webmail-URL...

bernd authored 13 years ago

27) 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

28) 
bernd Firmenname und Webmail-URL...

bernd authored 13 years ago

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

bernd authored 13 years ago

30) output('<h3>Lesen per Web-Mail</h3>
31) <p>Die Anmeldung zu unseren Web-Mail-Systemen erfolgt unter</p>
bernd Firmenname und Webmail-URL...

bernd authored 13 years ago

32) <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

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

Hanno authored 5 years ago

34)     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

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

Hanno authored 5 years ago

36)     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

37) }
38) 
39) output('<h3>Abruf mit einem E-Mail-Programm</h3>
bernd Servername noch prominenter...

bernd authored 13 years ago

40) <p>Ihre E-Mails befinden auf dem Server</p>
41) <p style="margin-left: 2em; font-size: 130%; font-weight: bold;">'.$servername.'.</p>
bernd Info-Seite über Mail-Login-...

bernd authored 13 years ago

42) <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

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

bernd authored 13 years ago

44) <div style="width: 20%; margin-right: 2em; float: left;">
45) <h3 style="text-align: center;">IMAP</h3>
46) <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>
47) <p>Die Einstellungen für IMAP:</p>
48) <dl>
49) <dt>Protokoll</dt><dd>IMAP</dd>
50) <dt>Servername</dt><dd>'.$servername.'</dd>
Hanno Böck dedicated TLS-ports empfehl...

Hanno Böck authored 4 years ago

51) <dt>Port</dt><dd>993</dd>
52) <dt>Verschlüsselung</dt><dd>SSL / TLS</dd>
Hanno Böck Codingstyle PSR12 + array s...

Hanno Böck authored 2 years ago

53) <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

54) <dt>Passwort</dt><dd><em>Ihr E-Mail-Passwort</em></dd>
55) </dl>
56) </div>
57) <div style="width: 20%; margin-right: 2em; float: left;">
58) <h3 style="text-align: center;">POP3</h3>
59) <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>
60) <p>Die Einstellungen für POP3:</p>
61) <dl>
62) <dt>Protokoll</dt><dd>POP3</dd>
63) <dt>Servername</dt><dd>'.$servername.'</dd>
Hanno Böck dedicated TLS-ports empfehl...

Hanno Böck authored 4 years ago

64) <dt>Port</dt><dd>995</dd>
65) <dt>Verschlüsselung</dt><dd>SSL / TLS</dd>
Hanno Böck Codingstyle PSR12 + array s...

Hanno Böck authored 2 years ago

66) <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

67) <dt>Passwort</dt><dd><em>Ihr E-Mail-Passwort</em></dd>
68) </dl>
69) </div>
70) <br style="clear: left;" />
71) <h3>SMTP</h3>
72) <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>
73) <dt>Protokoll</dt><dd>SMTP</dd>
74) <dt>Servername</dt><dd>'.$servername.'</dd>
Hanno Böck dedicated TLS-ports empfehl...

Hanno Böck authored 4 years ago

75) <dt>Port</dt><dd>465</dd>
76) <dt>Verschlüsselung</dt><dd>SSL / TLS</dd>
Hanno Böck Codingstyle PSR12 + array s...

Hanno Böck authored 2 years ago

77) <dt>Benutzername</dt><dd><em>'.($type=='manual' ? 'Ihr Account-Name' : 'Ihre E-Mail-Adresse').'</em></dd>