Fixes for sending pool
[mailer.git] / inc / security.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 09/05/2003 *
4  * ===============                              Last change: 11/10/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : security.php                                     *
8  * -------------------------------------------------------------------- *
9  * Short description : Access denied!                                   *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Zugriff verweigert!                              *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 echo "<HTML>
35 <HEAD>
36 <TITLE>Protected file ".basename($_SERVER['PHP_SELF'])." - ACCESS DENIED!</TITLE>
37 </HEAD>
38 <BODY bgcolor=\"#880000\" text=\"#FFFFFF\">
39 <DIV align=\"center\">
40 <TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
41 <TR>
42   <TD align=\"center\"><U><STRONG><BIG><BIG>A&nbsp;C&nbsp;C&nbsp;E&nbsp;S&nbsp;S&nbsp;&nbsp;&nbsp;D&nbsp;E&nbsp;N&nbsp;I&nbsp;E&nbsp;D&nbsp;!</BIG></BIG></STRONG></U></TD>
43 </TR>
44 <TR><TD height=\"10\"></TD></TR>
45 <TR>
46   <TD align=\"center\">
47     You have tried to open a protected file! Your access has been logged in the server's logfile with your IP number:
48   </TD>
49 </TR>
50 <TR><TD height=\"10\"></TD></TR>
51 <TR>
52   <TD align=\"center\">
53     <STRONG>".getenv('REMOTE_ADDR')."</STRONG>
54   </TD>
55 </TR>
56 </TABLE>
57 </DIV>
58 </BODY>
59 </HTML>\n";
60 exit();
61 //
62 ?>