Google-Auth-Token setzen un...
Bernd Wurst authored 12 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)
modules/googleauth/setup.php 5) Written 2008-2012 by schokokeks.org Hosting, namely
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)
modules/googleauth/setup.php 11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see
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');
modules/googleauth/setup.php 19) require_role(ROLE_SYSTEMUSER);
modules/googleauth/setup.php 20)
modules/googleauth/setup.php 21) $username = urldecode($_REQUEST['username']);
modules/googleauth/setup.php 22)
|
Umbenennung Google-Auth nac...
Bernd Wurst authored 12 years ago
|
modules/webmailtotp/setup.php 23) $section='webmailtotp_overview';
modules/webmailtotp/setup.php 24) title("Zwei-Faktor-Anmeldung am Webmailer");
|
Google-Auth-Token setzen un...
Bernd Wurst authored 12 years ago
|
modules/googleauth/setup.php 25)
|
Umbenennung Google-Auth nac...
Bernd Wurst authored 12 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>');
|
Google-Auth-Token setzen un...
Bernd Wurst authored 12 years ago
|
modules/googleauth/setup.php 28)
modules/googleauth/setup.php 29) $form = '<p>Geben Sie zunächst bitte das bestehende Passwort des Postfachs <strong>'.filter_input_general($username).'</strong> ein:</p>
modules/googleauth/setup.php 30) <p>Postfach-Passwort: <input type="password" name="oldpw" /></p>';
modules/googleauth/setup.php 31)
modules/googleauth/setup.php 32) $form .= '<p>Geben sie hier bitte das neue Passwort ein, mit dem sich der Benutzer <strong>'.filter_input_general($username).'</strong> zukünftig anmelden muss.</p>
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)
|
Umbenennung Google-Auth nac...
Bernd Wurst authored 12 years ago
|
modules/webmailtotp/setup.php 37) output(html_form('webmailtotp_setup', 'generate', 'username='.urlencode($username), $form));
|