Variable: org-id-include-domain

org-id-include-domain is a customizable variable defined in org-id.el.gz.

Value

nil

Documentation

Non-nil means add the domain name to new IDs.

This ensures global uniqueness of IDs, and is also suggested by the relevant RFCs. This is relevant only if org-id-method is org or ts. When uuidgen is used, the domain will never be added.

The default is to not use this because we have no really good way to get the true domain, and Org entries will normally not be shared with enough people to make this necessary.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-id.el.gz
(defcustom org-id-include-domain nil
  "Non-nil means add the domain name to new IDs.
This ensures global uniqueness of IDs, and is also suggested by
the relevant RFCs.  This is relevant only if `org-id-method' is
`org' or `ts'.  When uuidgen is used, the domain will never be added.

The default is to not use this because we have no really good way to get
the true domain, and Org entries will normally not be shared with enough
people to make this necessary."
  :group 'org-id
  :type 'boolean)