c7588fe5fc5898bab0e0406309544294c09fae63
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) 
Hanno Böck Change license from CC0 to...

Hanno Böck authored 1 year ago

modules/webmailtotp/setup.php  5) Written 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) 
Hanno Böck Change license from CC0 to...

Hanno Böck authored 1 year ago

modules/webmailtotp/setup.php  9) This code is published under a 0BSD license.
Bernd Wurst Google-Auth-Token setzen un...

Bernd Wurst authored 11 years ago

modules/googleauth/setup.php  10) 
modules/googleauth/setup.php  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.
modules/googleauth/setup.php  12) */
modules/googleauth/setup.php  13) 
modules/googleauth/setup.php  14) require_once('inc/base.php');
modules/googleauth/setup.php  15) require_once('inc/security.php');
Hanno Böck Codingstyle PSR12 + array s...

Hanno Böck authored 2 years ago

modules/webmailtotp/setup.php 16) 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  17) 
modules/googleauth/setup.php  18) $username = urldecode($_REQUEST['username']);
modules/googleauth/setup.php  19) 
Hanno Böck codingstyle, spaces between...

Hanno Böck authored 8 months ago

modules/webmailtotp/setup.php 20) $section = 'webmailtotp_overview';
Bernd Wurst Umbenennung Google-Auth nac...

Bernd Wurst authored 11 years ago

modules/webmailtotp/setup.php 21) title("Zwei-Faktor-Anmeldung am Webmailer");
Bernd Wurst Google-Auth-Token setzen un...

Bernd Wurst authored 11 years ago

modules/googleauth/setup.php  22) 
Hanno Böck Spaces between string conca...

Hanno Böck authored 6 months ago

modules/webmailtotp/setup.php 23) 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>
Bernd Wurst Umbenennung Google-Auth nac...

Bernd Wurst authored 11 years ago

modules/webmailtotp/setup.php 24) <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  25) 
Hanno Böck Spaces between string conca...

Hanno Böck authored 6 months ago

modules/webmailtotp/setup.php 26) $form = '<p>Geben Sie zunächst bitte das bestehende Passwort des Postfachs <strong>' . filter_output_html($username) . '</strong> ein:</p>
Hanno Böck HTML fixes and autocomplete...

Hanno Böck authored 3 months ago

modules/webmailtotp/setup.php 27) <p>Postfach-Passwort: <input type="password" name="oldpw"></p>';
Bernd Wurst Google-Auth-Token setzen un...

Bernd Wurst authored 11 years ago

modules/googleauth/setup.php  28) 
Hanno Böck Spaces between string conca...

Hanno Böck authored 6 months ago

modules/webmailtotp/setup.php 29) $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>
Hanno Böck HTML fixes and autocomplete...

Hanno Böck authored 3 months ago

modules/webmailtotp/setup.php 30) <p>Neues Webmail-Passwort: <input type="password" name="newpw" autocomplete="new-password"></p>';
Bernd Wurst Google-Auth-Token setzen un...

Bernd Wurst authored 11 years ago

modules/googleauth/setup.php  31) 
Hanno Böck HTML fixes and autocomplete...

Hanno Böck authored 3 months ago

modules/webmailtotp/setup.php 32) $form .= '<p><input type="submit" value="Einrichten"></p>';
Bernd Wurst Google-Auth-Token setzen un...

Bernd Wurst authored 11 years ago

modules/googleauth/setup.php  33)