mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2024-12-10 10:40:15 +02:00
11 lines
331 B
PHP
11 lines
331 B
PHP
<?php
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/prerequisites.inc.php';
|
|
header('Content-Type: text/plain');
|
|
if (!isset($_SESSION['mailcow_cc_role'])) {
|
|
exit();
|
|
}
|
|
if (isset($_GET['token']) && ctype_alnum($_GET['token'])) {
|
|
echo $tfa->getQRCodeImageAsDataUri($_SESSION['mailcow_cc_username'], $_GET['token']);
|
|
}
|
|
?>
|