summaryrefslogtreecommitdiffstats
path: root/mutt/offlineimap.py
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2023-05-03 20:15:56 +0100
committerMatthew Lemon <y@yulqen.org>2023-05-03 20:15:56 +0100
commit70d5f6d7a146cc8f8d6cc71703eb8b3f70245a62 (patch)
treecf6aef5f754096069fba3ded9a5e7eb7ce3422e8 /mutt/offlineimap.py
parent21b2c998efa2fa99ba4015ff2ef100514e0142d6 (diff)
Adds neomutt and all the stuff to Debian
Diffstat (limited to 'mutt/offlineimap.py')
-rw-r--r--mutt/offlineimap.py5
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()