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_Metadata { public function __construct(Mandrill $master) { $this->master = $master; } /** * Get the list of custom metadata fields indexed for the account. * @return array the custom metadata fields for the account * - return[] struct the individual custom metadata field info * - name string the unique identifier of the metadata field to update * - state string the current state of the metadata field, one of "active", "delete", or "index" * - view_template string Mustache template to control how the metadata is rendered in your activity log */ public function getList() { $_params = array(); return $this->master->call('metadata/list', $_params); } /** * Add a new custom metadata field to be indexed for the account. * @param string $name a unique identifier for the metadata field * @param string $view_template optional Mustache template to control how the metadata is rendered in your activity log * @return struct the information saved about the new metadata field * - name string the unique identifier of the metadata field to update * - state string the current state of the metadata field, one of "active", "delete", or "index" * - view_template string Mustache template to control how the metadata is rendered in your activity log */ public function add($name, $view_template=null) { $_params = array("name" => $name, "view_template" => $view_template); return $this->master->call('metadata/add', $_params); } /** * Update an existing custom metadata field. * @param string $name the unique identifier of the metadata field to update * @param string $view_template optional Mustache template to control how the metadata is rendered in your activity log * @return struct the information for the updated metadata field * - name string the unique identifier of the metadata field to update * - state string the current state of the metadata field, one of "active", "delete", or "index" * - view_template string Mustache template to control how the metadata is rendered in your activity log */ public function update($name, $view_template) { $_params = array("name" => $name, "view_template" => $view_template); return $this->master->call('metadata/update', $_params); } /** * Delete an existing custom metadata field. Deletion isn't instataneous, and /metadata/list will continue to return the field until the asynchronous deletion process is complete. * @param string $name the unique identifier of the metadata field to update * @return struct the information for the deleted metadata field * - name string the unique identifier of the metadata field to update * - state string the current state of the metadata field, one of "active", "delete", or "index" * - view_template string Mustache template to control how the metadata is rendered in your activity log */ public function delete($name) { $_params = array("name" => $name); return $this->master->call('metadata/delete', $_params); } }