| Author | 
         | 
         
      
        
         
         mic.max Groupie 
          
 
  Joined: 15 August 2010
 Online Status: Offline Posts: 43
          | 
        
         
          
           | Posted: 18 September 2018 at 4:40am | IP Logged
		     | 
                    
            		  
           | 
           
          
           
  | 
           
          
After update webmail to 8.2.1 activeserver stop working, because carddav and caldav access not work.
 I see in webmail setting path to caldav and carddav not contain a mailaddress of user, this is the change i see:
 
 old webmail:
 
 https://dav.domain.com/addressbooks/user@domain.com/AddressBook
 https://dav.domain.com/calendars/user@domain.com/a899b4eb-89c8-418d-849b-0ee538ec4c5a
 
 8.2.1 webmail:
 https://dav.domain.com/addressbooks/AddressBook
 https://dav.domain.com/calendars/a899b4eb-89c8-418d-849b-0ee538ec4c5a
 
 
         | 
       
       
        | Back to Top | 
         
          
         | 
       
       
       
        |   | 
      
        
         
         Igor AfterLogic Support 
          
 
  Joined: 24 June 2008 Location: United States
 Online Status: Offline Posts: 6168
          | 
        
         
          
           | Posted: 18 September 2018 at 5:54am | IP Logged
		     | 
                    
            		  
           | 
           
          
           
  | 
           
          
1. In [z-push]/backend/carddav/config.php file, replace:
 
 
Code: 
   
    
    
      
       | define('CARDDAV_PATH', '/addressbooks/%u/'); | 
       
       | 
    
    | 
 
 
 
 with:
 
 
Code: 
   
    
    
      
       | define('CARDDAV_PATH', '/addressbooks/'); | 
       
       | 
    
    | 
 
 
 
 and replace:
 
 
Code: 
   
    
    
      
       | define('CARDDAV_DEFAULT_PATH', '/addressbooks/%u/'); | 
       
       | 
    
    | 
 
 
 
 with:
 
 
Code: 
   
    
    
      
       | define('CARDDAV_DEFAULT_PATH', '/addressbooks/'); | 
       
       | 
    
    | 
 
 
 
 2. In [z-push]/backend/caldav/config.php file, replace:
 
 
Code: 
   
    
    
      
       | define('CALDAV_PATH', '/calendars/%u/'); | 
       
       | 
    
    | 
 
 
 
 with:
 
 
Code: 
   
    
    
      
       | define('CALDAV_PATH', '/calendars/'); | 
       
       | 
    
    | 
 
 
 
 Make sure to create backup copies of those files, first.
 
 Does it help?
 
 --
 Regards,
 Igor, Afterlogic Support
         | 
       
       
        | Back to Top | 
         
          
         | 
       
       
       
        |   | 
      
        
         
         mic.max Groupie 
          
 
  Joined: 15 August 2010
 Online Status: Offline Posts: 43
          | 
        
         
          
           | Posted: 18 September 2018 at 6:29am | IP Logged
		     | 
                    
            		  
           | 
           
          
           
  | 
           
          
with this change now seems to work, i don't see any error on log files !
 
 Thanks 
         | 
       
       
        | Back to Top | 
         
          
         | 
       
       
       
        |   |