5effc2bd7685822df276c1372dab480cff321941
bernd VMail-User können ihre Eins...

bernd authored 12 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 Lizenzinfos in eigenes Modu...

Bernd Wurst authored 10 years ago

5) Written 2008-2014 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) */
bernd VMail-User können ihre Eins...

bernd authored 12 years ago

16) 
17) require_once('inc/base.php');
18) require_once('inc/icons.php');
19) require_once('inc/security.php');
20) require_role(ROLE_VMAIL_ACCOUNT);
21) 
22) require_once('include/vmail.php');
23) 
24) $id = get_vmail_id_by_emailaddr($_SESSION['mailaccount']);
25) $acc = get_account_details($id, false);
26) $actions = array();
27) DEBUG($acc);
28) 
29) $content = '<h3>Aktueller Speicherplatzverbrauch</h3>';
30) 
31) $percent = round(( $acc["quota_used"] / $acc["quota"] ) * 100 );
32) $color = ( $percent > 95 ? 'red' : ($percent > 75 ? "yellow" : "green" ));
33) $width = 2 * min($percent, 100);
34) $content .= "<div><div style=\"margin: 2px 0; padding: 0; width: 200px; border: 1px solid black;\"><div style=\"font-size: 1px; background-color: {$color}; height: 10px; width: {$width}px; margin: 0; padding: 0;\">&#160;</div></div> {$acc['quota_used']} MB von {$acc['quota']} MB belegt</div>";
35) 
36) $content .= '<h3>Einstellungen</h3>
37) <p>Eingehende E-Mails für Ihre Adresse werden wie folgt verarbeitet:</p>';
38) 
39) $spam = 'ohne Spamfilter';
40) switch ($acc['spamfilter'])
41) {
42)   case 'folder':  $spam = 'Spam in Unterordner';
43)     break;
44) 	case 'tag':	$spam = 'Spam markieren';
45) 		break;
46) 	case 'delete':	$spam = 'Spam nicht zustellen';
47)   	break;
48) }
49) $content .= '<p>'.other_icon('go.png')." Ablegen in Ihrer Mailbox ({$spam})</p>";
50) 
51) 
52) if ($acc['autoresponder']) {
53)   $now = date( 'Y-m-d H:i:s' );
54)   $valid_from = $acc['autoresponder']['valid_from'];
bernd Datums-Check und Daten in u...

bernd authored 12 years ago

55)   $valid_from_string = date('d.m.Y', strtotime($acc['autoresponder']['valid_from']));
bernd VMail-User können ihre Eins...

bernd authored 12 years ago

56)   $valid_until = $acc['autoresponder']['valid_until'];
bernd Datums-Check und Daten in u...

bernd authored 12 years ago

57)   $valid_until_string = date('d.m.Y', strtotime($acc['autoresponder']['valid_until']));
bernd VMail-User können ihre Eins...

bernd authored 12 years ago

58)   if ($valid_from == NULL) {
59)     // Autoresponder abgeschaltet
60)     //$content .= '<p>'.other_icon('go.png')." Es wird keine automatische Antwort versendet</p>"; 
61)   } elseif ($valid_from > $now) {
bernd Datums-Check und Daten in u...

bernd authored 12 years ago

62)     $content .= '<p>'.other_icon('go.png')." Es wird ab dem {$valid_from_string} eine automatische Antwort versendet</p>"; 
bernd VMail-User können ihre Eins...

bernd authored 12 years ago

63)   } elseif ($valid_until == NULL) {
64)     $content .= '<p>'.other_icon('go.png')." Es wird eine automatische Antwort versendet</p>"; 
65)   } elseif ($valid_until > $now) {
bernd Datums-Check und Daten in u...

bernd authored 12 years ago

66)     $content .= '<p>'.other_icon('go.png')." Es wird eine automatische Antwort versendet, jedoch nicht mehr ab dem {$valid_until_string}</p>"; 
bernd VMail-User können ihre Eins...

bernd authored 12 years ago

67)   } elseif ($valid_until < $now) {
bernd Datums-Check und Daten in u...

bernd authored 12 years ago

68)     $content .= '<p>'.other_icon('go.png')." Es wird seit dem {$valid_until_string} keine automatische Antwort mehr versendet</p>"; 
bernd VMail-User können ihre Eins...

bernd authored 12 years ago

69)   }
70) }
71) 
72) foreach ($acc['forwards'] AS $fwd)
73) {
74)  	$spam = 'ohne Spamfilter';
75)   switch ($fwd['spamfilter'])
76) 	{
77) 	  case 'tag':	$spam = 'Spam markieren';
78) 			break;
79) 		case 'delete':	$spam = 'Spam nicht zustellen';
80) 			break;
81) 	}
82) 	$fwd['destination'] = filter_input_general($fwd['destination']);
83)   $content .= '<p>'.other_icon('go.png')." Weiterleitung an <strong>{$fwd['destination']}</strong> ({$spam})</p>"; 
84) }
85) 
Bernd Wurst Link auf die Abrufdaten auf...

Bernd Wurst authored 11 years ago

86) 
87) $content .= '<h3>Nachrichten-Abruf</h3>
88) <p>'.internal_link('/go/email/logindata', 'Zugangsdaten für E-Mail-Abruf anzeigen', 'server='.get_server_by_id($acc['server']).'&type=vmail').'</p>';
89)