• The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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