API Module SpamExperts createDomainSeRequest
From Openprovider API documentation
(Difference between revisions)
WikiSysop (Talk | contribs)
(Created page with '==Module SpamExperts > Create Domain== {| border="1" cellpadding="4" |- style="background-color:#BBBBBB;" |'''Module''' |SpamExperts |- style="background-color:#EEEEEE;" |'''Comm…')
Newer edit →
(Created page with '==Module SpamExperts > Create Domain== {| border="1" cellpadding="4" |- style="background-color:#BBBBBB;" |'''Module''' |SpamExperts |- style="background-color:#EEEEEE;" |'''Comm…')
Newer edit →
Revision as of 09:57, 9 September 2010
Contents |
Module SpamExperts > Create Domain
| Module | SpamExperts |
| Command name | createDomainSeRequest |
| Use | Adds a domain filter to the active SpamExperts bundle |
| Input |
|
| Output | Even if filter was added correctly, output might include warnings from SpamExperts |
Examples
Using PHP class
$request = new OP_Request;
$request->setCommand('createDomainSeRequest')
->setAuth(array('username' => $username, 'password' => $password))
->setArgs(array(
'domainName' => 'newfilter.nl',
'destinations' => array(
array('hostname' => 'mail.newfilter.nl', 'port' => 25),
array('hostname' => 'fallback.newfilter.nl', 'port' => 100)
),
'aliases' => array(
'otherfilter.nl',
'alias.com'
)
));
Raw XML
<?xml version="1.0" encoding="UTF-8"?>
<openXML>
<credentials>
<username>username</username>
<password>password</password>
</credentials>
<createDomainSeRequest>
<domainName>newfilter.nl</domainName>
<destinations>
<array>
<item>
<hostname>mail.newfilter.nl</hostname>
<port>25</port>
</item>
<item>
<hostname>fallback.newfilter.nl</hostname>
<port>100</port>
</item>
</array>
</destinations>
<aliases>
<array>
<item>otherfilter.nl</item>
<item>alias.com</item>
</array>
</aliases>
</createDomainSeRequest>
</openXML>
<?xml version="1.0" encoding="UTF-8"?>
<openXML>
<reply>
< code>0</code>
<desc />
<data>
<id>214</id>
<message>WARNING: Unable to deliver mail through host mail.newfilter.nl:25
WARNING: Unable to deliver mail through host fallback.newfilter.nl:100
WARNING: Unable to resolve domain: newfilter.nl
WARNING: Unable to resolve domain: otherfilter.nl
</message>
</data>
</reply>
</openXML>