diff options
author | Ryan Kavanagh <rak@rak.ac> | 2021-12-13 16:51:09 -0500 |
---|---|---|
committer | Ryan Kavanagh <rak@rak.ac> | 2021-12-13 16:51:09 -0500 |
commit | ed293706d2e40a44328993f1b598c20e03ed8e02 (patch) | |
tree | 92cacfa52ee6b46e1a17dd8e1b29735c03d449ca /dot_mutt/news.rc | |
parent | Drop smime configuration from mutt (diff) |
mutt
Diffstat (limited to 'dot_mutt/news.rc')
-rw-r--r-- | dot_mutt/news.rc | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/dot_mutt/news.rc b/dot_mutt/news.rc new file mode 100644 index 0000000..2b2d57b --- /dev/null +++ b/dot_mutt/news.rc @@ -0,0 +1,71 @@ +# Example NeoMutt config file for the nntp feature. + +# -------------------------------------------------------------------------- +# VARIABLES - shown with their default values +# -------------------------------------------------------------------------- +set ask_follow_up = no +set ask_x_comment_to = no +set catchup_newsgroup = ask-yes +set followup_to_poster = ask-yes +set group_index_format = '%4C %M%N %5s %-45.45f %d' +set inews = '' +set mime_subject = yes +set newsgroups_charset = utf-8 +set newsrc = '~/.newsrc' +set news_cache_dir = '~/.mutt/cache/' +set news_server = 'news.club.cc.cmu.edu' +set nntp_authenticators = '' +set nntp_context = 1000 +set nntp_listgroup = yes +set nntp_load_description = yes +set nntp_pass = '' +set nntp_poll = 60 +set nntp_user = '' +set post_moderated = ask-yes +set save_unsubscribed = no +set show_new_news = yes +set show_only_unread = no +set x_comment_to = no +# -------------------------------------------------------------------------- +# FUNCTIONS - shown with an example mapping +# -------------------------------------------------------------------------- +# mark all articles in newsgroup as read +bind browser,index y catchup +# open a different newsgroup +bind index i change-newsgroup +# edit the Followup-To field +bind compose o edit-followup-to +# edit the newsgroups list +bind compose N edit-newsgroups +# edit the X-Comment-To field +bind compose x edit-x-comment-to +# followup to newsgroup +bind attach,index,pager F followup-message +# post message to newsgroup +bind index,pager P post-message +# load list of all newsgroups from NNTP server +bind browser g reload-active +# subscribe to current mbox (IMAP/NNTP only) +bind browser s subscribe +# subscribe to newsgroups matching a pattern +bind browser S subscribe-pattern +# mark all articles in newsgroup as unread +bind browser Y uncatchup +# unsubscribe from current mbox (IMAP/NNTP only) +bind browser u unsubscribe +# unsubscribe from newsgroups matching a pattern +bind browser U unsubscribe-pattern +# open a different newsgroup in read only mode +bind index,pager \ei change-newsgroup-readonly +# forward to newsgroup +bind attach,index,pager \eF forward-to-group +# get all children of the current message +# bind index ??? get-children +# get parent of the current message +bind index \eG get-parent +# reconstruct thread containing current message +# bind index ??? reconstruct-thread +# get message with Message-Id +bind index \CG get-message +# -------------------------------------------------------------------------- +# vim: syntax=neomuttrc |