diff options
author | Danny Holman <dholman@gymli.org> | 2025-02-20 15:18:02 -0600 |
---|---|---|
committer | Danny Holman <dholman@gymli.org> | 2025-02-20 15:18:02 -0600 |
commit | a27e83028b7943d26d881564ed446a2a4d374fed (patch) | |
tree | 017ffe78defa27275790c82249a581aef5d9eca6 /.offlineimap.py | |
parent | 01ef5403e983f5a4767cacf3ffe77a0fcea2139a (diff) |
Update to 02/20/25
Diffstat (limited to '.offlineimap.py')
-rwxr-xr-x | .offlineimap.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.offlineimap.py b/.offlineimap.py new file mode 100755 index 0000000..6d9a102 --- /dev/null +++ b/.offlineimap.py @@ -0,0 +1,5 @@ +#!/usr/bin/env python +from subprocess import check_output + +def get_pass(): + return check_output("pass gymli.org/mail/dholman", shell=True).splitlines()[0] |