add other MUA related config files
This commit is contained in:
4
offlineimap/.gitignore
vendored
Normal file
4
offlineimap/.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
.offlineimap/Account-FSFE
|
||||
.offlineimap/Repository-FSFE-local
|
||||
.offlineimap/Repository-FSFE-remote
|
||||
.offlineimap/pid
|
||||
5
offlineimap/.offlineimap/getpass.py
Executable file
5
offlineimap/.offlineimap/getpass.py
Executable file
@@ -0,0 +1,5 @@
|
||||
#! /usr/bin/env python2
|
||||
from subprocess import check_output
|
||||
|
||||
def get_pass(account):
|
||||
return check_output("pass Mail/" + account, shell=True).splitlines()[0]
|
||||
BIN
offlineimap/.offlineimap/getpass.pyc
Normal file
BIN
offlineimap/.offlineimap/getpass.pyc
Normal file
Binary file not shown.
24
offlineimap/.offlineimaprc
Normal file
24
offlineimap/.offlineimaprc
Normal file
@@ -0,0 +1,24 @@
|
||||
[general]
|
||||
# List of accounts to be synced, separated by a comma.
|
||||
accounts = FSFE
|
||||
pythonfile = ~/.offlineimap/getpass.py
|
||||
socktimeout = 30
|
||||
|
||||
|
||||
[Account FSFE]
|
||||
localrepository = FSFE-local
|
||||
remoterepository = FSFE-remote
|
||||
status_backend = sqlite
|
||||
folderfilter = lambda folder: folder not in ['Trash']
|
||||
|
||||
[Repository FSFE-local]
|
||||
type = Maildir
|
||||
localfolders = ~/Mails/FSFE
|
||||
|
||||
[Repository FSFE-remote]
|
||||
type = IMAP
|
||||
remotehost = fomalhaut.uberspace.de
|
||||
remoteuser = fsfe@mehl.mx
|
||||
sslcacertfile = /etc/ssl/certs/ca-certificates.crt
|
||||
remotepasseval = get_pass("FSFE")
|
||||
maxconnections = 2
|
||||
Reference in New Issue
Block a user