aboutsummaryrefslogtreecommitdiff
path: root/dot_config/neomutt/news.rc
diff options
context:
space:
mode:
authorRyan Kavanagh <rak@rak.ac>2023-11-30 10:35:12 -0500
committerRyan Kavanagh <rak@rak.ac>2023-11-30 10:52:57 -0500
commit925887ce8a40a07da92f5baecd29b229fe9c0f85 (patch)
tree818c2585e8dc495b3290b8cb69fdcaf6535265bc /dot_config/neomutt/news.rc
parentUpdate sm to open uqam mail now (diff)
Move neomutt config around
Diffstat (limited to 'dot_config/neomutt/news.rc')
-rw-r--r--dot_config/neomutt/news.rc71
1 files changed, 71 insertions, 0 deletions
diff --git a/dot_config/neomutt/news.rc b/dot_config/neomutt/news.rc
new file mode 100644
index 0000000..24d2b77
--- /dev/null
+++ b/dot_config/neomutt/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 = '$XDG_CONFIG_HOME/neomutt/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