all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: George Hartzell <hartzell@alerce.com>
To: Skip Montanaro <skip.montanaro@gmail.com>
Cc: Help GNU Emacs <help-gnu-emacs@gnu.org>
Subject: Re: VM on Emacs 26?
Date: Thu, 23 Jan 2020 12:10:43 -0800	[thread overview]
Message-ID: <24105.64963.124105.721420@alice.local> (raw)
In-Reply-To: <CANc-5Uz+GwBAFH12PpHAHDsgXKvo1P0BrSSmTHYhQvEkMykCdQ@mail.gmail.com>

Skip Montanaro writes:
 > I don't use vm a ton anymore, just to work through the unsure messages held
 > by SpamBayes for mail.python.org. Alas, upgrading from Emacs 25 to 26 the
 > other day seems to have borked vm. I do have it installed on my Ubuntu
 > 18.04 system:
 > 
 > vm/bionic,bionic,now 8.2.0b-2.1 all [installed]
 >   mail user agent for Emacs
 > 
 > but Emacs 26 is clearly not finding it. Any suggestions?
 > 
 > Skip
 > 
 > 
 > 

I'm running it in emacs 26.3 on a mac (via homebrew), so it can be
made to work.

[My config][config] uses [straight.el] to manage it's dependencies.

Here's the interesting bit of the vm setup.

```lisp
(use-package vm
  :straight (vm :type git :host github :repo "emacsmirror/vm"
                :fork (:host github
                             :repo "hartzell/vm"
                             :branch "oldie"
                             ;; :branch "wip"
                             )
                :no-byte-compile t
                :files (:defaults "lisp/*.elc")
                )
  :commands (vm)

  :init
  (require 'cl)
  :config
  ;; Make VM your default mail agent in Emacs
  (setq mail-user-agent 'vm-user-agent)

  ;; Many many configuratinos things redacted
  ;; (setq vm-berkeley-mail-compatibility t)
  ;; ....

  (add-hook 'vm-mode-hook
            '(lambda ()
               (setq vm-visible-headers
                     (append vm-visible-headers (list "X-Spam-Status:")))
               ;; more stuff redacted
               ;; ...
               ))

  ;; ...
  )
```

g.


[straight.el]: https://github.com/raxod502/straight.el
[config]: https://github.com/hartzell/.emacs.d



  parent reply	other threads:[~2020-01-23 20:10 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-23 13:23 VM on Emacs 26? Skip Montanaro
2020-01-23 16:27 ` Robert Pluim
2020-01-23 17:08 ` Sven Joachim
2020-01-23 20:10 ` George Hartzell [this message]
2020-01-23 20:56   ` Stefan Monnier
2020-01-24 14:00 ` Pieter van Oostrum
2020-01-24 14:08   ` Skip Montanaro

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=24105.64963.124105.721420@alice.local \
    --to=hartzell@alerce.com \
    --cc=help-gnu-emacs@gnu.org \
    --cc=skip.montanaro@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.