Variable: diary-icalendar-attachment-directory
diary-icalendar-attachment-directory is a customizable variable
defined in diary-icalendar.el.gz.
Value
nil
Documentation
Directory in which to save iCalendar attachments when importing.
If the value is nil, binary attachments encoded in an ATTACH property are never saved. If it is the name of a directory, attachments will be saved in per-component subdirectories of this directory, with each subdirectory named by the component's UID value.
This variable was added, or its default value changed, in Emacs 31.1.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/diary-icalendar.el.gz
(defcustom di:attachment-directory nil
"Directory in which to save iCalendar attachments when importing.
If the value is nil, binary attachments encoded in an ATTACH property
are never saved. If it is the name of a directory, attachments will be
saved in per-component subdirectories of this directory, with each
subdirectory named by the component's UID value."
:version "31.1"
:type '(choice
(const :tag "Do not save attachments" nil)
directory))