This repository has been archived on 2023-01-25. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
mail-config/offlineimap/.offlineimap/getpass.py

6 lines
155 B
Python
Raw Normal View History

2017-04-13 13:08:50 +02:00
#! /usr/bin/env python2
from subprocess import check_output
def get_pass(account):
2019-11-05 17:36:44 +01:00
return check_output("pass " + account, shell=True).splitlines()[0]