help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

gnorb user ?


From: Xavier Maillard
Subject: gnorb user ?
Date: Wed, 25 May 2016 23:53:55 +0200
User-agent: Gnus (5.13), GNU Emacs 24.5.1 (x86_64-apple-darwin15.4.0)

Hello,

is there anybody using gnorb package that would share his settings with me and
show his workflow ?

I have read the info doc but, still, I do not understand fully how I should
use all this stuff.

If it is worth it, here is my settings (copy/pasted from the documentation):

   #+BEGIN_SRC emacs-lisp
          (use-package gnorb
            :defer 5
            :bind (:map  message-mode-map ("C-c t" . 
gnorb-gnus-outgoing-do-todo))
            :config
            (use-package init-gnus :config (setq gnus-registry-install t)
            (setq gnorb-gnus-new-todo-capture-key "t")
            (gnorb-tracking-initialize))

            (use-package gnorb-bbdb
              :init
              (setq gnorb-org-agenda-popup-bbdb t)
              :bind (
                     ;; ("C-c C" . gnorb-bbdb-cite-contact)
                     :map bbdb-mode-map
                     ("O" . gnorb-bbdb-tag-agenda)
                     ("S" . gnorb-bbdb-mail-search)
     ;;                ([remap bbdb-mail] . gnorb-bbdb-mail)
                     ("l" . gnorb-bbdb-open-link)))

            (use-package gnorb-org
              :bind (
                     :map org-mode-map 
                          ("C-c C" . gnorb-org-contact-link)
                          ("C-c t" . gnorb-org-handle-mail)
                          ("C-c e" . gnorb-org-view)
                          ("C-c E" . gnorb-org-email-subtree)
                          ("C-c V" . gnorb-org-popup-bbdb))
              (:map org-agenda-mode-map
                    ("H" . gnorb-org-handle-mail)
                    ("V" . gnorb-org-popup-bbdb)))
            (use-package gnorb-gnus
              :bind (
                     :map gnus-summary-mime-map ("a" . 
gnorb-gnus-article-org-attach))
              (:map gnus-summary-mode-map ("C-c t" . 
gnorb-gnus-incoming-do-todo))
              :config
              (push '("attach to org heading" . gnorb-gnus-mime-org-attach)
                    gnus-mime-action-alist)
              ;; The only way to add mime button command keys is by redefining
              ;; gnus-mime-button-map, possibly not ideal. Ideal would be a
              ;; setter function in gnus itself.
              (push '(gnorb-gnus-mime-org-attach "a" "Attach to Org heading")
                    gnus-mime-button-commands)
                 (setq gnus-mime-button-map
                  (let ((map (make-sparse-keymap)))
                         (define-key map gnus-mouse-2 'gnus-article-push-button)
                         (define-key map gnus-down-mouse-3 
'gnus-mime-button-menu)
                         (dolist (c gnus-mime-button-commands)
                           (define-key map (cadr c) (car c)))
                         map))))
   #+END_SRC

All of this is not enough to get started succesfully IMO.

Thank you
Xavier




reply via email to

[Prev in Thread] Current Thread [Next in Thread]