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 /mutt/offlineimap.py | |
parent | 21b2c998efa2fa99ba4015ff2ef100514e0142d6 (diff) |
Adds neomutt and all the stuff to Debian
Diffstat (limited to 'mutt/offlineimap.py')
-rw-r--r-- | mutt/offlineimap.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mutt/offlineimap.py b/mutt/offlineimap.py new file mode 100644 index 0000000..3bdc780 --- /dev/null +++ b/mutt/offlineimap.py @@ -0,0 +1,5 @@ +#!/usr/bin/env python2 +from subprocess import check_output + +def get_pass(account): + return check_output("pass Email/" + account, shell=True).rstrip() |