Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
crons /
Mandrill /
Delete
Unzip
Name
Size
Permission
Date
Action
Exceptions.php
3.52
KB
-rw-r--r--
2016-02-10 08:42
Exports.php
7.11
KB
-rw-r--r--
2016-02-10 08:42
Inbound.php
7.27
KB
-rw-r--r--
2016-02-10 08:42
Internal.php
129
B
-rw-r--r--
2016-02-10 08:42
Ips.php
17.04
KB
-rw-r--r--
2016-02-10 08:42
Messages.php
34.65
KB
-rw-r--r--
2016-02-10 08:42
Metadata.php
3.2
KB
-rw-r--r--
2016-02-10 08:42
Rejects.php
4.95
KB
-rw-r--r--
2016-02-10 08:42
Senders.php
17.98
KB
-rw-r--r--
2016-02-10 08:42
Subaccounts.php
12.79
KB
-rw-r--r--
2016-02-10 08:42
Tags.php
12.48
KB
-rw-r--r--
2016-02-10 08:42
Templates.php
17.97
KB
-rw-r--r--
2016-02-10 08:42
Urls.php
6.25
KB
-rw-r--r--
2016-02-10 08:42
Users.php
10.15
KB
-rw-r--r--
2016-02-10 08:42
Webhooks.php
7.79
KB
-rw-r--r--
2016-02-10 08:42
Whitelists.php
2.09
KB
-rw-r--r--
2016-02-10 08:42
Save
Rename
<?php class Mandrill_Whitelists { public function __construct(Mandrill $master) { $this->master = $master; } /** * Adds an email to your email rejection whitelist. If the address is currently on your blacklist, that blacklist entry will be removed automatically. * @param string $email an email address to add to the whitelist * @param string $comment an optional description of why the email was whitelisted * @return struct a status object containing the address and the result of the operation * - email string the email address you provided * - added boolean whether the operation succeeded */ public function add($email, $comment=null) { $_params = array("email" => $email, "comment" => $comment); return $this->master->call('whitelists/add', $_params); } /** * Retrieves your email rejection whitelist. You can provide an email address or search prefix to limit the results. Returns up to 1000 results. * @param string $email an optional email address or prefix to search by * @return array up to 1000 whitelist entries * - return[] struct the information for each whitelist entry * - email string the email that is whitelisted * - detail string a description of why the email was whitelisted * - created_at string when the email was added to the whitelist */ public function getList($email=null) { $_params = array("email" => $email); return $this->master->call('whitelists/list', $_params); } /** * Removes an email address from the whitelist. * @param string $email the email address to remove from the whitelist * @return struct a status object containing the address and whether the deletion succeeded * - email string the email address that was removed from the blacklist * - deleted boolean whether the address was deleted successfully */ public function delete($email) { $_params = array("email" => $email); return $this->master->call('whitelists/delete', $_params); } }