[pass] I'd like to contribute another migration/import script for pwSafe

2016-05-30 Thread Kenny Evitt
pt: https://github.com/kenny-evitt/pwsafe-to-pass ___ Password-Store mailing list Password-Store@lists.zx2c4.com http://lists.zx2c4.com/mailman/listinfo/password-store

[pass] Feature request – combined insert/generate/edit for new entries

2016-07-18 Thread Kenny Evitt
Jason, hooks would be fantastic. I hacked together scripts to backup and restore my password stores as encrypted tarballs and I was going to look into how best create backups automatically (e.g. when an entry was added, edited, or removed). Hooks seems much better than maintaining a patched Pass.

[pass] Feature request – combined insert/generate/edit for new entries

2016-07-15 Thread Kenny Evitt
I often want to add an entry but also generate a new random password and add additional info ('edit') and, given that I'm tracking the history of my entries with Git, it'd be nice (or nicest) to do all of that as a single commit. Besides the Git history, it'd also be nice to do all of that as a

Re: [pass] Feature request – combined insert/generate/edit for new entries

2016-07-18 Thread Kenny Evitt
Adrian, adding an `--edit` (`-e`) option to `pass generate` is exactly what I ended up thinking was best. Thanks for the patch! On Monday, July 18, 2016, Brian Candler wrote: > On 18/07/2016 08:53, Adrián López Tejedor wrote: > >> I sent this path the 17 of June with

Re: [pass] ***UNCHECKED*** Re: [Feature Request] Add a `--raw` option to `pass ls`

2016-11-10 Thread Kenny Evitt
Alternatively, Pass could simply commit to its current implementation of using the filesystem as it does and that would resolve any potential future incompatibility issues just as well. If we were voting, that's what I would vote for. The Pass website currently

Re: [pass] Multiple password contexts

2016-11-16 Thread Kenny Evitt
Here's my hack solution: I have a script, somewhere in my path, and I've named it *pass-switch-repo.bash*. Here's its contents: ``` #!/usr/bin/env bash # This script needs to be sourced to affect the user's environment. repo_name=$1 if [[ -z "$repo_name" ]]; then echo "Error: No repo name

Re: Add support for *clip.exe* for Bash on Ubuntu on Windows

2017-07-25 Thread Kenny Evitt
I just looked at this briefly and I've run into a couple of problems: 1. `uname` in Bash on Ubuntu on Windows (BUW) outputs `Linux`, so I'd have to name the platform file *linux.sh* or change the code in *password-store.sh* that sources those files. 2. `clip.exe` is unidirectional, i.e. there's

Add support for *clip.exe* for Bash on Ubuntu on Windows

2017-07-24 Thread Kenny Evitt
The best password manager is a little bit easier to use on Windows now under Bash on Ubuntu on Windows – except copying to the clipboard. `xclip` can be made to work, if you install an X Window server. Microsoft has supplied a `clip.exe` command to copy to the clipboard so it would be great if

Re: Add support for *clip.exe* for Bash on Ubuntu on Windows

2017-07-26 Thread Kenny Evitt
enfeld <ja...@zx2c4.com> wrote: > On Tue, Jul 25, 2017 at 4:00 PM, Kenny Evitt <kenny.ev...@gmail.com> > wrote: > > I just looked at this briefly and I've run into a couple of problems: > > > > 1. `uname` in Bash on Ubuntu on Windows (BUW) outputs `Linux`, so I'd

Re: Add support for *clip.exe* for Bash on Ubuntu on Windows

2017-11-22 Thread Kenny Evitt
Hi Jason, I finally had some time to work on this. I made some good progress initially – reading from and writing to the clipboard is easy and works (based on my very limited testing so far). However, I've run into the *effective* impossibility of being able to reading, and saving, arbitrary

Re: Feature request: Enable use of ZFS datasets and optionally GELI

2017-11-20 Thread Kenny Evitt
only work on FreeBSD since it > requires GEOM. > > GEOM ELI (https://man.freebsd.org/geli(8)) and GGATEL ( > https://man.freebsd.org/ggatel(8)) can be used to mount a disk image as a > directory, which is where pass stores its data structure. > > > > On 20 Nov 2017, at 14.09

Re: Feature request: Enable use of ZFS datasets and optionally GELI

2017-11-20 Thread Kenny Evitt
I'm using ZFS on some servers, but not with Pass. What kind of features would you want to add to Pass related to ZFS or ZFS datasets? What's GELI? Depending on what it is exactly that you want, it could probably be implemented as a Pass extension. I'm pretty skeptical that these features,

Re: question on security

2018-01-28 Thread Kenny Evitt
Exposing your password files shouldn't be any worse than, e.g. exposing the same number of encrypted emails. I do agree that it would be nice to not expose the Pass repo file names. There are several ways to do this. There's a Pass extension that will 'entomb' your entire repo, i.e. encrypt the

Re: Add support for *clip.exe* for Bash on Ubuntu on Windows

2018-01-04 Thread Kenny Evitt
. an image file) on the clipboard on Windows. Is that an issue? I haven't thought of or run across any nice workarounds for the problem of `uname` outputting "Linux" on BUW. Any thoughts? Thanks, Kenny On Wed, Nov 22, 2017 at 1:10 PM, Kenny Evitt <kenny.ev...@gmail.com> wrote: &

Re: Add support for *clip.exe* for Bash on Ubuntu on Windows

2018-04-04 Thread Kenny Evitt
I've finished clipboard support for Bash on Ubuntu on Windows (BUW). For now, I've setup a Git repo on GitHub with the changes – kenny-evitt/password-store-buw: Pass: The Standard Unix Password Manager for Bash on Ubuntu on Windows <https://github.com/kenny-evitt/password-store-buw> I

Re: Add support for *clip.exe* for Bash on Ubuntu on Windows

2018-04-11 Thread Kenny Evitt
) { +# Escape for PowerShell: +local text="${1//\'/\'\'}" +/mnt/c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe -Command "Add-Type -AssemblyName System.Windows.Forms; [System.Windows.Forms.Clipboard]::SetText('$text')" +} -- 2.10.0.windows.1 On Thu, Apr 5, 201

Re: Windows implementation of passwordstore in pure batch

2020-02-09 Thread Kenny Evitt
e else is interested, I maintain a 'soft fork' with those changes on GitHub: - kenny-evitt/password-store-buw: Pass: The Standard Unix Password Manager for Bash on Ubuntu on Windows <https://github.com/kenny-evitt/password-store-buw> On Sun, Feb 9, 2020 at 4:19 PM Miquel Lionel wrote: &g

Re: Windows implementation of passwordstore in pure batch

2020-02-15 Thread Kenny Evitt
- https://lists.zx2c4.com/pipermail/password-store/2018-January/003164.html - https://lists.zx2c4.com/pipermail/password-store/2018-April/003240.html Here's a GitHub issue (for myself) for this: - [Get this merged upstream · Issue #2 · kenny-evitt/password-store-buw]( https://github.com/kenny

Re: curious: why use own hosting rather than github?

2020-11-23 Thread Kenny Evitt
I have no complaints about Jason's maintenance of this project. Thanks again for your great work Jason! Anyone is free to host the Pass repo on GitHub; I have two such 'forks': - https://github.com/kenny-evitt/password-store - https://github.com/kenny-evitt/password-store-buw They're both old

Re: otp in passmenu

2021-04-11 Thread Kenny Evitt
I suspect Gildásio used "demand" but meant "request". Nothing else in their email implies that they're 'demanding' anything from Jason, the maintainer, or anyone else. I think it might be reasonable for people to seriously consider forking Pass. No one's obligated to do anything. But no one's

Re: Problems in the macOS Terminal app with `pass show -c some/password`?

2022-01-04 Thread Kenny Evitt
logfile.txt, which might give you some ideas. > > > On Thu, Dec 30, 2021 at 1:57 AM Kenny Evitt wrote: > > > > I installed `pass` via Homebrew – version `v1.7.4`. > > > > I'm setting-up a new Mac (macOS 12.0.1) and I've noticed a weird > > problem with the (macOS included)

Problems in the macOS Terminal app with `pass show -c some/password`?

2021-12-29 Thread Kenny Evitt
I installed `pass` via Homebrew – version `v1.7.4`. I'm setting-up a new Mac (macOS 12.0.1) and I've noticed a weird problem with the (macOS included) Terminal app whenever I use the `pass show -c ...` command. It _seems_ like maybe the 'clip' program that's being used doesn't work well with the