View Single Post
  #3 (permalink)  
Old 07-04-2007, 02:44 AM
wojo2000 wojo2000 is offline
Junior Member
 
Posts: 8
Default

OK, thanks, I try many different combinations but I always use user=username@domain.com that was incorrect I should use only user=username

For those who want to use iCal with shared calendars:
Code:
https://user1:password@mail.domain.com/service/home/user2/calendar_name.ics
user1 - Your user name (person who add shared calendar)
password - Your password
mail.domain.com - domain name plus path to your company calendars
user2 - person who create shared calendar
calendar_name.ics - calendar name

For me second problem was to add https path to iCal...
If You want to do that, you must prepare a file on your mac.
Code:
example:
~/Sites/somefile.php (with this inside)
<?php readfile("https://user1:password@mail.domain.com/service/home/user2/calendar_name.ics"); ?>
next You open iCal -> Subscribe and you add
Code:
http://127.0.0.1/~macusername/somefile.php
this should works

once more, if you want use https with this php file you should start web server (on your mac) and you should install php (if you don't know how to, easiest way is to download this package and install)
Code:
http://www2.entropy.ch/download/entropy-php-5.2.2-1.tar.gz
Reply With Quote