This is required for outlook because a default folder is required.
Details
Details
Diff Detail
Diff Detail
- Repository
- rS syncroton
- Branch
- dev/mollekopf
- Lint
Lint Skipped - Unit
No Test Coverage - Build Status
Buildable 47523 Build 18006: arc lint + arc unit
Event Timeline
Comment Actions
This will require something like this:
diff --git a/plugins/libkolab/lib/kolab_storage_dav.php b/plugins/libkolab/lib/kolab_storage_dav.php index 92b4196e..91eda738 100644 --- a/plugins/libkolab/lib/kolab_storage_dav.php +++ b/plugins/libkolab/lib/kolab_storage_dav.php @@ -554,6 +554,7 @@ class kolab_storage_dav */ public static function get_dav_type($type) { + $type = preg_replace('/\.(default)$/i', '', $type); $types = [ 'event' => 'VEVENT', 'task' => 'VTODO',
I'm not sure if we should avoid modifying the type in the first place, or translate back someplace else.
Comment Actions
A better place to do this is in the libkolab plugin. See https://git.kolab.org/rRPK905644dc6c5e256c42f3a6a422601759ea0a47cd