X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Fmailmgr.php;h=e3a970c3c713d76cc91ffc3b2bcb279ed99bb7a5;hb=HEAD;hp=91d73c7fca8f75704aac5927c0d0fb8cdbda55ed;hpb=106cdff81cb1cd42de2bc38ea81d0b37bd301f1f;p=brisk.git diff --git a/web/mailmgr.php b/web/mailmgr.php index 91d73c7..e3a970c 100644 --- a/web/mailmgr.php +++ b/web/mailmgr.php @@ -3,7 +3,7 @@ * brisk - mailmgr.php * * Copyright (C) 2014 Matteo Nastasi - * mailto: nastasi@alternativeoutput.it + * mailto: nastasi@alternativeoutput.it * matteo.nastasi@milug.org * web: http://www.alternativeoutput.it * @@ -22,6 +22,19 @@ * */ +foreach (array("HTTP_HOST", "DOCUMENT_ROOT") as $i) { + if (isset($_SERVER[$i])) { + $$i = $_SERVER[$i]; + } + } + +foreach (array("f_act", "f_code", "f_hash") as $i) { + if (isset($_GET[$i])) { + $$i = $_GET[$i]; + } + } + + $G_base = ""; ini_set("max_execution_time", "240"); @@ -59,9 +72,9 @@ function main() { break; } - if (($bdb->user_update_flag_ty($mai->ucode, - USER_FLAG_TY_DISABLE, USER_DIS_REA_NU_MAILED, - USER_FLAG_TY_DISABLE, USER_DIS_REA_NU_TOBECHK)) == FALSE) { + if (($bdb->user_update_flag_ty($mai->ucode, USER_FLAG_TY_DISABLE, + TRUE, USER_DIS_REA_NU_MAILED, + TRUE, USER_DIS_REA_NU_TOBECHK)) == FALSE) { $errcode = 10003; break; } @@ -72,12 +85,18 @@ function main() { } $bdb->transaction('COMMIT'); - singlemsg("Verifica della e-mail andata a buon fine.", "Verifica della e-mail andata a buon fine."); + singlemsg("Verifica della e-mail andata a buon fine.", "Verifica della e-mail andata a buon fine.
Riceverai a breve una email con la tua nuova password.
Benvenuto!"); $errcode = 0; } while (FALSE); if ($errcode) { - singlemsg("E' occorso un errore durante la verifica della e-mail.", - sprintf("E' occorso un errore durante la verifica della e-mail.

Codice d'errore: %d.
", $errcode)); + if ($errcode == 10002) { + singlemsg("L'email è già stata verificata con successo.", + "L'email è già stata verificata con successo, ora attenda che le venga recapitata la password."); + } + else { + singlemsg("E' occorso un errore durante la verifica della e-mail.", + sprintf("E' occorso un errore durante la verifica della e-mail.

Codice d'errore: %d.
", $errcode)); + } $bdb->transaction('ROLLBACK'); } } @@ -86,4 +105,4 @@ function main() { } main(); -?> \ No newline at end of file +?>