Re: Horde ActiveSync with outlook 2013 problem on Centos 6.5 + apache on virtualmin
Michael J Rubinsky <[email protected]> Sun, 07 Sep 2014 09:25:29 -0400
| Newsgroups | gmane.comp.horde.sync |
|---|---|
| Message-ID | <20140907092529.Horde.9emkoOtIwUFCF6CtpkKDeA3@h4.theupstairsroom.com> |
Quoting mn 320 <[email protected]>: > Hello list, > > Looks like my server is missing a function but I can’t find out which > function is missing. I see login to imap is successful but it disconnects > immediately from the server. What makes you think something is "missing"? What is it you are trying to accomplish? What is the actual behavior you see? > Could someone point me to the right direction? How can I find out what is > calling “listAPIs()” from “Connector.php” and what php module is not > installed? Horde_Core_ActiveSync_COnnector::listAPIs() is called from Horde_Core_ActiveSync_Driver::listFolders() and is used to determine what "collections" to tell the ActiveSync client about (Contacts, Calendar etc...). > Here is my config file: > > ----------------------------------------------------------------------------------------------------------------------------------- > > $conf['vhosts'] = false; > $conf['debug_level'] = E_ALL & ~E_NOTICE; > $conf['max_exec_time'] = 0; > $conf['compress_pages'] = true; > $conf['secret_key'] = 'xxxxxxxxxxxxxxxxxxx'; > $conf['umask'] = 077; > $conf['testdisable'] = true; > $conf['use_ssl'] = 1; > $conf['server']['name'] = $_SERVER['SERVER_NAME']; > $conf['urls']['token_lifetime'] = 30; > $conf['urls']['hmac_lifetime'] = 30; > $conf['urls']['pretty'] = false; > $conf['safe_ips'] = array(); > $conf['session']['name'] = 'MMAIL'; > $conf['session']['use_only_cookies'] = true; > $conf['session']['timeout'] = 0; > $conf['session']['cache_limiter'] = 'nocache'; > $conf['session']['max_time'] = 72000; > $conf['cookie']['domain'] = $_SERVER['SERVER_NAME']; > $conf['cookie']['path'] = '/'; > $conf['sql']['username'] = '[email protected]'; > $conf['sql']['password'] = 'xxxxxxxxxxxxxxxxxxx'; > $conf['sql']['hostspec'] = '127.0.0.1'; > $conf['sql']['port'] = 3306; > $conf['sql']['protocol'] = 'tcp'; > $conf['sql']['database'] = 'horde'; > $conf['sql']['charset'] = 'utf-8'; > $conf['sql']['ssl'] = true; > $conf['sql']['splitread'] = false; > $conf['sql']['phptype'] = 'mysqli'; > $conf['nosql']['phptype'] = false; > $conf['ldap']['useldap'] = false; > $conf['auth']['admins'] = array('[email protected] > '); > $conf['auth']['checkip'] = true; > $conf['auth']['checkbrowser'] = true; > $conf['auth']['resetpassword'] = false; > $conf['auth']['alternate_login'] = false; > $conf['auth']['redirect_on_logout'] = false; > $conf['auth']['list_users'] = 'list'; > $conf['auth']['params']['app'] = 'imp'; > $conf['auth']['driver'] = 'application'; > $conf['auth']['params']['count_bad_logins'] = true; > $conf['auth']['params']['login_block'] = true; > $conf['auth']['params']['login_block_count'] = 5; > $conf['auth']['params']['login_block_time'] = 5; > $conf['signup']['allow'] = false; > $conf['log']['priority'] = 'DEBUG'; > $conf['log']['ident'] = 'HORDE'; > $conf['log']['name'] = > '/home/xxxxxxxxxxxxxxxxxxx/public_html/hmail/horde.log'; > $conf['log']['params']['append'] = true; > $conf['log']['params']['format'] = 'default'; > $conf['log']['type'] = 'file'; > $conf['log']['enabled'] = true; > $conf['log_accesskeys'] = false; > $conf['prefs']['maxsize'] = 65535; > $conf['prefs']['driver'] = 'Session'; > $conf['alarms']['params']['driverconfig'] = 'horde'; > $conf['alarms']['params']['ttl'] = 300; > $conf['alarms']['driver'] = 'Sql'; > $conf['group']['driverconfig'] = 'horde'; > $conf['group']['driver'] = 'Sql'; > $conf['perms']['driverconfig'] = 'horde'; > $conf['perms']['driver'] = 'Sql'; > $conf['share']['no_sharing'] = false; > $conf['share']['auto_create'] = true; > $conf['share']['world'] = true; > $conf['share']['any_group'] = false; > $conf['share']['hidden'] = false; > $conf['share']['cache'] = false; > $conf['share']['driver'] = 'Sqlng'; > $conf['cache']['default_lifetime'] = 86400; > $conf['cache']['params']['sub'] = 0; > $conf['cache']['driver'] = 'File'; > $conf['cache']['use_memorycache'] = ''; > $conf['cachecssparams']['url_version_param'] = true; > $conf['cachecss'] = false; > $conf['cachejsparams']['url_version_param'] = true; > $conf['cachejs'] = false; > $conf['cachethemes'] = false; > $conf['lock']['params']['driverconfig'] = 'horde'; > $conf['lock']['driver'] = 'Sql'; > $conf['token']['params']['driverconfig'] = 'horde'; > $conf['token']['driver'] = 'Sql'; > $conf['history']['params']['driverconfig'] = 'horde'; > $conf['history']['driver'] = 'Sql'; > $conf['davstorage']['params']['driverconfig'] = 'horde'; > $conf['davstorage']['driver'] = 'Sql'; > $conf['mailer']['params']['port'] = 587; > $conf['mailer']['params']['username_auth'] = true; > $conf['mailer']['params']['password_auth'] = true; > $conf['mailer']['params']['auth'] = true; > $conf['mailer']['params']['lmtp'] = false; > $conf['mailer']['type'] = 'smtp'; > $conf['vfs']['params']['driverconfig'] = 'horde'; > $conf['vfs']['type'] = 'Sql'; > $conf['sessionhandler']['type'] = 'Builtin'; > $conf['sessionhandler']['hashtable'] = false; > $conf['spell']['driver'] = ''; > $conf['gnupg']['keyserver'] = array('pool.sks-keyservers.net'); > $conf['gnupg']['timeout'] = 10; > $conf['openssl']['cafile'] = '/home/xxxxxxxxxxxxxxxxxxx/ssl.cert'; > $conf['openssl']['path'] = '/usr/bin/openssl'; > $conf['nobase64_img'] = false; > $conf['image']['driver'] = 'Imagick'; > $conf['exif']['driver'] = 'Php'; > $conf['timezone']['location'] = 'ftp://ftp.iana.org/tz/tzdata-latest.tar.gz > '; > $conf['problems']['ticket_params'] = array(); > $conf['problems']['tickets'] = true; > $conf['problems']['attachments'] = true; > $conf['menu']['links']['help'] = 'never'; > $conf['menu']['links']['prefs'] = 'authenticated'; > $conf['menu']['links']['problem'] = 'never'; > $conf['menu']['links']['login'] = 'all'; > $conf['menu']['links']['logout'] = 'authenticated'; > $conf['portal']['fixed_blocks'] = array(); > $conf['accounts']['driver'] = 'null'; > $conf['user']['verify_from_addr'] = false; > $conf['user']['select_view'] = true; > $conf['facebook']['enabled'] = false; > $conf['twitter']['enabled'] = false; > $conf['urlshortener'] = false; > $conf['weather']['provider'] = false; > $conf['imap']['server'] = 'localhost'; > $conf['imap']['port'] = 993; > $conf['imap']['secure'] = 'ssl'; > $conf['imap']['maildomain'] = 'xxxxxxxxxxxxxxxxxxx'; > $conf['imap']['cache_folders'] = false; > $conf['imap']['enabled'] = true; > $conf['imsp']['enabled'] = false; > $conf['kolab']['enabled'] = false; > $conf['hashtable']['driver'] = 'none'; > $conf['activesync']['params']['driverconfig'] = 'horde'; > $conf['activesync']['storage'] = 'Sql'; > $conf['activesync']['emailsync'] = true; > $conf['activesync']['version'] = '14.1'; > $conf['activesync']['auth']['type'] = 'basic'; > $conf['activesync']['autodiscovery'] = 'full'; > $conf['activesync']['hosts']['imap']['host'] = 'localhost'; > $conf['activesync']['hosts']['imap']['ssl'] = false; > $conf['activesync']['hosts']['pop']['host'] = 'localhost'; > $conf['activesync']['hosts']['pop']['ssl'] = false; > $conf['activesync']['hosts']['smtp']['host'] = 'localhost'; > $conf['activesync']['hosts']['smtp']['popauth'] = true; > $conf['activesync']['hosts']['smtp']['ssl'] = false; > $conf['activesync']['outlookdiscovery'] = true; > $conf['activesync']['logging']['path'] = > '/home/xxxxxxxxxxxxxxxxxxx/public_html/hmail/as.log'; > $conf['activesync']['logging']['type'] = 'onefile'; > $conf['activesync']['ping']['heartbeatmin'] = 60; > $conf['activesync']['ping']['heartbeatmax'] = 2700; > $conf['activesync']['ping']['heartbeatdefault'] = 480; > $conf['activesync']['ping']['deviceping'] = true; > $conf['activesync']['ping']['waitinterval'] = 15; > $conf['activesync']['enabled'] = true; > /* CONFIG END. DO NOT CHANGE ANYTHING IN > -- > sync mailing list > Frequently Asked Questions: http://wiki.horde.org/FAQ > To unsubscribe, mail: [email protected] -- mike The Horde Project http://www.horde.org https://www.facebook.com/hordeproject https://www.twitter.com/hordeproject -- sync mailing list Frequently Asked Questions: http://wiki.horde.org/FAQ To unsubscribe, mail: [email protected]
smime.p7s
(application/pkcs7-signature, 5.7 KB) - not displayed