aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2023-05-06 15:49:39 +0100
committerMatthew Lemon <y@yulqen.org>2023-05-06 15:49:39 +0100
commit8a8223774923e80d3a65660b8e2329be30f776da (patch)
tree86d0cdc5c5c3477836a64f70d801ae14b606bff5
parentb23337499a10130828f27ae4b77f65ba41330b10 (diff)
Adds working neomutt config - offlineimap too
Diffstat (limited to '')
-rw-r--r--msmtprc6
-rw-r--r--mutt/aliases1
-rw-r--r--mutt/colours11
-rw-r--r--mutt/mailcap18
-rw-r--r--mutt/signature4
-rw-r--r--mutt/subscriptions4
-rwxr-xr-xmutt/view_attachment.sh2
-rw-r--r--muttrc214
-rw-r--r--offlineimap.py8
-rw-r--r--offlineimaprc65
10 files changed, 165 insertions, 168 deletions
diff --git a/msmtprc b/msmtprc
index 2d151d9..d335c19 100644
--- a/msmtprc
+++ b/msmtprc
@@ -1,4 +1,4 @@
-account fastmail
+account matthewlemon
#host mail.messagingengine.com
host smtp.fastmail.com
from matt@matthewlemon.com
@@ -10,7 +10,7 @@ port 465
auth on
user mrlemon@mailforce.net
#passwordeval python2 -c "import keyring; print keyring.get_password('fastmail', 'matthewlemon')"
-passwordeval pass AppPasswords/mbsync_fastmail_may2022
+passwordeval pass evolution_email_fastmail
#passwordeval gpg --no-tty -q -d /home/lemon/.password-store/Email/fastmail.gpg
#passwordeval gpg -d /home/lemon/.password-store/Email/fastmail.gpg
logfile ~/.msmtp.log
@@ -26,4 +26,4 @@ logfile ~/.msmtp.log
#tls_trust_file /etc/ssl/certs/ca-certificates.crt
#passwordeval pass Email/gmail-application
-account default : fastmail
+account default : matthewlemon
diff --git a/mutt/aliases b/mutt/aliases
index 0db715b..fab124a 100644
--- a/mutt/aliases
+++ b/mutt/aliases
@@ -6,4 +6,3 @@ alias henry Gavin Macfarlane <gavmacfarlane@gmail.com>
alias dan Daniel Barwick <danbarwick@gmail.com>
alias neil Neil Byrne <nbyrne@wandsworth.gov.uk>
alias Keiron Keiron Hart <keironh@googlemail.com>
-alias openbsdlists <openbsdlists@speedymail.com>
diff --git a/mutt/colours b/mutt/colours
index 934de67..2f57890 100644
--- a/mutt/colours
+++ b/mutt/colours
@@ -1,5 +1,8 @@
## Theme kindly inspired from
## http://nongeekshandbook.blogspot.ie/2009/03/mutt-color-configuration.html
+
+
+## Colours for items in the index
#color index blue default ~N
color index brightblue default ~N
color index brightred black ~O
@@ -9,13 +12,11 @@ color index brightred black ~D
color index magenta default ~Q # replied-to
#color index black yellow ~U
color index red default ~T
-color sidebar_highlight color221 color233
mono index bold ~N
mono index bold ~F
mono index bold ~T
mono index bold ~D
-
## Highlights inside the body of a message.
## URLs
@@ -72,11 +73,7 @@ color quoted6 red black
color quoted7 green black
## Default color definitions
-#color hdrdefault white green
-
-# Progress bar - neomutt
-color progress white red
-
+#color hdrdefault white green
color normal white default
color signature brightmagenta black
color indicator black cyan
diff --git a/mutt/mailcap b/mutt/mailcap
index 51443c1..3657f08 100644
--- a/mutt/mailcap
+++ b/mutt/mailcap
@@ -2,24 +2,20 @@
# DONT HAVE A SOLUTION YET: application/msword; ~/.mutt/view_attachment.sh %s "-" '/Applications/TextEdit.app'
# Images
-image/jpg; ~/.mutt/view_attachment.sh %s jpg eog
-image/jpeg; ~/.mutt/view_attachment.sh %s jpg eog
-image/pjpeg; ~/.mutt/view_attachment.sh %s jpg eog
-image/png; ~/.mutt/view_attachment.sh %s png eog
-image/gif; ~/.mutt/view_attachment.sh %s gif eog
-#
-# patches
-text/x-patch; vimdiff '%s'; needsterminal
+image/jpg; ~/.mutt/view_attachment.sh %s jpg feh
+image/jpeg; ~/.mutt/view_attachment.sh %s jpg feh
+image/pjpeg; ~/.mutt/view_attachment.sh %s jpg gpicview
+image/png; ~/.mutt/view_attachment.sh %s png gpicview
+image/gif; ~/.mutt/view_attachment.sh %s gif gpicview
# PDFs
-application/pdf; ~/.mutt/view_attachment.sh %s pdf evince
+application/pdf; ~/.mutt/view_attachment.sh %s pdf zathura
# HTML
#text/html; ~/.mutt/view_attachment.sh %s html w3m # try different
# text/html; w3m %s; nametemplate=%s.html
# text/html; w3m -dump %s; nametemplate=%s.html; copiousoutput
-# text/html; lynx -dump %s; nametemplate=%s.html; copiousoutput
-text/html; firefox %s; nametemplate=%s.html
+text/html; lynx -dump %s; nametemplate=%s.html; copiousoutput
# Plain Text
text/plain; cat; copiousoutput; edit=$VISUAL %s
diff --git a/mutt/signature b/mutt/signature
index 0b4207a..c375431 100644
--- a/mutt/signature
+++ b/mutt/signature
@@ -1 +1,3 @@
-Matthew
+
+Matthew Lemon
+Email: matt@matthewlemon.com
diff --git a/mutt/subscriptions b/mutt/subscriptions
index bfadc6d..3b7eac4 100644
--- a/mutt/subscriptions
+++ b/mutt/subscriptions
@@ -1,7 +1,3 @@
subscribe debian-user@lists.debian.org
subscribe python-list
subscribe ubuntu-news@lists.ubuntu.com
-subscribe announce@openbsd.org
-subscribe gabor@szabgab.com
-subscribe misc@openbsd.org
-subscribe ports@openbsd.org
diff --git a/mutt/view_attachment.sh b/mutt/view_attachment.sh
index a7651b4..f391399 100755
--- a/mutt/view_attachment.sh
+++ b/mutt/view_attachment.sh
@@ -1,4 +1,4 @@
-#!/usr/bin/bash
+#!/bin/bash
#
# Author: Eric Gebhart
#
diff --git a/muttrc b/muttrc
index cb75059..47808e4 100644
--- a/muttrc
+++ b/muttrc
@@ -3,13 +3,9 @@
# at http://stevelosh.com/blog/2012/10/the-homely-mutt/#contacts
# source the mutt-solarized colorscheme
-#source ~/openbsd-dotfiles/mutt/mutt-colors-solarized-dark-256.muttrc
-#source ~/.mutt/mutt-colors-solarized-light-256.muttrc
-#source ~/.mutt/colors_purple
-#source ~/.mutt/colors256-light
-#source ~/.mutt/muttrc-softyellowgreen
+#source ~/dotfiles/.mutt/mutt-colors-solarized-dark-256.muttrc - no because it doesn't really work ya radge
-set folder = ~/Mail/fastmail # mailbox location
+set folder = ~/.mail/ # mailbox location
set alias_file = ~/.mutt/aliases # where to store aliases
set header_cache = ~/.mutt/cache/headers # where to store headers
set message_cachedir = ~/.mutt/cache/bodies # where to store bodies
@@ -18,10 +14,6 @@ set mailcap_path = ~/.mutt/mailcap # entries for filetypes
set tmpdir = ~/.mutt/temp # where to keep temp files
set signature = ~/.mutt/signature # my signature file
-source ~/.mutt/subscriptions # Define the list of subscribed mailing lists.
-#source ~/.mutt/colours # Define colours.
-source ~/.mutt/mutt-colors-solarized-dark-256.muttrc # Define colours.
-
# Allow forwarding of attachments with emails
set mime_forward
set mime_forward_rest
@@ -45,8 +37,8 @@ set text_flowed=yes
# Sidebar Patch --------------------------------------
#set sidebar_delim = '│'
-set sidebar_visible = no
-set sidebar_width = 20
+set sidebar_visible = yes
+set sidebar_width = 15
#set sidebar_format = "%B%?F? [%F]?%* %?N?%N/?%S"
set mail_check_stats
#set sidebar_width = 24
@@ -68,7 +60,7 @@ hdr_order from: to: cc: bcc: date: subject: # and in this order
# Account Settings -----------------------------------
# Default inbox.
-set spoolfile = "+INBOX"
+set spoolfile = "+matt-matthewlemon.com/INBOX"
#set spoolfile = "+INBOX"
# Alternate email addresses.
@@ -77,21 +69,14 @@ set spoolfile = "+INBOX"
# Mailboxes to show in the sidebar.
subscribe announce@openbsd.org
-subscribe ports-changes@cvs.openbsd.org
-subscribe tech@openbsd.org
-subscribe ports@openbsd.org
-subscribe misc@openbsd.org
-subscribe peter@golangweekly.com
-
-# groups
-alternates -group me '^matt@matthewlemon.com$' '^matthew.lemon@gmail.com$' '^matthew.lemon104@mod.gov.uk$'
-
-# named-mailboxes Inbox +INBOX \
-# Sent\ Items +Sent\ Items \
-# Archive +Archive \
-# Drafts +Drafts \
-# Trash +Trash \
+named-mailboxes Inbox +matt-matthewlemon.com/INBOX \
+ Sent +matt-matthewlemon.com/Sent \
+ Archive +matt-matthewlemon.com/Archive \
+ Drafts +matt-matthewlemon.com/Drafts \
+ # Archive.2020 +matt-matthewlemon.com/Archive.2020 \
+ # Sent.2020 +matt-matthewlemon.com/Sent.2020 \
+ Trash +matt-matthewlemon.com/Trash
# mailboxes +matt-matthewlemon.com/INBOX \
# +matt-matthewlemon.com/INBOX.Archive \
@@ -101,12 +86,12 @@ alternates -group me '^matt@matthewlemon.com$' '^matthew.lemon@gmail.com$' '^mat
#mailboxes +INBOX +INBOX.Archive +INBOX.Sent\ Items +INBOX.Drafts +INBOX.Trash
# Other special folders.
-set mbox = "+Archive"
-set postponed = "+Drafts"
+set mbox = "+matt-matthewlemon.com/INBOX.Archive"
+set postponed = "+matt-matthewlemon.com/INBOX.Drafts"
# Index View Options ---------------------------------
-set date_format = "%d-%m-%Y %H:%M "
-set index_format = "%4C [%Z] %B %D %-20.20F %s"
+set date_format = "%d-%m-%Y"
+set index_format = "[%Z] %B %D %-20.20F %s"
set sort = threads # like gmail
set sort_aux = reverse-last-date-received # like gmail
set uncollapse_jump # don't collapse on an unread message
@@ -128,9 +113,9 @@ macro index,pager \cb <pipe-entry>'urlview'<enter> 'Follow links with urlview'
macro attach,compose \cb <pipe-entry>'urlview'<enter> 'Follow links with urlview'
# Folder Shortcuts
-macro index Ei '<change-folder>+INBOX<enter>' 'Go to Inbox'
-macro index Ea '<change-folder>+Archive<enter>' 'Go to Archive'
-macro index Es '<change-folder>+Sent<enter>' 'Go to Sent Mail'
+macro index Ei '<change-folder>+matt-matthewlemon.com/INBOX<enter>' 'Go to Inbox'
+macro index Ea '<change-folder>+matt-matthewlemon.com/Archive<enter>' 'Go to Archive'
+macro index Es '<change-folder>+matt-matthewlemon.com/Sent<enter>' 'Go to Sent Mail'
# Navigate threads
bind index { previous-thread
@@ -142,25 +127,12 @@ bind index R group-reply
bind index <tab> sync-mailbox
bind index <space> collapse-thread
-# Email the sender (not a reply)
-bind index,pager @ compose-to-sender
-
-
-# toggle new
-bind index \Cn toggle-new
-
# Ctrl-R to mark all as read
macro index \Cr "T~U<enter><tag-prefix><clear-flag>N<untag-pattern>.<enter>" "mark all messages as read"
# Sync email
-macro index O "<shell-escape>clear && mbsync fastmailchannel && mrlnotmuch.sh <enter>" "run offlineimap to sync all mail"
-
-# update notmuch
-macro index V "<shell-escape>notmuch new<enter>"
-macro index K "<shell-escape>notmuch tag +inbox +unread -new -- tag:new<enter>"
-
-# macro index O "<shell-escape>offlineimap<enter>" "run offlineimap to sync all mail"
-# macro index o "<shell-escape>offlineimap -qf INBOX<enter>" "run offlineimap to sync inbox"
+macro index O "<shell-escape>offlineimap<enter>" "run offlineimap to sync all mail"
+macro index o "<shell-escape>offlineimap -qf INBOX<enter>" "run offlineimap to sync inbox"
# Saner copy/move dialogs
macro index C "<copy-message>?<toggle-mailboxes>" "copy a message to a mailbox"
@@ -185,6 +157,8 @@ alternative_order text/plain text/enriched text/html
# fix background colour
#color normal white black
+# identifies URLs
+
# Pager Key Bindings ---------------------------------
bind pager k previous-line
bind pager j next-line
@@ -196,6 +170,9 @@ bind pager R group-reply
# View attachments properly.
bind attach <return> view-mailcap
+# open links
+macro pager \Cu "|urlview<enter>" "call urlview to open links"
+
# Compose View Options -------------------------------
set realname = "Matthew Lemon" # who am i?
set envelope_from # which from?
@@ -213,19 +190,13 @@ set reverse_name # reply as whomever it was to
set include # include message in replies
set forward_quote # include message in forwards
-set editor = "vim" # Use terminal Vim to compose email.
-#set editor = "emacsclient -t %s"
-
-set from = "matt@matthewlemon.com"
-#set sendmail = "/usr/bin/msmtp -a fastmail"
-# set sendmail_wait = 0
+#set editor = "vim" # Use terminal Vim to compose email.
+set editor = "vim %s"
-set smtp_authenticators = PLAIN # see https://github.com/neomutt/neomutt/pull/3524
-set smtp_pass = `pass show AppPasswords/mbsync_fastmail_may2022`
-set imap_user = "mrlemon@mailforce.net"
-set smtp_url = "smtps://$imap_user:$smtp_pass@smtp.fastmail.com:465/"
-
-set record = "+Sent"
+set from = "matt@matthewlemon.com"
+set sendmail = "/usr/bin/msmtp -a matthewlemon"
+set sendmail_wait = 0
+set record = "+matt-matthewlemon.com/Sent"
bind compose p postpone-message
bind index p recall-message
@@ -233,13 +204,21 @@ bind index p recall-message
# Get mutt to understand the contacts command line prog which reads Contacts
#set query_command = "contacts -Sf '%eTOKEN%n' '%s' | sed -e 's/TOKEN/\t/g'"
+# khard
+set query_command = "/home/lemon/src/virtualenvs/khal-venv/bin/khard email --parsable %s"
+
## Abook
-set query_command= "abook --mutt-query '%s'"
+#set query_command= "abook --mutt-query '%s'"
macro generic,index,pager \ca "<shell-escape>abook<return>" "launch abook"
macro index,pager A "<pipe-message>abook --add-email<return>" "Add this sender to Abook"
bind editor <Tab> complete-query
bind editor ^T complete
+#set query_command = "khard email --parsable %s"
+# bind editor <Tab> complete-query
+# bind editor ^T complete
+# macro index,pager A "<pipe-message>khard add-email<return>" "add the sender email address to khard"
+
# Better searching in mutt
bind index N search-opposite
bind pager N search-opposite
@@ -248,11 +227,42 @@ macro index a "<limit>all\n" "show all messages (undo limit)"
# get an email from mutt to taskwarrior
macro index T "<pipe-message>mutt2task<enter> <move-message>+matt-matthewlemon.com/INBOX.Archive<enter>"
+# Handle searching using notmuch (see Steve Losh article)
+# this doesn't work on linux so using another macro index S "<enter-command>unset wait_key<enter><shell-escape>mutt-notmuch-py.py ~/.mail/temporary/search<enter><change-folder-readonly>+temporary/search<enter>" "search mail (using notmuch)"
+
+
+#new notmuch-mutt for linux
+
+macro index <F8> \
+"<enter-command>set my_old_pipe_decode=\$pipe_decode my_old_wait_key=\$wait_key nopipe_decode nowait_key<enter>\
+<shell-escape>notmuch-mutt -r --prompt search<enter>\
+<change-folder-readonly>`echo ${XDG_CACHE_HOME:-$HOME/.cache}/notmuch/mutt/results`<enter>\
+<enter-command>set pipe_decode=\$my_old_pipe_decode wait_key=\$my_old_wait_key<enter>" \
+ "notmuch: search mail"
+
+macro index <F9> \
+"<enter-command>set my_old_pipe_decode=\$pipe_decode my_old_wait_key=\$wait_key nopipe_decode nowait_key<enter>\
+<pipe-message>notmuch-mutt -r thread<enter>\
+<change-folder-readonly>`echo ${XDG_CACHE_HOME:-$HOME/.cache}/notmuch/mutt/results`<enter>\
+<enter-command>set pipe_decode=\$my_old_pipe_decode wait_key=\$my_old_wait_key<enter>" \
+ "notmuch: reconstruct thread"
+
+macro index <F6> \
+"<enter-command>set my_old_pipe_decode=\$pipe_decode my_old_wait_key=\$wait_key nopipe_decode nowait_key<enter>\
+<pipe-message>notmuch-mutt tag -- -inbox<enter>\
+<enter-command>set pipe_decode=\$my_old_pipe_decode wait_key=\$my_old_wait_key<enter>" \
+ "notmuch: remove message from inbox"
+
+
+# old Losh OSX-based orientation
+#macro index <F8> "<enter-command>unset wait_key<enter><shell-escape>/usr/bin/notmuch-mutt --prompt search<enter><change-folder-readonly>~/.cache/mutt_results<enter>" "search mail (using notmuch)"
+#macro index <F9> "<enter-command>unset wait_key<enter><pipe-message>/usr/bin/notmuch-mutt thread<enter><change-folder-readonly>~/.cache/mutt_results<enter><enter-command>set wait_key<enter>" "search and reconstruct owning thread (using notmuch)"
+#
#source ~/.mutt/gpg.rc # Use GPG
#source ~/.mutt/auto_views # Define auto_views.
source ~/.mutt/aliases # Load in my aliases.
source ~/.mutt/subscriptions # Define the list of subscribed mailing lists.
-source ~/.mutt/mailboxes # Define the list of folders that receive mail.
+#source ~/.mutt/mailboxes # Define the list of folders that receive mail.
#source ~/.mutt/headers # Configure header display.
#source ~/.mutt/folder-hooks # Define folder-hooks.
#source ~/.mutt/save-hooks # Define save-hooks.
@@ -260,86 +270,10 @@ source ~/.mutt/mailboxes # Define the list of folders that receiv
#source ~/.mutt/message-hooks # Define message hooks.
#source ~/.mutt/bindings # Define key bindings.
#source ~/.mutt/macros # Define macros.
-#source ~/.mutt/colours # Define colours.
+source ~/.mutt/colours # Define colours.
#source ~/.mutt/sidebar # Define sidebar support (requires sidebar patch)
#
# MAILCAP
auto_view text/html
-# example notmuch config:
-set virtual_spoolfile=yes
-
-# --------------------------------------------------------------------------
-# notmuch VARIABLES – shown with their default values
-# --------------------------------------------------------------------------
-# This variable specifies notmuch query limit.
-set nm_db_limit = 0
-# This variable specifies the default Notmuch database in format:
-# notmuch://<absolute path>
-set nm_default_url = "notmuch:///home/lemon/Mail"
-#set nm_default_url = ""
-# The messages tagged with these tags are excluded and not loaded
-# from notmuch DB to NeoMutt unless specified explicitly.
-set nm_exclude_tags = ""
-# This option specifies timeout for Notmuch database. Default is 5 seconds.
-set nm_open_timeout = 5
-# This variable specifies notmuch query type, supported types: 'threads' and
-# 'messages'.
-set nm_query_type = messages
-# When writing a message in the NeoMutt record (see $record in the NeoMutt docs),
-# also add it to the notmuch DB. Replies inherit the tags from the original email.
-set nm_record = no
-# Tags modifications to the messages stored in the NeoMutt record.
-# example:
-# set record = "~/sent-mails"
-# set nm_record = yes
-# set nm_record_tags = "-inbox,archive,me"
-set nm_record_tags = ""
-# This variable specifies the notmuch tag used for unread messages.
-set nm_unread_tag = unread
-# This variable allows you to customize the file browser display for virtual
-# folders to your personal taste.
-# %C current folder number
-# %f folder name (description)
-# %m number of messages in the mailbox *
-# %n number of unread messages in the mailbox *
-# %N N if mailbox has new mail, blank otherwise
-# %>X right justify the rest of the string and pad with character ``X''
-# %|X pad to the end of the line with character ``X''
-# %*X soft-fill with character ``X'' as pad
-set vfolder_format = "%6n(%6N) %f"
-# When set, NeoMutt will use the first virtual mailbox (see virtual-mailboxes)
-# as a spool_file.
-#set virtual_spool_file = no
-# setup time window preferences
-# first setup the duration, and then the time unit of that duration
-# when set to 0 (the default) the search window feature is disabled
-# unless explicitly enabled with nm_query_window_enable.
-set nm_query_window_enable=no
-set nm_query_window_duration=0
-set nm_query_window_timebase="year" # or "hour", "day", "week", "month", "year"
-# Extend query window to always show mail matching these terms.
-#set nm_query_window_or_terms="tag:unread and tag:flagged"
-# --------------------------------------------------------------------------
-# FUNCTIONS – shown with an example mapping
-# --------------------------------------------------------------------------
-# open a different virtual folder
-bind index,pager X change-vfolder
-# read entire thread of the current message
-bind index,pager + entire-thread
-# generate virtual folder from query
-bind index,pager \eX vfolder-from-query
-# generate virtual folder from query with time window
-bind index < vfolder-window-backward
-bind index > vfolder-window-forward
-# toggle between mailboxes and virtual mailboxes
-# bind index,pager ??? sidebar-toggle-virtual
-# --------------------------------------------------------------------------
-# COMMANDS – shown with an example
-# --------------------------------------------------------------------------
-# virtual-mailboxes description notmuch-URL { description notmuch-URL ...}
-# virtual-mailboxes "Climbing" "notmuch://?query=climbing"
-# unvirtual-mailboxes { * | mailbox ...}
-#
-# --------------------------------------------------------------------------
# vim: ft=muttrc
diff --git a/offlineimap.py b/offlineimap.py
new file mode 100644
index 0000000..1f829c7
--- /dev/null
+++ b/offlineimap.py
@@ -0,0 +1,8 @@
+#!/usr/bin/env python3
+# -*- coding: utf-8 -*-
+
+from subprocess import check_output
+
+def get_pass(account):
+ print(account)
+ return check_output("pass " + account, shell=True).splitlines()[0]
diff --git a/offlineimaprc b/offlineimaprc
new file mode 100644
index 0000000..da7918b
--- /dev/null
+++ b/offlineimaprc
@@ -0,0 +1,65 @@
+[general]
+ui = TTY.TTYUI
+#accounts = MatthewLemon, Gmail
+accounts = MatthewLemon
+pythonfile=~/.offlineimap.py
+fsync = False
+
+[Account MatthewLemon]
+localrepository = MatthewLemon-Local
+remoterepository = MatthewLemon-Remote
+#status_backend = sqlite
+#postsynchook = notmuch new
+
+[Repository MatthewLemon-Local]
+type = Maildir
+localfolders = ~/.mail/matt-matthewlemon.com
+# nametrans = lambda folder: {'drafts': '/Drafts',
+# 'sent': '/Sent',
+# 'archive': '/Archive',
+# 'inbox': '/Inbox',
+# }.get(folder, folder)
+
+[Repository MatthewLemon-Remote]
+#cert_fingerprint = 54137524fe721f0cbb8a6a0e1e280ade50482e29
+maxconnections = 3
+type = IMAP
+#remotehost = mail.messagingengine.com
+remotehost = imap.fastmail.com
+#ssl = yes
+sslcacertfile = /etc/ssl/certs/ca-certificates.crt
+#sslcacertfile = /etc/ssl/cert.pem
+remoteuser = mrlemon@mailforce.net
+remotepasseval = get_pass("evolution_email_fastmail")
+#remotepasseval = keyring.get_password('offlineimap', 'matthewlemon')
+nametrans = lambda folder: {'/Drafts': 'drafts',
+ '/Sent': 'sent',
+ '/Archive': 'archive',
+ '/Inbox': 'inbox',
+ '/Trash': 'trash',
+ }.get(folder, folder)
+folderfilter = lambda folder: folder in ['INBOX', 'Archive', 'Sent', 'Drafts', 'Trash']
+#folderfilter = lambda folder: folder in ['INBOX', 'INBOX.Sent Items', 'INBOX.Archive', 'INBOX.Drafts']
+
+#[Account Gmail]
+#localrepository = Gmail-Local
+#remoterepository = Gmail-Remote
+#synclabels = yes
+#
+#[Repository Gmail-Local]
+#type = GmailMaildir
+#localfolders = ~/.mail/matthew.lemon-gmail.com
+#
+#[Repository Gmail-Remote]
+#type = Gmail
+#remoteuser = matthew.lemon@gmail.com
+#remotepass = hvhmfbdlgggebxgc
+#nametrans = lambda folder: {'drafts': '/Drafts',
+# 'sent': '/Sent',
+# 'archive': '/Archive',
+# 'inbox': '/Inbox',
+# }.get(folder, folder)
+#folderfilter = lambda foldername: foldername not in ['Gmail]/All Mail']
+#sslcacertfile = /etc/ssl/certs/ca-certificates.crt
+#ssl_version = tls1_2
+