cPanel API 2 Functions - EmailTrack::search

Description

This function displays tracking information for the messages in the account's message queue.

Warning:

We strongly recommend that you use UAPI instead of cPanel API 2. However, no equivalent UAPI function exists.

 

Examples 


 WHM API (JSON)

https://hostname.example.com:2087/cpsess##########/json-api/cpanel?cpanel_jsonapi_user=user&cpanel_jsonapi_apiversion=2&cpanel_jsonapi_module=EmailTrack&cpanel_jsonapi_func=search

 LiveAPI PHP Class

$cpanel new CPANEL(); // Connect to cPanel - only do this once.
  
// Displays tracking information for email on the account.
$email_search $cpanel->api2(
    'EmailTrack''search'
 );

 LiveAPI Perl Module

my $cpliveapi = Cpanel::LiveAPI->new(); # Connect to cPanel - only do this once.
  
# Displays tracking information for email on the account.
my $email_search $cpliveapi->api2(
    'EmailTrack''search'
 );

 cPanel Tag System (deprecated)

Warning:

In cPanel & WHM version 11.30 and later, cPanel tags are deprecated. We strongly recommend that youonly use the LiveAPI system to call the cPanel APIs.

cPanel API 2 calls that use cPanel tags vary widely in code syntax and in their output. For more information, read our Deprecated cPanel Tag Usage documentation. Examples are only present in order to help developers move from the old cPanel tag system to our LiveAPI.

 

 Command Line

cpapi2 --user=username EmailTrack search

 

Notes:

  • You must URI-encode values.
  • username represents your account-level username.

 Output (JSON)

{
   "cpanelresult" : {
      "apiversion" : 2,
      "data" : [],
      "event" : {
         "result" : 1
      },
      "func" : "search",
      "metadata" : {
         "overflowed" : 0
      },
      "module" : "EmailTrack"
   }
}

 

Note:

Use cPanel's API Shell interface (Home >> Advanced >> API Shell) to directly test cPanel API calls.

 

Parameters

This function does not accept parameters.

Returns

Return

Type

Description

Possible values

Example

transport

string

The mail transfer agent (MTA)

A valid cPanel-supported MTA.

Exim

ip

string

The recipient's IP address.

A valid IP address.

192.168.0.1

transport_is_remote

Boolean

Whether the MTA was remote.

·     1 — Remote.

·     0 — Not remote.

0

deliveredto

string

The delivery attempt's final destination.

A valid email address.

user@example.com

size

integer

The size of the message, in bytes.

A positive integer that represents the size of the messages, measured in bytes..

12345

deliveryuser

string

The user that delivered the mail.

A valid username.

postmaster

sendunixtime

string

The message's send time.

A valid time stamp, in Unix time format.

1415392926

senderhost

string

The sender's hostname.

A valid hostname.

hostname.example.com

domain

string

The sender's domain name.

A valid domain name.

example.com

actionunixtime

string

The time of the delivery attempt.

A valid time stamp, in Unix time format.

1415392926

msgid

string

The message ID.

A valid string.

This is a message id

user

string

The sender's username.

A valid username.

sender

recipient

string

The recipient's email address.

A valid email address.

user@example.com

actiontime

string

The time that the delivery attempt occurred, in human-readable format.

A valid timestamp, inYYYY-DD-MM HH:MM:SS format, where:

·     YYYY represents the year.

·     DD represents the day.

·     MM represents the month.

·      HH represents the hour.

·     MM represents the minute.

·     SS represents the second.

2014-02-06 14:17:51

deliverydomain

string

The recipient's domain.

A valid domain name.

example.com

host

string

The hostname that received the message.

A valid hostname.

hostname.example.com

router

string

The method that the system uses to deliver mail to the specified address.

lookuphost is theonly possible value.

lookuphost

message

string

The action that the mail server executed.

A valid string.

Domain example.com has exceeded the max defers and failures per hour (5/5 (100%)) allowed. Message discarded).

senderauth

string

The user's authentication method.

A valid authentication method.

DKIM

sender

string

The sender's full email address.

A valid email address.

sender@example.com

spamscore

integer

The message's Apache SpamAssassin™ score.

A positive integer.

1

senderip

string

The sender's IP address.

A valid IP address.

192.168.0.2

type

string

The delivery status.

·     success

·     defer

·     failure

·     inprogress

success

reason

string

A reason for failure.

Note:

This functiononlyreturns areasonvalue if it failed.

A string that describes the error.

This is an error message.

result

Boolean

Whether the function succeeded.

·     1 — The function succeeded.

·     0 — The function failed.

1

  

 
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

The cPanel Interface

For  cPanel  &  WHM  version  58 Overview The cPanel interface is...

User Preferences

For cPanel & WHM version 58 Overview This document outlines how to access your cPanel...

Manage External Authentications

For cPanel & WHM version 58 Overview Manage credentials Additional documentation...

What is cPanelID?

In This Article:  Overview ServicesHow to get a cPanelID cPanelID External...

Guide to cPanel Interface Customization - cPanel Style Development

Introduction You can develop custom styles that modify the appearance of the cPanel interface....