dotfiles

$HOME is where the <3 is
git clone git://git.alexkarle.com/dotfiles.git
Log | Files | Refs | Submodules | README

mbsyncrc (812B) [raw]


      1 # mbsyncrc -- see `man mbsync`
      2 
      3 # IMAP side
      4 #   SSLType -- connect with SSL
      5 IMAPStore karleco-far
      6 User alex@alexkarle.com
      7 Host imap.fastmail.com
      8 SSLType IMAPS
      9 PassCmd "+pass show mail/karleco-ro"
     10 
     11 # Filesystem side
     12 #   Flatten -- foo/bar -> foo.bar (better for mutt)
     13 MaildirStore karleco-near
     14 Path ~/mail/karleco/
     15 Inbox ~/mail/karleco/INBOX
     16 Flatten .
     17 
     18 # Channel to connect IMAP to Maildir Stores
     19 #   Patterns *  -- pull all directories
     20 #   SyncState * -- save state of channel in dir/.mbsyncstate
     21 #   Sync All    -- Pull/Push/New/reNew/Delete/Flags .. all the things!
     22 #   Create Both -- directories created both near and far
     23 #   CopyArrivalDate -- Sync down the IMAP arrival time (for sorting)
     24 Channel karleco
     25 Far :karleco-far:
     26 Near :karleco-near:
     27 Patterns *
     28 SyncState *
     29 Sync All
     30 Create Both
     31 CopyArrivalDate yes