Question about generating new passwords #2123
-
Hi, I'm trying to generate a password for a website I've never used with gopass before. While it asks for the length, it doesn't ask for whether I want symbols or not (after printing "Using password rules for [site] ...") how can I clear these rules and generate a password with symbols? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 6 replies
-
On my side it seems to work just fine with the
What are you doing exactly? |
Beta Was this translation helpful? Give feedback.
-
What does |
Beta Was this translation helpful? Give feedback.
-
My best guess is that you're trying to generate a password for a domain which is included in our list of domains with fancy rules: gopass/internal/action/generate.go Lines 163 to 171 in d83fe6e So we match on "hasPwRuleForSecret" before even looking at flags and the rest. Can you confirm whether the domain is on that list or not, please: |
Beta Was this translation helpful? Give feedback.
My best guess is that you're trying to generate a password for a domain which is included in our list of domains with fancy rules:
gopass/internal/action/generate.go
Lines 163 to 171 in d83fe6e
So we match on "hasPwRuleForSecret" before even looking at flags and the rest.
Can you confirm whether the domain is on that list or …