summaryrefslogtreecommitdiff
path: root/files/roundcube/plugins/login_info/config.inc.php.dist
blob: 10098473997077061e35bfe91ba2decd28aedb18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php

/* Login_info plugin */

/*
  http://www.std-soft.com/bfaq/52-cat-webmail/107-text-auf-der-login-seite-einblenden.html
  example: https://www.std-soft.de/webmail (source)
Put your message between the two EOT TAGS:
$rcmail_config['login_info'] = <<<EOT
Your message here
EOT;
*/
$rcmail_config['login_info'] = <<<EOT
<div id="login_info" style="margin-top:3%;margin-left:auto;margin-right:auto;;width:380px;border-radius:10px;padding:10px;-moz-border-radius:10px;background-color:lightgrey;text-align:center;color:red;">
Aus Sicherheitsgründen ist ab hier nur noch ein gesicherter (https) Zugang möglich.<br>
Sollte Ihr Browser <b>vorher</b> einen Fehler oder eine Warnung vor dieser Seite angezeigt 
haben, klicken Sie bitte einmalig vor dem Einloggen auf die zwei folgenden Links und 
installieren die beiden Zertifikate von <a title="Zertifikate von CAcert" href="http://www.cacert.org/index.php?id=3" target="cacert"><img src="plugins/login_info/CAcert-ssl-security.png" alt="www.cacert.org" style="border-width: 0px;" /></a><br>
<ol>
<li><a href="http://www.cacert.org/certs/root.crt" target="cacert">CAcert Root Zertifikat (Class 1)</a></li>
<li><a href="http://www.cacert.org/certs/class3.crt" target="cacert">CAcert Root Zertifikat (Class 3)</a></li>
</ol>
</div>
EOT;

?>