I am playing around with office 365 and part of that is trying to configure the network shares so that i can mount the drives remotely.
Office 365 uses sharepoint and sets up a homepage that you can access using webdav.
mount -t davfs http://xxxxxxx.sharepoint.com/TeamSite/ /home/peter/Sharepoint
The problem is when I put the http version of the homepage in I get:
/sbin/mount.davfs: Mounting failed.
403 FORBIDDEN
So I switch to https
mount -t davfs https://xxxxxxx.sharepoint.com/TeamSite/ /home/peter/Sharepoint
Resulting in:
/sbin/mount.davfs: Mounting failed.
301 Moved Permanently
Any ideas how to fix the problem?

