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
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 |