Re: [users@httpd] ReverseProxy Exchange 2013

2014-02-17 Thread Thomas Eckert
 So i finally got apache2-devel installed... However, when running
./configure for mod_proxy_msrpc, i get an error due to the absence of
ap_socache.h. It appears this file is included n apache 2.4. Now, will
mod_proxy_msrpc only work in apache 2.4? If not, can i just get the
ap_socache.h file and copy it to the correct folder and it work or will
this break things?

I really doubt that will do you any good. Since mod_proxy_msrpc was
developed against 2.4 you will need httpd-2.4.x to (compile and) run it.
With lower versions it's sure to break at some point so don't bother. So
far we haven't done any backport and I don't think we will.


On Mon, Feb 17, 2014 at 12:36 AM, Chris Arnold
carn...@electrichendrix.comwrote:

 Chris, if you encounter any issues with mod_proxy_msrpc please report
 them at https://github.com/bombadil/mod_proxy_msrpc/issues. Note that
 OAB, OWA, Autodiscover, ActiveSync, etc. all use normal HTTP/S (and not
 MSRPC like OA) so they should work without mod_proxy_msrpc. There is an
 open issue with Ex2013 (
 https://github.com/bombadil/mod_proxy_msrpc/issues/14) which I hope to
 get some time for next week.

 So i finally got apache2-devel installed... However, when running
 ./configure for mod_proxy_msrpc, i get an error due to the absence of
 ap_socache.h. It appears this file is included in apache 2.4. Now, will
 mod_proxy_msrpc only work in apache 2.4? If not, can i just get the
 ap_socache.h file and copy it to the correct folder and it work or will
 this break things?



Re: [users@httpd] ReverseProxy Exchange 2013

2014-02-16 Thread Thomas Eckert
Chris, if you encounter any issues with mod_proxy_msrpc please report them
at https://github.com/bombadil/mod_proxy_msrpc/issues. Note that OAB, OWA,
Autodiscover, ActiveSync, etc. all use normal HTTP/S (and not MSRPC like
OA) so they should work without mod_proxy_msrpc. There is an open issue
with Ex2013 (https://github.com/bombadil/mod_proxy_msrpc/issues/14) which I
hope to get some time for next week.



On Sun, Feb 16, 2014 at 1:41 AM, Chris Arnold
carn...@electrichendrix.comwrote:

 Chris, are you trying to use webmail or Outlook Anywhere (or both)?
 I have heard the RPC module works but never used it myself.
 As for OWA, I will try it on one of my systems and see what happens.

 Hey Yehuda,

 Both. I will also need OAB and all the other things that come with
 exchange 2013. I will give the msrpc module a try and report back. I would
 like to hear your results aslo.



Re: [users@httpd] ReverseProxy Exchange 2013

2014-02-16 Thread Chris Arnold
 Chris, if you encounter any issues with mod_proxy_msrpc please report them at 
 https://github.com/bombadil/mod_proxy_msrpc/issues . Note that OAB, OWA, 
 Autodiscover, ActiveSync, etc. all use normal HTTP/S (and not MSRPC like 
 OA) so they should work without mod_proxy_msrpc. There is an open issue with 
 Ex2013 ( https://github.com/bombadil/mod_proxy_msrpc/issues/14 ) which I 
 hope to get some time for next week. 

So i finally got apache2-devel installed... However, when running 
./configure for mod_proxy_msrpc, i get an error due to the absence of 
ap_socache.h. It appears this file is included in apache 2.4. Now, will 
mod_proxy_msrpc only work in apache 2.4? If not, can i just get the 
ap_socache.h file and copy it to the correct folder and it work or will this 
break things? 


Re: [users@httpd] ReverseProxy Exchange 2013

2014-02-15 Thread Chris Arnold
I figured i would hear crickets on this issue on this list :)

Anybody tried this module?
https://github.com/bombadil/mod_proxy_msrpc


- Original Message -
From: Chris Arnold carn...@electrichendrix.com
To: users@httpd.apache.org
Sent: Saturday, February 15, 2014 5:48:07 PM
Subject: [users@httpd] ReverseProxy Exchange 2013

I have asked this on the exchange forum and am getting some help but they 
always say it is an apache issue and it may be but what i need is on the MS 
side. So i am asking here in the event someone here has done this.

What i am trying to do: use autodiscover during a outlook email account setup. 
I have the proper SAN's on my cert and the proper DNS records (a host 
autodiscover that points to mail.domain.tld). I have autodiscover reverse 
proxied to the exchange server like this:

ProxyPass /Autodiscover https://192.168.z.x/Autodiscover/Autodiscover.xml
ProxyPassReverse /Autodiscover https://192.168.z.x/Autodiscover/Autodiscover.xml

And i get the correct response/login when accessing this URL 
https://autodiscover.domain.tld/Autodiscover/Autodiscover.xml

What is happenning: during outlook email account setup, i get the utodiscover 
prompt (fine for now) but during the search for u...@domain.tld server 
settings, it comes back with an encrypted connection could not be found. So i 
dont know what this process is looking for, like mail.domain.tld/owa /exchange 
/rpcwithcert (i have tried all those to no avail). Here is my entries for this 
part:

#This rewrites https://mail.anydomain.tld to our mail server
RewriteEngine On
RewriteCond %{HTTP_HOST} ^mail\.
RewriteCond %{HTTPS} on
RewriteRule ^/(.*) https://192.168.12.9/(here is where i tried owa, 
exchange, rpcwithcert/$1 [P]
#RedirectMatch ^/$ /zimbra/

Maybe somebody already has done this? To you i ask, if you could share your 
setup, minus your personal stuff of course, i would appreciate it very much.

-
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org



Re: [users@httpd] ReverseProxy Exchange 2013

2014-02-15 Thread Yehuda Katz
Chris, are you trying to use webmail or Outlook Anywhere (or both)?
I have heard the RPC module works but never used it myself.
As for OWA, I will try it on one of my systems and see what happens.

- Y

Sent from a gizmo with a very small keyboard and hyperactive autocorrect.
On Feb 15, 2014 7:03 PM, Chris Arnold carn...@electrichendrix.com wrote:

 I figured i would hear crickets on this issue on this list :)

 Anybody tried this module?
 https://github.com/bombadil/mod_proxy_msrpc


 - Original Message -
 From: Chris Arnold carn...@electrichendrix.com
 To: users@httpd.apache.org
 Sent: Saturday, February 15, 2014 5:48:07 PM
 Subject: [users@httpd] ReverseProxy Exchange 2013

 I have asked this on the exchange forum and am getting some help but they
 always say it is an apache issue and it may be but what i need is on the MS
 side. So i am asking here in the event someone here has done this.

 What i am trying to do: use autodiscover during a outlook email account
 setup. I have the proper SAN's on my cert and the proper DNS records (a
 host autodiscover that points to mail.domain.tld). I have autodiscover
 reverse proxied to the exchange server like this:

 ProxyPass /Autodiscover https://192.168.z.x/Autodiscover/Autodiscover.xml
 ProxyPassReverse /Autodiscover
 https://192.168.z.x/Autodiscover/Autodiscover.xml

 And i get the correct response/login when accessing this URL
 https://autodiscover.domain.tld/Autodiscover/Autodiscover.xml

 What is happenning: during outlook email account setup, i get the
 utodiscover prompt (fine for now) but during the search for 
 user@domain.tldserver settings, it comes back with an encrypted connection 
 could not be
 found. So i dont know what this process is looking for, like
 mail.domain.tld/owa /exchange /rpcwithcert (i have tried all those to no
 avail). Here is my entries for this part:

 #This rewrites https://mail.anydomain.tld to our mail server
 RewriteEngine On
 RewriteCond %{HTTP_HOST} ^mail\.
 RewriteCond %{HTTPS} on
 RewriteRule ^/(.*) https://192.168.12.9/(here is where i tried
 owa, exchange, rpcwithcert/$1 [P]
 #RedirectMatch ^/$ /zimbra/

 Maybe somebody already has done this? To you i ask, if you could share
 your setup, minus your personal stuff of course, i would appreciate it very
 much.

 -
 To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
 For additional commands, e-mail: users-h...@httpd.apache.org


 -
 To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
 For additional commands, e-mail: users-h...@httpd.apache.org




Re: [users@httpd] ReverseProxy Exchange 2013

2014-02-15 Thread Chris Arnold
Chris, are you trying to use webmail or Outlook Anywhere (or both)? 
I have heard the RPC module works but never used it myself. 
As for OWA, I will try it on one of my systems and see what happens. 
  
Hey Yehuda, 
  
Both. I will also need OAB and all the other things that come with exchange 
2013. I will give the msrpc module a try and report back. I would like to hear 
your results aslo.