gnus

Which Emacs mail package should I use? [closed]

家住魔仙堡 提交于 2020-01-02 01:11:12
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 7 years ago . I'm overwhelmed by the number of (apparently) capable mail reading and writing packages that come with GNU Emacs, let alone the 3rd party ones. I don't even know where to begin, so let me just say what kind of functionality I'm looking for, and hopefully someone can persuade me that one choice is better than the

How to generate dynamic “Reply-To:” based on “Message-ID:”? [+detail]

这一生的挚爱 提交于 2020-01-01 08:53:26
问题 How can you generate a dynamic "Reply-To:" (and "From:") header in emacs/gnus based on Message-ID of the created message ? I would like to use external (perl) script to generate a dynamic +detail part based on the "Messaged-ID:" header. user+detail@example.net I have managed to create a header with content generated by my external script. The script gets usenet group name as command line parameter. I would like to pass it the message-id value too. My current code ~/.emacs : '(gnus-posting

duplicate imap uid validities with mbsync

大兔子大兔子 提交于 2019-12-24 03:24:29
问题 I am using mbsync to get imap mail from my university server and then dovecot locally to serve it to gnus/emacs. This works fine on one desktop machine, and one laptop, but a second laptop creates duplicate UIDs everytime I use it to access my mail. As I have the exact same set-up (to the best of my knowledge) on all three machines I am a bit baffled as to the source of this error. Does this ring any bells for anyone? Is there some sort of hidden or temp file that might be the source of such

Trouble opening gmail nnimap server in Emacs gnus on Windows

瘦欲@ 提交于 2019-12-20 03:00:21
问题 I'm trying to use Emacs gnus to connect to my gmail account. This is the relevant configuration code, taken mostly from here: (setq tls-program '("openssl s_client -CAfile C:/Users/GGustafson/gmail.crt -connect %h:%p -no_ssl2 -ign_eof")) (setq gnus-select-method '(nnimap "gmail" (nnimap-address "imap.gmail.com") (nnimap-server-port 993) (nnimap-stream ssl) (nnimap-authinfo-file "~/.authinfo"))) (setq message-send-mail-function 'smtpmail-send-it smtpmail-starttls-credentials '(("smtp.gmail.com

Customizing gnus summary buffer

≯℡__Kan透↙ 提交于 2019-12-13 04:54:54
问题 I want my theme to look like similar to below (code got from: http://emacswiki.org/emacs/TomRauchenwald) (source: modprobe.de) However I get this, i.e my threads dont join each other. I suspect this is due to text padding or something? 回答1: It looks like a font problem. The code you found is using a special character named BOX DRAWINGS HEAVY VERTICAL . It looks like a pipe ( | ) but is slightly longer and bolder. When your font does not have that character it has a substitution rule telling

Per newsgroup timezone in Date: header

若如初见. 提交于 2019-12-11 12:06:22
问题 How to configure emacs/gnus to use per newsgroup time zone in posted messages? I would like to use CET time zone in pl.* newsgroups and UCT in general newsgroups. 回答1: I would use message-header-setup-hook or message-send-hook with this function: (defvar date-rewrite-rules '(("pl" . return-time-string-in-CET) ("." . return-time-string-in-UTC))) (defun rewrite-date-based-on-newsgroup () (save-excursion (save-restriction (widen) (goto-char 0) (narrow-to-region 0 (search-forward mail-header

I don't want to expire mail in gnus

有些话、适合烂在心里 提交于 2019-12-06 07:52:39
问题 I am using gnus and I would rather it not expire read mail in the usenet fashion. This doesn't seem to be working: (remove-hook 'gnus-mark-article-hook 'gnus-summary-mark-read-and-unread-as-read) (add-hook 'gnus-mark-article-hook 'gnus-summary-mark-unread-as-read) Any ideas to make it a little bit more like a "normal" MUA? 回答1: As all reasonable mail agent, gnus won't destroy (or expire) mail unless you ask it to do it. It will hide them, so when entering a group (mailbox/folder) it will only

I don't want to expire mail in gnus

梦想的初衷 提交于 2019-12-04 11:50:34
I am using gnus and I would rather it not expire read mail in the usenet fashion. This doesn't seem to be working: (remove-hook 'gnus-mark-article-hook 'gnus-summary-mark-read-and-unread-as-read) (add-hook 'gnus-mark-article-hook 'gnus-summary-mark-unread-as-read) Any ideas to make it a little bit more like a "normal" MUA? As all reasonable mail agent, gnus won't destroy (or expire) mail unless you ask it to do it. It will hide them, so when entering a group (mailbox/folder) it will only show you mail that are unread or ticked. But if you enter a group with C-u RET , or if you use C-u M-g in

Trouble opening gmail nnimap server in Emacs gnus on Windows

萝らか妹 提交于 2019-12-02 00:17:01
I'm trying to use Emacs gnus to connect to my gmail account. This is the relevant configuration code, taken mostly from here : (setq tls-program '("openssl s_client -CAfile C:/Users/GGustafson/gmail.crt -connect %h:%p -no_ssl2 -ign_eof")) (setq gnus-select-method '(nnimap "gmail" (nnimap-address "imap.gmail.com") (nnimap-server-port 993) (nnimap-stream ssl) (nnimap-authinfo-file "~/.authinfo"))) (setq message-send-mail-function 'smtpmail-send-it smtpmail-starttls-credentials '(("smtp.gmail.com" 587 nil nil)) smtpmail-auth-credentials '(("smtp.gmail.com" 587 "gordon3.14@gmail.com" nil))