简体   繁体   中英

Connection refused error by soap-client curl while connecting to my zimbra server from cakephp2.6 app from my website?

I am testing zimbra server.I have details of configured linux zimbra server like : ZIMBRA_LOGIN, ZIMBRA_PASS, ZIMBRA_SERVER, ZIMBRA_PORT As in script showing on url below :
Url : https://github.com/libersoft/zcs-php

I have defined my login details as on its documented in above url

define('ZIMBRA_LOGIN', 'my_username');
define('ZIMBRA_PASS', 'myPass');
define('ZIMBRA_SERVER', 'mymail.serverdomain.com');
define('ZIMBRA_PORT', '7071');

I have fill my login details, but it respond me back with this error.
I am unable to find where did i mistake, it only gives me this error :

https://docs.google.com/file/d/0Bx5nzfr3qxekbjBXZF94clEwV3M .

Is there any reference for connecting and perform operations of create users for Linux Zimbra server from PHP or CakePHP application ?

The issue here is mails.mytestingserver.com is unable to resolve. Have you tried communicating using the IP address?

define('ZIMBRA_SERVER', 'mymail.serverdomain.com'); define('ZIMBRA_PORT', '7071');

Port 7071/9071 is the admin console, you would want to attempt to use port 80 or 443 here.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM