Advertisement
Guest User

Untitled

a guest
Jan 26th, 2015
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.21 KB | None | 0 0
  1. # Сброс настроек
  2. ignore *
  3. unignore Date To From: Subject
  4.  
  5.  
  6. # # Здесь оставлено место для цветовой гаммы...
  7.  
  8. color hdrdefault red default
  9. color quoted brightblue default
  10. color signature red default
  11. color indicator brightyellow red
  12. color error brightred default
  13. color status yellow blue
  14. color tree magenta default
  15. color tilde magenta default
  16. color message brightcyan default
  17. color markers brightcyan default
  18. color attachment brightmagenta default
  19. color search default green
  20.  
  21. color header brightred default ^(From|To|Cc|Reply-To|Subject):
  22. color body magenta default "(ftp|https?)://[^ ]+"
  23. color body magenta default [-a-z_0-9.+]+@[-a-z_0-9.]+
  24. color underline brightgreen default
  25.  
  26. #attributes when using a mono terminal
  27. mono header underline ^(From|To|Cc|Reply-To|Subject):
  28. mono quoted bold
  29.  
  30. # Задолбал спрашивать
  31. #set confirmcreate=no
  32.  
  33. set certificate_file="~/.mutt/certificates"
  34.  
  35. # # В mutt нет адресной книги, поэтому мы польземся алиасами
  36. source "~/.mutt/aliases"
  37. set alias_file="~/.mutt/aliases"
  38. #
  39. # # Кириллизация всего и вся ;)
  40. set allow_8bit=yes
  41. set ascii_chars=yes
  42. set charset="utf-8"
  43. set send_charset="utf-8:koi8-r:us-ascii:iso-8859-1"
  44. #
  45. # # Не пищать!
  46. set beep=yes
  47. #
  48. # # Внешний вид просмотрщика ящика
  49. set index_format="%4C %Z %{%b %d} %-15.15F %s"
  50. set to_chars=" TCF"
  51. set sort=threads
  52. #
  53. # # Что считать за квотирование
  54. set quote_regexp="^([ \t[A-Za-zА-Яа-я]*]*[>+])+"
  55. #
  56. # # Какие заголовки отображать
  57. hdr_order Date From To Subject
  58. #
  59. # # Весьма удобная штука
  60. set pager_context=1
  61. set pager_index_lines=6
  62. #
  63. # # Различные предустановки ответов
  64. set include=ask-yes
  65. set fast_reply=yes
  66. set confirmappend=no
  67. #
  68. # # К написанию писем
  69. set edit_headers=yes
  70.  
  71. # a écrit:
  72.  
  73. set attribution="%n ☫ → %t @ %d\n"
  74. set date_format="!%a, %b %d, %Y %H:%M %Z"
  75. set indent_string="> "
  76. set editor="nano"
  77. #
  78. #
  79.  
  80.  
  81. set imap_check_subscribed=yes
  82. #macro index q '<change-folder>?<toggle-mailboxes>'
  83. #macro browser q '<exit><quit>'
  84.  
  85. set folder="imap://imap.arta.kz/INBOX"
  86.  
  87. mailboxes "imap://imap.arta.kz/INBOX"
  88. account-hook "imap://imap.arta.kz" 'source ~/.mutt/profiles/arta'
  89.  
  90.  
  91.  
  92. # # Почтовые ящики
  93. # set folder="~/Mail"
  94. set sort_browser=reverse-size
  95. #
  96. # # Все связанное с отсылкой писем
  97. set realname="D K"
  98. set from="D K <d.kakhowskiy@arta.kz>"
  99. set envelope_from=yes
  100. ###set signature="sign.sh|"
  101. set sendmail="/usr/sbin/sendmail -oi"
  102. #set sendmail="/usr/sbin/sendmail -f $from -h smtp.arta.kz"
  103. #
  104. # # ПЖП пусть отдохнет...
  105. set pgp_verify_sig=no
  106. set move=no
  107.  
  108. # для всяких вложений
  109. alternative_order text/enriched text/plain text text/html
  110. auto_view text/html application/msword application/vnd.msword application/vnd.oasis.opendocument.text application/x-gzip application/x-gunzip
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement