<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Freaky OWA Problem in BackOffice Products</title>
    <link>https://community.hpe.com/t5/backoffice-products/freaky-owa-problem/m-p/2799354#M962</link>
    <description>You need to look under Tools/Internet Options/Security Tab, then under either Internet (if you are NOT connecting to the server from behind the same firewall), or Local Intranet.&lt;BR /&gt;&lt;BR /&gt;Select Custom Level, and scroll down until you see User Authentication / Logon&lt;BR /&gt;&lt;BR /&gt;The settings should be: Automatic Logon only in Intranet zone.&lt;BR /&gt;&lt;BR /&gt;If this does't work, try setting it at Prompt for user name and password.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Jon&lt;BR /&gt;</description>
    <pubDate>Wed, 04 Sep 2002 18:49:37 GMT</pubDate>
    <dc:creator>Jon Finley</dc:creator>
    <dc:date>2002-09-04T18:49:37Z</dc:date>
    <item>
      <title>Freaky OWA Problem</title>
      <link>https://community.hpe.com/t5/backoffice-products/freaky-owa-problem/m-p/2799352#M960</link>
      <description>I am running Windows 2k Active Directory with Exchange 2k and SQL 2k.  I am using OWA for email, calendar, etc access.  Most PCs just point to the url (exchange.x.com/exchange) and get the standard log in prompt to manage their email.  But, some PCs (win98 and win2k) get a 403 Forbidden message "You are not authorized to view this page".&lt;BR /&gt;&lt;BR /&gt;From the message I assume that it is seeing the exchange server, but just not giving me access.  Logons themselves don't seem to make a difference.  Either the PC itself is authorized or not despite the log on that I use.  &lt;BR /&gt;&lt;BR /&gt;I thought it was a licensing issue.  So, I added a ton of license to make sure it wasn't.  I also manually cleared all of the license.  All with no effect.  This happens on both Win2k PCs and Win98 PCs.  &lt;BR /&gt;&lt;BR /&gt;Any ideas?</description>
      <pubDate>Wed, 04 Sep 2002 06:35:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/backoffice-products/freaky-owa-problem/m-p/2799352#M960</guid>
      <dc:creator>Richard Lea</dc:creator>
      <dc:date>2002-09-04T06:35:26Z</dc:date>
    </item>
    <item>
      <title>Re: Freaky OWA Problem</title>
      <link>https://community.hpe.com/t5/backoffice-products/freaky-owa-problem/m-p/2799353#M961</link>
      <description>I suspect that the PC's which do not work are trying to automatically logon with their MS user login info.  Look in IE/Tools/Internet Options/Advanced and see if&lt;BR /&gt;Enable Integrated Windows Authentication is checked.  May be another option too depending on your version of IE.&lt;BR /&gt;&lt;BR /&gt;Ron</description>
      <pubDate>Wed, 04 Sep 2002 16:47:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/backoffice-products/freaky-owa-problem/m-p/2799353#M961</guid>
      <dc:creator>Ron Kinner</dc:creator>
      <dc:date>2002-09-04T16:47:51Z</dc:date>
    </item>
    <item>
      <title>Re: Freaky OWA Problem</title>
      <link>https://community.hpe.com/t5/backoffice-products/freaky-owa-problem/m-p/2799354#M962</link>
      <description>You need to look under Tools/Internet Options/Security Tab, then under either Internet (if you are NOT connecting to the server from behind the same firewall), or Local Intranet.&lt;BR /&gt;&lt;BR /&gt;Select Custom Level, and scroll down until you see User Authentication / Logon&lt;BR /&gt;&lt;BR /&gt;The settings should be: Automatic Logon only in Intranet zone.&lt;BR /&gt;&lt;BR /&gt;If this does't work, try setting it at Prompt for user name and password.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Jon&lt;BR /&gt;</description>
      <pubDate>Wed, 04 Sep 2002 18:49:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/backoffice-products/freaky-owa-problem/m-p/2799354#M962</guid>
      <dc:creator>Jon Finley</dc:creator>
      <dc:date>2002-09-04T18:49:37Z</dc:date>
    </item>
    <item>
      <title>Re: Freaky OWA Problem</title>
      <link>https://community.hpe.com/t5/backoffice-products/freaky-owa-problem/m-p/2799355#M963</link>
      <description>&lt;BR /&gt;this looks more like a web server configuration&lt;BR /&gt; issue --&lt;BR /&gt;  where a logon document or cgi app is in a folder&lt;BR /&gt;  that doesn't have it's permissions set in the&lt;BR /&gt; server's configuration...&lt;BR /&gt;&lt;BR /&gt;(be sure to see the NOTE below for other info)&lt;BR /&gt;&lt;BR /&gt;in the following example, (apache web server), if your&lt;BR /&gt; machine's ip was 10.10.0.7, you would get the&lt;BR /&gt;  "403 forbidden" message if you tried to access&lt;BR /&gt;  a logon screen in the "c:\LogonDocs" directory...&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://exchange.x.com/exchange/LogonDocs/Login.html" target="_blank"&gt;http://exchange.x.com/exchange/LogonDocs/Login.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;inside an httpd.conf file in apache would look&lt;BR /&gt; something like this:&lt;BR /&gt;  (angle brackets replaced with square brackets)&lt;BR /&gt;&lt;BR /&gt;  [Directory "c:/LogonDocs/"]&lt;BR /&gt; order allow,deny&lt;BR /&gt; allow from exchange.x.com&lt;BR /&gt; allow from 10.10.0.3&lt;BR /&gt; allow from 10.10.0.5&lt;BR /&gt;  [/Directory]&lt;BR /&gt;&lt;BR /&gt;corrected, it'd look like this:&lt;BR /&gt;&lt;BR /&gt;  [Directory "c:/LogonDocs/"]&lt;BR /&gt; order allow,deny&lt;BR /&gt; allow from exchange.x.com&lt;BR /&gt; allow from 10.10.0.3&lt;BR /&gt; allow from 10.10.0.5&lt;BR /&gt; allow from 10.10.0.7&lt;BR /&gt;#        or&lt;BR /&gt;#       allow from all&lt;BR /&gt;  [/Directory]&lt;BR /&gt;&lt;BR /&gt;===========&lt;BR /&gt;NOTE:&lt;BR /&gt;===========&lt;BR /&gt;you might also see this if you are typing in the&lt;BR /&gt; remote machine's name in the address bar of a window,&lt;BR /&gt;  in which case it'll attempt to connect to that&lt;BR /&gt;  machine's default http port rather than opening&lt;BR /&gt; a folder via the file system...&lt;BR /&gt;&lt;BR /&gt;...maybe, unless i'm all wet&lt;BR /&gt;    and standing in left field...  :-)&lt;BR /&gt;</description>
      <pubDate>Tue, 17 Sep 2002 13:04:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/backoffice-products/freaky-owa-problem/m-p/2799355#M963</guid>
      <dc:creator>Sam Cochran</dc:creator>
      <dc:date>2002-09-17T13:04:58Z</dc:date>
    </item>
  </channel>
</rss>

