<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body text="#000000" bgcolor="#FFFFFF">
<br>
<div class="moz-cite-prefix">On 29/11/2017 0:29, Aaron Howell wrote:<br>
</div>
<blockquote type="cite"
cite="mid:6122006B-486B-42A3-B529-86109086CE8C@deakin.edu.au">
<blockquote type="cite" style="color: #000000;">
<pre wrap="">Wonder if you could work around it on the SP side by having the web server reject (403? or a dummy "200 OK"?) requests with the ms-office user agent headers...
</pre>
</blockquote>
<pre wrap="">
I looked at doing this method (like 5 years ago) - the trouble I found was the inconsistency with the ms-office user agent headers between versions, products and OS’s made it very error prone - with both false positives and negatives.</pre>
</blockquote>
This works, but probably with many side effects?<br>
<br>
RewriteEngine on<br>
RewriteCond %{HTTP_USER_AGENT} ms-office [NC]<br>
RewriteRule ^.* - [R=200,L]
<blockquote type="cite"
cite="mid:6122006B-486B-42A3-B529-86109086CE8C@deakin.edu.au">
<pre wrap="">
But as far as I know, the latest Office (2016?) no longer has this issue anyway</pre>
</blockquote>
Don't you observe the same behaviour as I pointed out in my previous
mails? <br>
<br>
Kr,<br>
Philip<br>
</body>
</html>