• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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