96649f21ba18d07757afa9d98998f7a22c0d86a3
Bernd Wurst Google-Auth-Token setzen un...

Bernd Wurst authored 11 years ago

modules/googleauth/setup.php   1) <?php
modules/googleauth/setup.php   2) /*
modules/googleauth/setup.php   3) This file belongs to the Webinterface of schokokeks.org Hosting
modules/googleauth/setup.php   4) 
Bernd Wurst Copyright year update

Bernd Wurst authored 6 years ago

modules/webmailtotp/setup.php  5) Written 2008-2018 by schokokeks.org Hosting, namely
Bernd Wurst Google-Auth-Token setzen un...

Bernd Wurst authored 11 years ago

modules/googleauth/setup.php   6)   Bernd Wurst <bernd@schokokeks.org>
modules/googleauth/setup.php   7)   Hanno Böck <hanno@schokokeks.org>
modules/googleauth/setup.php   8) 
modules/googleauth/setup.php   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.
modules/googleauth/setup.php  10) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/webmailtotp/setup.php 11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see
Bernd Wurst Google-Auth-Token setzen un...

Bernd Wurst authored 11 years ago

modules/googleauth/setup.php  12) http://creativecommons.org/publicdomain/zero/1.0/
modules/googleauth/setup.php  13) 
modules/googleauth/setup.php  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.
modules/googleauth/setup.php  15) */
modules/googleauth/setup.php  16) 
modules/googleauth/setup.php  17) require_once('inc/base.php');
modules/googleauth/setup.php  18) require_once('inc/security.php');
Hanno Böck Codingstyle PSR12 + array s...

Hanno Böck authored 2 years ago

modules/webmailtotp/setup.php 19) require_role([ROLE_SYSTEMUSER, ROLE_MAILACCOUNT, ROLE_VMAIL_ACCOUNT]);
Bernd Wurst Google-Auth-Token setzen un...

Bernd Wurst authored 11 years ago

modules/googleauth/setup.php  20) 
modules/googleauth/setup.php  21) $username = urldecode($_REQUEST['username']);
modules/googleauth/setup.php  22) 
Bernd Wurst Umbenennung Google-Auth nac...

Bernd Wurst authored 11 years ago

modules/webmailtotp/setup.php 23) $section='webmailtotp_overview';
modules/webmailtotp/setup.php 24) title("Zwei-Faktor-Anmeldung am Webmailer");
Bernd Wurst Google-Auth-Token setzen un...

Bernd Wurst authored 11 years ago

modules/googleauth/setup.php  25) 
Bernd Wurst Umbenennung Google-Auth nac...

Bernd Wurst authored 11 years ago

modules/webmailtotp/setup.php 26) output('<p><strong>Hinweise:</strong></p><ul><li>Nach Einrichtung der Zwei-Faktor-Anmeldung funktioniert bei der Anmeldung über <a href="'.config('webmail_url').'">die zentrale Webmail-Login-Seite</a> nur noch dieses Passwort zusammen mit dem Einmal-Code, der mit dem TOTP-Generator erzeugt wird.</li>
modules/webmailtotp/setup.php 27) <li>Ihr bestehendes IMAP-Passwort wird mit dem neuen Passwort verschlüsselt.</li><li>Über IMAP bzw. POP3 kann weiterhin nur mit dem bisherigen Passwort zugegriffen werden.</li><li>Wenn Sie ihr IMAP-Passwort ändern, wird diese Zwei-Faktor-Anmeldung automatisch abgeschaltet.</li></ul>');
Bernd Wurst Google-Auth-Token setzen un...

Bernd Wurst authored 11 years ago

modules/googleauth/setup.php  28) 
Bernd Wurst Umstellung von filter_input...

Bernd Wurst authored 4 years ago

modules/webmailtotp/setup.php 29) $form = '<p>Geben Sie zunächst bitte das bestehende Passwort des Postfachs <strong>'.filter_output_html($username).'</strong> ein:</p>
Bernd Wurst Google-Auth-Token setzen un...

Bernd Wurst authored 11 years ago

modules/googleauth/setup.php  30) <p>Postfach-Passwort: <input type="password" name="oldpw" /></p>';
modules/googleauth/setup.php  31) 
Bernd Wurst Umstellung von filter_input...

Bernd Wurst authored 4 years ago

modules/webmailtotp/setup.php 32) $form .= '<p>Geben sie hier bitte das neue Passwort ein, mit dem sich der Benutzer <strong>'.filter_output_html($username).'</strong> zukünftig anmelden muss.</p>
Bernd Wurst Google-Auth-Token setzen un...

Bernd Wurst authored 11 years ago

modules/googleauth/setup.php  33) <p>Neues Webmail-Passwort: <input type="password" name="newpw" /></p>';
modules/googleauth/setup.php  34) 
modules/googleauth/setup.php  35) $form .= '<p><input type="submit" value="Einrichten" /></p>';
modules/googleauth/setup.php  36)