• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

plesk 1.6 api + mail alias

J

joshua strebel

Guest
I am trying to add a mail alias via the api 1.6 with plesk 9.2.1


$alias = 'foo'
Code:
<mail>
			<update>
				<set>
					<filter>
					<domain_id>$domainId</domain_id>
					<mailname>
					<name>$n</name>
					<alias>$alias</alias>
					</mailname>
					</filter>
				</set>
			</update>
		</mail>

And get back

Code:
   [status] => error
            [errcode] => 1029
            [errtext] => Authentification method is not specified

when passing the clients username,password in the packet. Is this command only work with admin credentials?

If I do use admin creds in packet..
I get

Code:
[status] => error
                                    [errcode] => 1023
                                    [errtext] =>  : Invalid mail alias.

Any have a code example of setting a mail alias by the api?
 
ANswer to my own question...

update->add
Code:
<mail>
  <update>
    <add>
 
Back
Top