diff options
author | Matthew Lemon <y@yulqen.org> | 2023-05-03 20:15:56 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2023-05-03 20:15:56 +0100 |
commit | 70d5f6d7a146cc8f8d6cc71703eb8b3f70245a62 (patch) | |
tree | cf6aef5f754096069fba3ded9a5e7eb7ce3422e8 /offlineimap.py | |
parent | 21b2c998efa2fa99ba4015ff2ef100514e0142d6 (diff) |
Adds neomutt and all the stuff to Debian
Diffstat (limited to '')
-rw-r--r-- | offlineimap.py | 8 |
1 files changed, 8 insertions, 0 deletions
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] |