From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Morrissey Subject: "S:" prefix when syncing via CalDAV Date: Wed, 19 Jul 2017 15:18:41 -0400 Message-ID: <20170719191841.b3hevzvh7ths3mqo@boost.horde.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34461) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dXuUj-0005TW-Aw for emacs-orgmode@gnu.org; Wed, 19 Jul 2017 15:18:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dXuUf-0006db-1J for emacs-orgmode@gnu.org; Wed, 19 Jul 2017 15:18:49 -0400 Received: from boost.horde.net ([69.55.65.181]:47138) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dXuUe-0006d0-S4 for emacs-orgmode@gnu.org; Wed, 19 Jul 2017 15:18:44 -0400 Content-Disposition: inline List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: emacs-orgmode@gnu.org I'm syncing to Nextcloud via CalDAV with org-mode 9.0.3 and the latest org-caldav. Events are sometimes synced (and modified in the .org file) with the prefix "S:". The symptoms are exactly like: https://github.com/dengste/org-caldav/issues/33#issuecomment-74551937 "The SCHEDULED time gets converted to an active timestamp and a freshly created property drawer with a new id is inserted above that newly created active timestamp." It looks like this prefix is being prepended by org-icalendar-entry in ox-icalendar, but I don't know enough about Lisp or org internals to debug much further. Here are my org-{icalendar,caldav} settings: (setq org-icalendar-alarm-time 30) (setq org-icalendar-use-deadline '(event-if-todo event-if-not-todo todo-due) org-icalendar-use-scheduled '(event-if-todo event-if-not-todo todo-start)) (setq org-export-exclude-category (list "dummy")) (setq org-caldav-inbox (expand-file-name "~/org/caldav-inbox.org")) (setq org-caldav-files org-agenda-files) (setq org-caldav-show-sync-results nil) (setq org-caldav-resume-aborted 'never) Is there some configuration I need to change to stop this behavior? -john