Browse Source

Don't prompt for password, if the email address already has a saved

password. This is useful if you copy your .password-store
directory from one computer to another.
pull/985/head
speedie 3 months ago
parent
commit
11e54213dd
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      bin/mw

+ 3
- 3
bin/mw View File

@@ -173,11 +173,11 @@ askinfo() {
[ -z "$passprefix" ] && passprefix="" [ -z "$passprefix" ] && passprefix=""
hostname="${fulladdr#*@}" hostname="${fulladdr#*@}"
login="${login:-$fulladdr}" login="${login:-$fulladdr}"
if [ -n "${password+x}" ]; then
if [ -n "${password+x}" ] && [ ! -f "$PASSWORD_STORE_DIR/$passprefix$fulladdr.gpg" ]; then
insertpass insertpass
else
elif [ ! -f "$PASSWORD_STORE_DIR/$passprefix$fulladdr.gpg" ]; then
getpass getpass
fi
fi
} }


insertpass() { insertpass() {


Loading…
Cancel
Save