You are not logged in.
So I was able to encrypt my mutt password with gpg using the following line:
source "gpg -d $XDG_CONFIG_HOME/mutt/accounts/password.gpg |"How do I do the same with program "pass" ?
Last edited by b42 (2023-12-19 19:14:58)
Offline
Offline
My knowledge does not extent so much I could create my own commands to config files...
Offline
I'd first try to use the pass command, compare it to the behavior of the gpg command and then see whether you can adapt the existing gpg command for pass.
Offline
so the command to use pass to encrypt your passwords for mutt is the following:
set imap_pass = "`pass $AccountInPass`"Offline