This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Exchange (RPC over HTTP) with Astaro

Hey Guys,

did anybody know, if the RPC over HTTP Feature from Exchange 2007/2010 work with the Application Security from Astaro now?

It is possible to set it up with the V 8.201 ?

Cheers
Jan


This thread was automatically locked due to age.
  • RPC over HTTP hasn't been added to 8.2x.  Keep checking the feature request for this to see any status changes.  Web Application Security: Outlook Anywhere Support
    __________________
    ACE v8/SCA v9.3

    ...still have a v5 install disk in a box somewhere.

    http://xkcd.com
    http://www.tedgoff.com/mb
    http://www.projectcartoon.com/cartoon/1
  • Until Astaro has built in OWA support for Exchange you can use the following workaround with an external Squid reverse proxy. I'm using that with squid 3.2.0 according to  squid : cache_peer configuration directive

    /etc/squid/squid.conf:

    cache_effective_user squid
    cache_effective_group squid
    pid_filename /var/run/squid.pid

    acl srcall src all
    acl EXCH dstdomain webmail.mydomain.com

    ssl_unclean_shutdown on
    httpd_suppress_version_string on 
    cache_mgr nomail
    visible_hostname webmail.mydomain.com

    # DMZ listen address
    https_port 172.11.11.1:443 accel cert=/etc/ssl/certs/mydomain.com.pem key=/etc/ssl/certs/mydomain.com.pem

    # address of Exchange server in LAN behind DMZ
    cache_peer 10.1.1.2 parent 443 0 ssl sslflags=DONT_VERIFY_PEER  sslcert=/etc/ssl/certs/mydomain.com.pem sslkey=/etc/ssl/certs/mydomain.com.pem proxy-only no-query no-digest front-end-https=on sourcehash round-robin originserver  login=PASSTHRU name=exchange

    logformat combined %>a %[ui %[un [%tl] "%rm %ru HTTP/%rv" %>Hs %h" "%{User-Agent}>h" %Ss:%Sh
    access_log /var/log/squid/access.log combined
    cache_log /var/log/squid/cache.log

    never_direct allow EXCH
    http_access allow EXCH
    http_access deny srcall
    cache_peer_access exchange allow EXCH
    cache_peer_access exchange deny srcall