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_Urls { public function __construct(Mandrill $master) { $this->master = $master; } /** * Get the 100 most clicked URLs * @return array the 100 most clicked URLs and their stats * - return[] struct the individual URL stats * - url string the URL to be tracked * - sent integer the number of emails that contained the URL * - clicks integer the number of times the URL has been clicked from a tracked email * - unique_clicks integer the number of unique emails that have generated clicks for this URL */ public function getList() { $_params = array(); return $this->master->call('urls/list', $_params); } /** * Return the 100 most clicked URLs that match the search query given * @param string $q a search query * @return array the 100 most clicked URLs matching the search query * - return[] struct the URL matching the query * - url string the URL to be tracked * - sent integer the number of emails that contained the URL * - clicks integer the number of times the URL has been clicked from a tracked email * - unique_clicks integer the number of unique emails that have generated clicks for this URL */ public function search($q) { $_params = array("q" => $q); return $this->master->call('urls/search', $_params); } /** * Return the recent history (hourly stats for the last 30 days) for a url * @param string $url an existing URL * @return array the array of history information * - return[] struct the information for a single hour * - time string the hour as a UTC date string in YYYY-MM-DD HH:MM:SS format * - sent integer the number of emails that were sent with the URL during the hour * - clicks integer the number of times the URL was clicked during the hour * - unique_clicks integer the number of unique clicks generated for emails sent with this URL during the hour */ public function timeSeries($url) { $_params = array("url" => $url); return $this->master->call('urls/time-series', $_params); } /** * Get the list of tracking domains set up for this account * @return array the tracking domains and their status * - return[] struct the individual tracking domain * - domain string the tracking domain name * - created_at string the date and time that the tracking domain was added as a UTC string in YYYY-MM-DD HH:MM:SS format * - last_tested_at string when the domain's DNS settings were last tested as a UTC string in YYYY-MM-DD HH:MM:SS format * - cname struct details about the domain's CNAME record * - valid boolean whether the domain's CNAME record is valid for use with Mandrill * - valid_after string when the domain's CNAME record will be considered valid for use with Mandrill as a UTC string in YYYY-MM-DD HH:MM:SS format. If set, this indicates that the record is valid now, but was previously invalid, and Mandrill will wait until the record's TTL elapses to start using it. * - error string an error describing the CNAME record, or null if the record is correct * - valid_tracking boolean whether this domain can be used as a tracking domain for email. */ public function trackingDomains() { $_params = array(); return $this->master->call('urls/tracking-domains', $_params); } /** * Add a tracking domain to your account * @param string $domain a domain name * @return struct information about the domain * - domain string the tracking domain name * - created_at string the date and time that the tracking domain was added as a UTC string in YYYY-MM-DD HH:MM:SS format * - last_tested_at string when the domain's DNS settings were last tested as a UTC string in YYYY-MM-DD HH:MM:SS format * - cname struct details about the domain's CNAME record * - valid boolean whether the domain's CNAME record is valid for use with Mandrill * - valid_after string when the domain's CNAME record will be considered valid for use with Mandrill as a UTC string in YYYY-MM-DD HH:MM:SS format. If set, this indicates that the record is valid now, but was previously invalid, and Mandrill will wait until the record's TTL elapses to start using it. * - error string an error describing the CNAME record, or null if the record is correct * - valid_tracking boolean whether this domain can be used as a tracking domain for email. */ public function addTrackingDomain($domain) { $_params = array("domain" => $domain); return $this->master->call('urls/add-tracking-domain', $_params); } /** * Checks the CNAME settings for a tracking domain. The domain must have been added already with the add-tracking-domain call * @param string $domain an existing tracking domain name * @return struct information about the tracking domain * - domain string the tracking domain name * - created_at string the date and time that the tracking domain was added as a UTC string in YYYY-MM-DD HH:MM:SS format * - last_tested_at string when the domain's DNS settings were last tested as a UTC string in YYYY-MM-DD HH:MM:SS format * - cname struct details about the domain's CNAME record * - valid boolean whether the domain's CNAME record is valid for use with Mandrill * - valid_after string when the domain's CNAME record will be considered valid for use with Mandrill as a UTC string in YYYY-MM-DD HH:MM:SS format. If set, this indicates that the record is valid now, but was previously invalid, and Mandrill will wait until the record's TTL elapses to start using it. * - error string an error describing the CNAME record, or null if the record is correct * - valid_tracking boolean whether this domain can be used as a tracking domain for email. */ public function checkTrackingDomain($domain) { $_params = array("domain" => $domain); return $this->master->call('urls/check-tracking-domain', $_params); } }