Self Help Documentation
-
Getting Started
-
API functions
-
-
- email/listemailaccounts
- email/changeemailquota
- email/createemailaccount
- email/removeemailaccount
- email/emailaccountpassword
- email/listemailforwarders
- email/addemailforwarder
- email/removeemailforwarder
- email/getmailroute
- email/setmailroute
- email/listemailautoresponders
- email/addemailautoresponder
- email/removeemailautoresponder
- email/editemailautoresponder
- email/togglespamassassin
- email/setspamassassinscore
- email/listspamassassinsenders
- email/addspamassassinsender
- email/removespamassassinsender
- email/getdefaultaddressstatus
- email/setdefaultaddressstatus
- email/listemailfilters
- email/addemailfilter
- email/removeemailfilter
-
- domain/listdomains
- domain/adddomain
- domain/changedomainpath
- domain/changemodsecurity
- domain/removedomain
- domain/listsubdomains
- domain/addsubdomain
- domain/changesubdomainpath
- domain/removesubdomain
- domain/listredirects
- domain/createredirect
- domain/removeredirect
- domain/listdnszone
- domain/adddnsrecord
- domain/editdnszone
-
-
-
- accounts/listaccounts
- accounts/wwwacct
- accounts/changeuserpassword
- accounts/changedomain
- accounts/changeuseremail
- accounts/changequota
- accounts/suspendaccount
- accounts/unsuspendaccount
- accounts/terminateaccount
- accounts/listpackages
- accounts/createpackage
- accounts/modifypackage
- accounts/removepackage
- accounts/grantSSH
- accounts/editprivileges
-
< All Topics
email/addspamassassinsender
PostedSeptember 16, 2022
UpdatedApril 26, 2023
Description
Adds a new sender in SpamAssassin’s white or blacklist for an existing SPanel user account.
Parameters
Field | Type | Required | Description |
---|---|---|---|
token | string | Yes | Authorizing API token – check API Basics for more information. |
accountuser | string | Yes | The SPanel user account that is being managed or viewed. |
action | string | Yes | The category and function being executed. |
type | string | Yes | ‘blacklist’ or ‘whitelist’. |
sender | string | Yes | The sender domain to add. |
Example
PHP
PHP
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
$endpointUrl = 'https://123.123.123.123/spanel/api.php'; $postData = [ 'token' => 'provided_auth_token', 'accountuser' => 'spanelio', 'action' => 'email/addspamassassinsender', 'type' => 'whitelist', 'sender' => 'testwhitelist.com' ]; $ch = curl_init(); curl_setopt( $ch, CURLOPT_URL, $endpointUrl); curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt( $ch, CURLOPT_POST, true); curl_setopt( $ch, CURLOPT_POSTFIELDS, http_build_query($postData)); curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt( $ch, CURLOPT_SSL_VERIFYHOST, false); $jsonOutput = curl_exec( $ch ); |
You can find more information about the Endpoint URL in our API Basics article.
Output
JSON
PHP
1 2 3 4 5 6 7 8 9 |
{ "result": "success", "data": { "type": 2, "msg": [ "testwhitelist.com has been added to the SA whitelist for user spanelio" ] } } |
Table of Contents