all repos — nixfiles @ 5005fee3c4f24d93315c398292c8bd392a7169ce

System and user configuration, managed by nix and home-manager

offlineimap/.offlineimap.py (view raw)

1
2
3
4
5
#! /usr/bin/env python2
from subprocess import check_output

def get_pass(account):
    return check_output("pass " + account, shell=True).splitlines()[0]