Advertisement
Guest User

Untitled

a guest
May 5th, 2017
592
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.05 KB | None | 0 0
  1.  
  2. # ~/.muttrc
  3.  
  4. # AddiKT1ve <the.addikt1ve@gmail.com>
  5.  
  6.  
  7.  
  8. # Identification
  9.  
  10. set imap_user = "LOGIN@gmail.com"
  11.  
  12. set imap_pass = "PASSWORD"
  13. # Configuration Compte
  14.  
  15. set smtp_url = "smtp://LOGIN@smtp.gmail.com:587/"
  16.  
  17. set smtp_pass = "PASSWORD"
  18. set from = "LOGIN@gmail.com"
  19.  
  20. set realname = "LOGIN"
  21.  
  22. # Configuration Gmail
  23.  
  24. set folder = "imaps://imap.gmail.com:993"
  25. set spoolfile = "+INBOX"
  26. set postponed="+[Gmail]/Drafts"
  27. # Utilisation du cache
  28. set header_cache=~/.mutt/cache/headers
  29. set message_cachedir=~/.mutt/cache/bodies
  30. set certificate_file=~/.mutt/certificates
  31.  
  32. set record="~/.mutt/sent"
  33.  
  34. # Une signature
  35.  
  36. set signature="~/.mutt/.signature"
  37.  
  38.  
  39.  
  40. set move = no
  41.  
  42.  
  43.  
  44. set sort = �threads�
  45.  
  46. set sort_aux = �last-date-received�
  47.  
  48. set imap_check_subscribed
  49.  
  50.  
  51.  
  52. ignore "Authentication-Results:"
  53.  
  54. ignore "DomainKey-Signature:"
  55.  
  56. ignore "DKIM-Signature:"
  57.  
  58. hdr_order Date From To Cc
  59.  
  60.  
  61. # Heures et dates fran�aises
  62.  
  63. set locale="fr_FR.UTF-8"
  64. set charset="utf-8" # character set for your terminal
  65. set assumed_charset="utf-8"
  66. set send_charset="utf-8:iso-8859-15:us-ascii"
  67. set date_format="%A %d %b %Y � %H:%M:%S (%Z)"
  68. # Meilleure lisibilit� des citations
  69. set attribution="Le %d, %n a �crit :"
  70. set forward_format="[Fwd: %s]"
  71. set forward_quote
  72.  
  73. # GPG (optionnel)
  74. set pgp_decode_command="gpg %?p?�passphrase-fd 0? �no-verbose �batch �output � %f"
  75. set pgp_verify_command="gpg �no-verbose �batch �output � �verify %s %f"
  76. set pgp_decrypt_command="gpg �passphrase-fd 0 �no-verbose �batch �output � %f"
  77. set pgp_sign_command="gpg �no-verbose �batch �output � �passphrase-fd 0 �armor �detach-sign �textmode %?a?-u %a? %f"
  78. set pgp_clearsign_command="gpg �no-verbose �batch �output � �passphrase-fd 0 �armor �textmode �clearsign %?a?-u %a? %f"
  79. set pgp_encrypt_only_command="pgpewrap gpg �batch �quiet �no-verbose �output � �encrypt �textmode �armor �always-trust �encrypt-to 0xVOTRECLEF_ID � -r %r � %f"
  80.  
  81. set pgp_encrypt_sign_command="pgpewrap gpg �passphrase-fd 0 �batch �quiet �no-verbose �textmode �output � �encrypt �sign %?a?-u %a? �armor �always-trust �encrypt-to 0xVOTRECLEF_ID � -r %r � %f"
  82.  
  83. set pgp_import_command="gpg �no-verbose �import -v %f"
  84.  
  85. set pgp_export_command="gpg �no-verbose �export �armor %r"
  86. set pgp_verify_key_command="gpg �no-verbose �batch �fingerprint �check-sigs %r"
  87. set pgp_list_pubring_command="gpg �no-verbose �batch �with-colons �list-keys %r"
  88. set pgp_list_secring_command="gpg �no-verbose �batch �with-colons �list-secret-keys %r"
  89.  
  90. set pgp_autosign=yes
  91.  
  92. set pgp_sign_as=0xVOTRECLEF_ID
  93.  
  94. set pgp_replyencrypt=yes
  95.  
  96. set pgp_timeout=1800
  97.  
  98. set pgp_good_sign="^gpg: Good signature from"
  99.  
  100.  
  101.  
  102. # Couleurs (meilleure lisibilit�)
  103.  
  104. color attachment magenta default # attachments
  105.  
  106. color body brightred default "(ftp|http)://[^ ]+" # point out URLs
  107.  
  108. color body brightcyan default [-a-z_0-9.]+@[-a-z_0-9.]+ # e-mail addresses
  109.  
  110. color bold brightblue default # boldface text
  111.  
  112. color error brightwhite red # error messages
  113.  
  114. color hdrdefault magenta default # default color of message header
  115.  
  116. color header brightmagenta default ^(From): # From and Subject header
  117.  
  118. color header brightwhite default ^(Subject): # From and Subject header
  119.  
  120. color header brightwhite default ^(Date): # Date header
  121.  
  122. color header white default ^(In-Reply-To):
  123.  
  124. color indicator brightred default # indicator bar
  125.  
  126. color markers brightblue default # wrapped line markers (+)
  127.  
  128. color message brightblack green # status messages
  129.  
  130. color normal default default # default
  131.  
  132. color quoted yellow default # quoted text, 1st quote level
  133.  
  134. color quoted1 green default # quoted text, 2nd quote level
  135.  
  136. color quoted2 brightblue default # quoted text, 3rd quote level
  137.  
  138. color quoted3 blue default # quoted text, 4th quoet level
  139.  
  140. color search black yellow # matched search patterns in pager
  141.  
  142. color signature red default # the signature (after sigdashes)
  143.  
  144. color status default blue # status lines
  145.  
  146. color tilde brightblue default # � ~ � used to pad blank lines
  147.  
  148. color tree green default # thread tree in the index menu
  149.  
  150. color underline brightgreen default # underlined text
  151.  
  152.  
  153.  
  154. # Binding
  155.  
  156. bind index "^" imap-fetch-mail
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement