forked from tarantool/tarantool
-
Notifications
You must be signed in to change notification settings - Fork 0
Mutt Configuration
Roman Tsisyk edited this page May 31, 2017
·
1 revision
~/.muttrc:
set ssl_starttls=yes
set ssl_force_tls=yes
set imap_user = "[email protected]"
set imap_pass = `cat ~/.muttpasswd`
set folder = "imaps://imap.mail.ru:993"
set spoolfile = "+INBOX"
set smtp_url = "smtp://[email protected]:587"
set smtp_pass="$imap_pass"
set from="[email protected]"
set realname="Roman Tsisyk"
set signature="~/.muttsignature"
set record="=Отправленные"
set postponed="=Черновики"
set trash='=Корзина'
# Use UTF-8 for outgoing mail
set send_charset="utf-8"
# Default charset for incoming messages
set assumed_charset="cp1251"
# Configure editor
set editor="vim -c 'set syntax=mail ft=mail'"
# Set domain name for Message-Id generation
set hostname='tarantool.org'
# Store message headers locally to speed things up.
set header_cache = "~/.cache/mutt"
# Store messages locally to speed things up, like searching message bodies.
# Can be the same folder as header_cache.
# This will cost important disk usage according to your e-mail amount.
set message_cachedir = "~/.cache/mutt"
# Define all your IMAP folders as "mailboxes" and then enter "mailboxes" view
set imap_list_subscribed
# Automatically poll subscribed mailboxes for new mail (new in 1.5.11)
set imap_check_subscribed
# Allow Mutt to open new imap connection automatically.
unset imap_passive
# Keep IMAP connection alive by polling intermittently (time in seconds).
set imap_keepalive = 30
# And poll the current mailbox more often (not needed with IDLE in post 1.5.11)
set timeout = 30
# How often to check for new mail (time in seconds).
set mail_check = 30
# Turn off "GPGME: CMS protocol not available"
set crypt_use_gpgme = no
# Make headers editable when you write e-mails
set edit_headers = yes
# Scroll inside the mssage rather than the index
bind pager <up> previous-line
bind pager <down> next-line
# If you start mutt and several new messages are in your inbox and you close
# mutt before you have read them, then those messages will get flagged as old.
set mark_old = no
Architecture Specifications
- Server architecture
- Feature specifications
- What's in a good specification
- Functional indexes
- Space _index structure
- R tree index quick start and usage
- LuaJIT
- Vinyl
- SQL
- Testing
- Performance
How To ...?
- ... add new fuzzers
- ... build RPM or Deb package using packpack
- ... calculate memory size
- ... debug core dump of stripped tarantool
- ... debug core from different OS
- ... debug Lua state with GDB
- ... generate new bootstrap snapshot
- ... use Address Sanitizer
- ... collect a coredump
Lua modules
Useful links