forked from Disroot/gpg-lacre
40 lines
1.2 KiB
PHP
40 lines
1.2 KiB
PHP
<?php
|
|
/*
|
|
|
|
gpg-mailgate
|
|
|
|
This file is part of the gpg-mailgate source code.
|
|
|
|
gpg-mailgate is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
gpg-mailgate source code is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with gpg-mailgate source code. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
require_once("config.php");
|
|
require_once("include/common.php");
|
|
require_once("include/dbconnect.php");
|
|
require_once("include/pgp.php");
|
|
|
|
if(isset($_POST['email']) && isset($_POST['key'])) {
|
|
$result = requestPGP($_POST['email'], $_POST['key']);
|
|
|
|
if($result === true) {
|
|
get_page("home", array('message' => 'Key submission successful. Please check your email to confirm your email address.'));
|
|
} else {
|
|
get_page("home", array('message' => 'Error: ' . $result . '.'));
|
|
}
|
|
} else {
|
|
get_page("home");
|
|
}
|
|
|
|
?>
|