f12aba6daa6e2848a8ed60ea57b26874d6675f52
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) 
Bernd Wurst Updated copyright notice (2...

Bernd Wurst authored 11 years ago

5) Written 2008-2013 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) 
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.
10) 
11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see 
12) http://creativecommons.org/publicdomain/zero/1.0/
13) 
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.
15) */
16) 
bernd Info-Seite über Mail-Login-...

bernd authored 13 years ago

17) require_once('inc/base.php');
18) 
19) require_role(ROLE_SYSTEMUSER);
20) 
21) $section='email_vmail';
22) title("Einstellungen zum E-Mail-Abruf");
23) 
24) $servername = filter_input_hostname($_REQUEST['server']);
25) $type = 'vmail';
26) if (isset($_REQUEST['type']) && $_REQUEST['type'] == 'manual') {
27)   $type = 'manual';
28) }
29) 
bernd Firmenname und Webmail-URL...

bernd authored 12 years 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 12 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>
bernd Firmenname und Webmail-URL...

bernd authored 12 years 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') {
37)   output('<p>Dort geben Sie bitte im Feld für die E-Mail-Adresse Ihren Account-Namen ein.</p>');
38) } else {
39)   output('<p>Dort geben Sie bitte Ihre E-Mail-Adresse und das dazu gehörige Passwort ein um sich anzumelden.</p>');
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>
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)