diff options
author | David Runge <dave@sleepmap.de> | 2017-01-31 14:17:30 +0100 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2017-01-31 14:17:30 +0100 |
commit | 225ddafeb796e3bf48ab91a2616550b6d1d98fc4 (patch) | |
tree | 9ae826e24c331897c878e175b8324eec95a03843 /bin | |
parent | bb39f67c069e0a90d21cde90ce0b79ab3e490023 (diff) | |
download | dotfiles-225ddafeb796e3bf48ab91a2616550b6d1d98fc4.tar.gz dotfiles-225ddafeb796e3bf48ab91a2616550b6d1d98fc4.tar.bz2 dotfiles-225ddafeb796e3bf48ab91a2616550b6d1d98fc4.tar.xz dotfiles-225ddafeb796e3bf48ab91a2616550b6d1d98fc4.zip |
bin/pass2{msmtp,offlineimap}: Updating to mail instead of Mail in pass command.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/pass2msmtp | 2 | ||||
-rw-r--r-- | bin/pass2offlineimap | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/pass2msmtp b/bin/pass2msmtp index 5ba07fa..d383951 100755 --- a/bin/pass2msmtp +++ b/bin/pass2msmtp @@ -1,3 +1,3 @@ #!/usr/bin/env bash -pass Mail/$1 +pass mail/$1 diff --git a/bin/pass2offlineimap b/bin/pass2offlineimap index 72f5829..912d5bb 100644 --- a/bin/pass2offlineimap +++ b/bin/pass2offlineimap @@ -2,4 +2,4 @@ from subprocess import check_output def get_pass(account): - return check_output("pass Mail/" + account, shell=True).rstrip() + return check_output("pass mail/" + account, shell=True).rstrip() |