summaryrefslogtreecommitdiff
path: root/cacert/www/account.php
blob: 434053f1f399a91586114c94e6de270daf0d1ac2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<? /*
    LibreSSL - CAcert web application
    Copyright (C) 2004-2008  CAcert Inc.

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; version 2 of the License.

    This program 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 General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
*/ ?>
<?
	include("../includes/account.php");

	if($id == 6)
	{
		include_once("../pages/account/6.php");
		exit;
	} else if($id == 19) {
		include_once("../pages/account/19.php");
		exit;
	} else if($oldid == 40 && $_REQUEST['process'] != "" && $_POST['support'] != "yes") {
		$who = stripslashes($_REQUEST['who']);
		$email = stripslashes($_REQUEST['email']);
		$subject = stripslashes($_REQUEST['subject']);
		$message = stripslashes($_REQUEST['message']);

                $message = "From: $who\nEmail: $email\nSubject: $subject\n\nMessage:\n".$message;

		sendmail("support@cacert.org", "[CAcert.org] ".$subject, $message, $email, $email, "", "CAcert Website");
                showheader(_("Welcome to CAcert.org"));
                echo _("Your message has been sent.");
                showfooter();
                exit;
	} else if($oldid == 40 && $_REQUEST['process'] != "" && $_POST['support'] == "yes") {
		$who = stripslashes($_REQUEST['who']);
		$email = stripslashes($_REQUEST['email']);
		$subject = stripslashes($_REQUEST['subject']);
		$message = stripslashes($_REQUEST['message']);


                $message = "From: $who\nEmail: $email\nSubject: $subject\n\nMessage:\n".$message;

                sendmail("cacert-support@lists.cacert.org, $email", "[website form email]: ".$subject, $message, "website-form@cacert.org", "cacert-support@lists.cacert.org, $email", "", "CAcert Website");
		
                showheader(_("Welcome to CAcert.org"));
                echo _("Your message has been sent to the general support list.");
                showfooter();
                exit;
	} else if($id == 51 && $_GET['img'] == "show") {
		$query = "select * from `tverify` where `id`='".intval($_GET['photoid'])."' and `modified`=0";
		$res = mysql_query($query);
		if(mysql_num_rows($res))
		{
			$row = mysql_fetch_assoc($res);
			readfile($row['photoid']);
		} else {
			die("No such file.");
		}
		exit;
	} else {
		showheader(_("My CAcert.org Account!"));
		includeit($id, "account");
		showfooter();
		exit;
	}
?>