No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

210 líneas
6.8 KiB

  1. .TH MW 1 mutt-wizard
  2. .SH NAME
  3. mw \- mutt-wizard \- autoconfigure email accounts for neomutt and isync
  4. .SH SYNOPSIS
  5. .B mw
  6. <command>
  7. .SH DESCRIPTION
  8. .B mw
  9. takes a user email account and sets up a terminal-based email interface with it for
  10. .B neomutt.
  11. This can include offline email with
  12. .B isync/mbsync
  13. and configs for
  14. .B msmtp
  15. for sending mail, and also passwords automatically encrypted and stored with
  16. .B pass.
  17. .SH COMMANDS
  18. .TP
  19. .B add
  20. configure an email account
  21. .TP
  22. .B ls
  23. list all email accounts configured by mutt-wizard
  24. .TP
  25. .B delete
  26. delete the configuration files for an already configured email account
  27. .TP
  28. .B purge
  29. totally purge all local mutt-wizard accounts
  30. .TP
  31. .B cron
  32. toggle a cronjob that will automatically sync mail with
  33. .B mailsync
  34. as often as you wish
  35. .SH DETAILS
  36. .TP
  37. .B Mail location
  38. If the user chooses to keep offline email with
  39. .B isync,
  40. it will be kept in
  41. .I ~/.local/share/mail/.
  42. .B notmuch
  43. can be used to index and search this mail by giving this directory when first running
  44. .B notmuch setup.
  45. .TP
  46. .B muttrc files
  47. mutt-wizard will create a muttrc file for each created account holding account-specific details. These will appear in
  48. .I ~/.config/mutt/accounts/
  49. and can be edited by the user if needbe. Note that the mutt-wizard will also source these files and create the bindings to switch between them, and these will appear in your default
  50. .I ~/.config/mutt/muttrc
  51. file.
  52. .TP
  53. .B Mail deletion
  54. Neither
  55. .B delete
  56. or
  57. .B purge
  58. will delete downloaded mail for for safety (and time)'s sake. If you want to delete downloaded mail, do so manually by removing it from the directory above.
  59. .TP
  60. .B Default settings
  61. The mutt-wizard has many default settings that focus on making it aesthetically pleasing and supplying more vim-like bindings. These can be found in
  62. .I /usr/share/mutt-wizard/mutt-wizard.muttrc
  63. and the default mailcap file can be found in
  64. .I
  65. /usr/share/mutt-wizard/mailcap.
  66. Any of these settings can be overwritten in
  67. .I ~/.config/mutt/muttrc,
  68. but be mindful that your overriding binds should appear after the
  69. .I
  70. mutt-wizard.muttrc
  71. file is sourced.
  72. .TP
  73. .B Detecting server settings
  74. mutt-wizard has a repository of email services and their server information kept in
  75. .I /usr/share/mutt-wizard/domains.csv
  76. which is used to automatically configure email settings.
  77. If your email provider is not found there, it will prompt you to input your email service's IMAP and SMTP server information which can usually be found by searching online.
  78. If you would like to help develop mutt-wizard for others, you are invited to add this service information to
  79. .I domains.csv
  80. on mutt-wizard's Github <https://github.com/lukesmithxyz/mutt-wizard> or Gitlab <https://gitlab.com/lukesmithxyz/mutt-wizard> pages.
  81. .TP
  82. .B Gmail accounts
  83. Google will require you to allow "less-secure" (third party) applications or use two-factor authentication in order to access their IMAP servers to download your mail. If you use Gmail, be sure to handle this before running mutt-wizard <https://support.google.com/accounts/answer/6010255>.
  84. .B Protonmail accounts
  85. Protonmail users must use the Protonmail Bridge <https://protonmail.com/bridge/> to access their IMAP and SMTP servers. This too should be configured before running mutt-wizard.
  86. .B Enterprise and university accounts
  87. Many universities and businesses might host their domain's email via Google or another service. This often requires a special IMAP/SMTP-specific password that you must generate and use. Again, mutt-wizard can handle these systems, but only once they've been set up.
  88. .SH MUTT-WIZARD'S NEOMUTT CONFIGURATION
  89. Here is a list of not only mutt-wizard's particular defaults, but what you need to get the most out of email accounts configured with mutt-wizard.
  90. .TP
  91. .B Color
  92. The mutt-wizard's default settings add color to messages in the index and color mail details to make them easier to see. New mail, in addition to being marked by the typical N, will also be bold.
  93. .TP
  94. .B Movement with h/j/k/l
  95. Use vim keys to move down
  96. .I j
  97. or up
  98. .I k
  99. in mail, while
  100. .I l
  101. opens mail, then the attachment view, then an attachment, while
  102. .I h
  103. is the reverse.
  104. While mail is open, go to next or previous mail with
  105. .I J
  106. and
  107. .I K.
  108. In the mail index,
  109. .I d
  110. and
  111. .I u
  112. go down and up by a half page and
  113. .I gg
  114. and
  115. .I G
  116. go to the very top and very bottom.
  117. .TP
  118. .B Search mail
  119. If you have
  120. .B notmuch
  121. configured with your proper mail directory (see above), you may run
  122. .I ctrl-f
  123. to search for mail containing any given sequence.
  124. Even without notmuch,
  125. .I L
  126. limits mail, showing only those with the given sequence in the subject while
  127. .I A
  128. shows all mail (same as limiting to "all").
  129. .TP
  130. .B Deleting mail
  131. .I D
  132. deletes mail, while
  133. .I U
  134. undeletes it (type in mail number to get to deleted mail). Note that
  135. .I S
  136. saves your mailbox, finalizing deletion. If you have a
  137. .I Trash
  138. box, deleted mail is moved there. If you want it to skip that and simply be deleted, comment out or remove the
  139. .I set trash
  140. line in that account's muttrc.
  141. .TP
  142. .B Send mail
  143. .I m
  144. creates a new mail message;
  145. .I r
  146. replies to the selected message;
  147. .I R
  148. replies all to the selected message and
  149. .I f
  150. fowards the selected message.
  151. .TP
  152. .B Compose mail screen
  153. Once you write mail and save the buffer you will be brought to the compose screen. Press
  154. .I a
  155. to add attachments, use
  156. .I s/t/c/b/d
  157. to change the subject/to/CC/BCC/description. Press
  158. .I S
  159. to change the signature/encryption. Press
  160. .I y
  161. to send the mail.
  162. .TP
  163. .B Saving and autocompleting email addresses with abook
  164. Install the optional dependency abook and you will be able to save the sender's email address with
  165. .I a.
  166. Once this is done, when you are typing in any email/contact prompt, you may press
  167. .I Tab
  168. to find contacts matching your input. Although abook is often used with mutt, it is also a useful program in its own right.
  169. .TP
  170. .B Switching and moving mail between mailboxes
  171. The
  172. .I g
  173. key can be paired with several other keys to automatically move to another mailbox: gi: Inbox; gs: Sent; gd: Drafts; ga: Archive; gS: Spam; gj: Junk; gt: Trash. These bindings will only be present for accounts that have the boxes in question. Instead of
  174. .I g,
  175. you can also press
  176. .I C
  177. to copy mail or
  178. .I M
  179. to move mail to the same boxes.
  180. .TP
  181. .B Switching between accounts
  182. mutt-wizard can configure as many as nine accounts each numbered by the lowest available number when configured. Press
  183. .I i
  184. followed by an account's number to change to that account: i2, i5, etc.
  185. .TP
  186. .B Sidebar
  187. mutt-wizard enables the sidebar by default which displays your account's boxes with mail tallies.
  188. .I B
  189. will toggle the sidebar. Move up and down in it with
  190. .I ctrl-k/j.
  191. Open a box with
  192. .I ctrl-o.
  193. .TP
  194. .B More information
  195. Remember that you can press
  196. .I ?
  197. at any time in neomutt to get a list of all key-bindings and functions. This list can also vary for different context menus.
  198. .SH AUTHORS
  199. Written by Luke Smith <luke@lukesmith.xyz> originally in 2018.
  200. .SH LICENSE
  201. GPLv3
  202. .SH SEE ALSO
  203. .BR neomutt (1),
  204. .BR neomuttrc (1)
  205. .BR mbsync (1),
  206. .BR msmtp (1),
  207. .BR notmuch (1),
  208. .BR abook (1)