From 70d5f6d7a146cc8f8d6cc71703eb8b3f70245a62 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Wed, 3 May 2023 20:15:56 +0100 Subject: Adds neomutt and all the stuff to Debian --- offlineimap.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 offlineimap.py (limited to 'offlineimap.py') 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] -- cgit v1.2.3