mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-02-17 09:37:49 +01:00
auto complete addresses
This commit is contained in:
parent
aeeb1ab093
commit
b664ff1763
6
mutt/.mailcap
Normal file
6
mutt/.mailcap
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
application/octet-stream ; echo %s "can be anything..." ; copiousoutput
|
||||||
|
text/html ; /usr/bin/elinks -dump %s ; nametemplate=%s.html ; copiousoutput
|
||||||
|
application/pdf ; /usr/bin/zathura %s ; copiousoutput
|
||||||
|
image/* ; /usr/bin/mirage %s ; copiousoutput
|
||||||
|
audio/* ; /usr/bin/mplayer %s ; copiousoutput
|
||||||
|
video/* ; /usr/bin/mplayer %s ; copiousoutput
|
16
mutt/.muttrc
16
mutt/.muttrc
|
@ -3,11 +3,17 @@
|
||||||
# Change the following six lines to match your Gmail account details
|
# Change the following six lines to match your Gmail account details
|
||||||
set imap_user = "%GMAIL_LOGIN%"
|
set imap_user = "%GMAIL_LOGIN%"
|
||||||
set imap_pass = "%GMAIL_PASS%" # leave blank for prompt
|
set imap_pass = "%GMAIL_PASS%" # leave blank for prompt
|
||||||
set smtp_url = "smtps://$imap_user@smtp.gmail.com:465/"
|
set smtp_url = "smtp://$imap_user@smtp.gmail.com:587"
|
||||||
set smtp_pass = "%GMAIL_PASS%" # will prompt if blank
|
set smtp_pass = "$imap_pass"
|
||||||
set from = "%GMAIL_FROM%"
|
set from = "%GMAIL_FROM%"
|
||||||
set realname = "%GMAIL_NAME%"
|
set realname = "%GMAIL_NAME%"
|
||||||
|
|
||||||
|
# activate TLS if available on the server
|
||||||
|
set ssl_starttls=yes
|
||||||
|
|
||||||
|
# always use SSL when connecting to a server
|
||||||
|
set ssl_force_tls=yes
|
||||||
|
|
||||||
# Change the following line to a different editor you prefer (and update the Dockerfile accordingly, of course).
|
# Change the following line to a different editor you prefer (and update the Dockerfile accordingly, of course).
|
||||||
set editor = "vim"
|
set editor = "vim"
|
||||||
|
|
||||||
|
@ -31,9 +37,9 @@ set folder = "imaps://imap.gmail.com:993"
|
||||||
set spoolfile = "+INBOX"
|
set spoolfile = "+INBOX"
|
||||||
set imap_check_subscribed
|
set imap_check_subscribed
|
||||||
set hostname = gmail.com
|
set hostname = gmail.com
|
||||||
set mail_check = 120
|
|
||||||
set timeout = 300
|
set timeout = 300
|
||||||
set imap_keepalive = 300
|
set imap_keepalive = 300
|
||||||
|
set mail_check = 60
|
||||||
set postponed = "+[Gmail]/Drafts"
|
set postponed = "+[Gmail]/Drafts"
|
||||||
set record = "" # gmail automatically handles saving sent emails
|
set record = "" # gmail automatically handles saving sent emails
|
||||||
|
|
||||||
|
@ -58,6 +64,8 @@ bind editor <Tab> complete-query
|
||||||
bind editor ^T complete
|
bind editor ^T complete
|
||||||
bind editor <space> noop
|
bind editor <space> noop
|
||||||
|
|
||||||
|
set mailcap_path = ~/.mailcap
|
||||||
|
|
||||||
# Gmail-style keyboard shortcuts
|
# Gmail-style keyboard shortcuts
|
||||||
macro index,pager gi "<change-folder>=INBOX<enter>" "Go to Inbox"
|
macro index,pager gi "<change-folder>=INBOX<enter>" "Go to Inbox"
|
||||||
macro index,pager ga "<change-folder>=[Gmail]/All Mail<enter>" "Go to All Mail"
|
macro index,pager ga "<change-folder>=[Gmail]/All Mail<enter>" "Go to All Mail"
|
||||||
|
@ -65,7 +73,7 @@ macro index,pager gs "<change-folder>=[Gmail]/Starred<enter>" "Go to Starred"
|
||||||
macro index,pager gd "<change-folder>=[Gmail]/Drafts<enter>" "Go to Drafts"
|
macro index,pager gd "<change-folder>=[Gmail]/Drafts<enter>" "Go to Drafts"
|
||||||
macro index,pager gt "<change-folder>=[Gmail]/Sent Mail<enter>" "Go to Sent Mail"
|
macro index,pager gt "<change-folder>=[Gmail]/Sent Mail<enter>" "Go to Sent Mail"
|
||||||
|
|
||||||
macro index,pager y "<enter-command>unset trash\n <delete-message>" "Archive"
|
macro index,pager y "<enter-command>unset resolve<enter><enter-command>unset trash<enter><clear-flag>N<enter-command>set resolve<enter><delete-message><enter>"
|
||||||
macro index,pager d "<enter-command>set trash=\"imaps://imap.googlemail.com/[GMail]/Bin\"\n <delete-message>" "Trash"
|
macro index,pager d "<enter-command>set trash=\"imaps://imap.googlemail.com/[GMail]/Bin\"\n <delete-message>" "Trash"
|
||||||
|
|
||||||
macro index,pager ! <save-message>=[Gmail]/Spam<enter><enter> "Report spam"
|
macro index,pager ! <save-message>=[Gmail]/Spam<enter><enter> "Report spam"
|
||||||
|
|
|
@ -10,6 +10,7 @@ RUN apt-get update && apt-get install -y \
|
||||||
mutt-patched \
|
mutt-patched \
|
||||||
vim-nox \
|
vim-nox \
|
||||||
--no-install-recommends
|
--no-install-recommends
|
||||||
|
|
||||||
ENV BROWSER lynx
|
ENV BROWSER lynx
|
||||||
ENV TERM xterm-256color
|
ENV TERM xterm-256color
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user