diff options
author | fpi | 2022-05-27 16:30:08 +0200 |
---|---|---|
committer | fpi | 2023-02-19 18:37:22 +0100 |
commit | 5db1675c32a4f1dc40ce44fd28c932c39d29edec (patch) | |
tree | 7242d563fad97cd7f5054f5c7afa3bf17599cd33 | |
parent | [tmp] Making config working on xcarb (diff) |
Add bbdb-vcard
-rw-r--r-- | emacs-init.org | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/emacs-init.org b/emacs-init.org index 10a5c89..c5c7b67 100644 --- a/emacs-init.org +++ b/emacs-init.org @@ -5778,11 +5778,15 @@ I change the group buffer to something more memorable. This needs to be set befo ;; Make sure we look at every address in a message and not only the ;; first one (bbdb-message-all-addresses t) - :config + (bbdb-time-stamp-format "%Y%m%dT%TZ") ;; to be compatible w/ Nextcloud vcard import + :config (bbdb-initialize 'gnus 'message) (bbdb-mua-auto-update-init 'gnus 'message) :bind (:map gnus-summary-mode-map (";" . bbdb-mua-edit-field))) +(use-package bbdb-vcard + :straight t + :after bbdb) #+end_src To synchronize the database across devices I symlink it to my central synchronization directory: #+begin_src shell :noweb-ref symlinks :tangle no |