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

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

Re: package for Email


From: Tomas Hlavaty
Subject: Re: package for Email
Date: Thu, 19 Jan 2023 08:31:53 +0100

I would recommend notmuch as an email client.

On Wed 18 Jan 2023 at 18:15, Jean Louis <bugs@gnu.support> wrote:
> Mutt invokes Emacs and I answer E-mails.

or the other way round:

   (term "mutt")

or if you have several different mutt configuration:

   (defun term2 (program &rest args)
     (let ((x (apply 'make-term
                     (format "%s" (cons 'term2 (cons program args)))
                     program nil args)))
       (set-buffer x)
       (term-mode)
       (term-char-mode)
       (switch-to-buffer x)))

   (term2 "mutt" "-F" "~/.muttrc2")

I never understood, why term does not have args like term2.  Such little
change with so mucht impact.  It is so convenient, e.g.

   (term2 "mtr" "1.1.1.1")



reply via email to

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