-
Notifications
You must be signed in to change notification settings - Fork 0
/
apiconfig.php
executable file
·63 lines (55 loc) · 2.25 KB
/
apiconfig.php
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
<?php
/**
* Email Account Propogation REST Services API
*
* You may not change or alter any portion of this comment or credits
* of supporting developers from this source code or any supporting source code
* which is considered copyrighted (c) material of the original comment or credit authors.
* 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.
*
* @copyright Chronolabs Cooperative http://syd.au.snails.email
* @license ACADEMIC APL 2 (https://sourceforge.net/u/chronolabscoop/wiki/Academic%20Public%20License%2C%20version%202.0/)
* @license GNU GPL 3 (http://www.gnu.org/licenses/gpl.html)
* @package emails-api
* @since 1.1.11
* @author Dr. Simon Antony Roberts <[email protected]>
* @version 1.1.11
* @description A REST API for the creation and management of emails/forwarders and domain name parks for email
* @link http://internetfounder.wordpress.com
* @link https://github.com/Chronolabs-Cooperative/Emails-API-PHP
* @link https://sourceforge.net/p/chronolabs-cooperative
* @link https://facebook.com/ChronolabsCoop
* @link https://twitter.com/ChronolabsCoop
*
*/
if (!is_file(__DIR__ . DIRECTORY_SEPARATOR . 'mainfile.php'))
{
header('Location: ' . "./install");
exit(0);
}
require_once __DIR__ . DIRECTORY_SEPARATOR . 'mainfile.php';
require_once __DIR__ . DIRECTORY_SEPARATOR . 'include' . DIRECTORY_SEPARATOR . 'functions.php';
/**
* Opens Access Origin Via networking Route NPN
*/
header('Access-Control-Allow-Origin: *');
header('Origin: *');
/**
* Turns of GZ Lib Compression for Document Incompatibility
*/
ini_set("zlib.output_compression", 'Off');
ini_set("zlib.output_compression_level", -1);
/**
*
* @var constants
*/
define('API_CACHE_SECONDS', 93);
// Seeds the random
mt_srand(mt_rand(time(), microtime(true) * time() * time()));
mt_srand(mt_rand(time(), microtime(true) * time() * time()));
mt_srand(mt_rand(time(), microtime(true) * time() * time()));
mt_srand(mt_rand(time(), microtime(true) * time() * time()));
srand(mt_rand(time(), microtime(true) * time() * time()));
?>