Displaying 20 results from an estimated 10000 matches similar to: "Using "doveadm pw" as unpriviledged user"
2014 Dec 29
0
doveadm pw generates different hash each time it is invoked
reik red writes:
> (I'm re-submittting after setting up a subscription, so I don't have to wait for the moderator)
> ,
> What happened next surprised me greatly: if I specify "-s ssha", the
> resulting hashed password changes each time I invoke "doveadm pw", but
> if I do not specify the hashing method, I get the same password each time (as I
>
2015 Jun 04
2
Testing SHA512-CRYPT password hashes with doveadm pw -t fails
Hi,
I use Debian jessie with Dovecot 2.2.13-11.
While writing a script for Horde to change the passwords in my passwd
file I noticed doveadm pw -t fails for SHA512-CRYPT:
# doveadm pw -s SHA1 -p test
{SHA1}qUqP5cyxm6YcTAhz05Hph5gvu9M=
# doveadm pw -t {SHA1}qUqP5cyxm6YcTAhz05Hph5gvu9M= -p test
{SHA1}qUqP5cyxm6YcTAhz05Hph5gvu9M= (verified)
# doveadm pw -s SHA512-CRYPT -p test
2015 Jun 04
0
Testing SHA512-CRYPT password hashes with doveadm pw -t fails
doveadm pw -t
'{SHA512-CRYPT}$6$8FfoioQWQDR/Vuzu$ynKiO/E6Xf4dMvfx2LsP9KQotqy5cEOEppnEh5Hqe1UpCYAgOwSIJlNb0O65fxdYcRZH3gNFQ7ZOM/2kD/R811'
-p test
You have $ in the password, see man-page of shell ...
Am 04.06.2015 um 05:29 schrieb Felix Zielcke:
> oveadm pw -t {SHA512-CRYPT}$6$8FfoioQWQDR/Vuzu$ynKiO/E6Xf4dMvfx2LsP9KQotqy5cEOEppnEh5Hqe1UpCYAgOwSIJlNb0O65fxdYcRZH3gNFQ7ZOM/2kD/R811 -p
2014 Dec 20
1
doveadm pw generates different hash each time it is invoked !?
I am absolutely dumbfounded by "doveadm pw". My understanding is that
the command should be used to create a hashed password that should in
turn be placed into /etc/dovecot/passwd
Here comes the "dumbfounded" part. I was creating a new virtual user,
running doveadm pw to generate the hashed password. But when I tried to
login via imap, the password was rejected. So I started
2011 Aug 31
1
[PATCH] Allow verification of user's hash in doveadm-pw
Hi,
It may be useful for testing purpose to know if a generated password
hash correspond to a given clear password. This can be useful to check
if a hash generated by another program can be verified by Dovecot
without any errors.
This patch adds the ability the verify a password hash using `doveadm
pw` via the `-V` option.
??? $ doveadm pw -s SSHA.hex
??? Enter new password:
??? Retype new
2018 Sep 26
0
Can't authenticate using ARGON2ID crypt scheme from doveadm pw w/rounds != default
The reason it fails is because auth process runs out of memory and there
is a bug in libsodium which causes it to crash in this scenario. The fix
is to do
service auth {
? vsz_limit = 0 # or 2G at least
}
Aki
On 26.09.2018 09:12, Keith Amidon wrote:
> I'm using dovecot version 2.3.2.1 (0719df592) and trying to use the
> ARGON2ID crypt scheme for authentication using the passdb
2014 Mar 29
1
[Bug] doveadm pw Fatal: open(/etc/dovecot/dovecot.conf) failed: Permission denied
dovecot --version => 2.1.7
When I as a normal user the command:
doveadm pw -s sha512-crypt -p example_password
the command exit with return code 89 and the message
doveconf: Fatal: open(/etc/dovecot/dovecot.conf) failed: Permission denied
If I make Dovecot's configuration files world readable the error goes away.
Please remove configuration file dependencies from "doveadm
2014 Aug 12
3
doveadm pw with SHA512-CRYPT won't roundtrip
Hi,
Not sure if this is a PBKAC or not:-
root at ds3:/usr/share/postfixadmin# doveadm pw -s SHA512-CRYPT -p password
{SHA512-CRYPT}$6$aUgGXP0UshkMj7hY$9JV4yMRsjIe/98CzmglYrMjf.9NJ.FXzxcLE9B0v3doCRUWo2wRncc6hg6VCs0DCUHQbeC/bRDZdGCge/nB/h/
root at ds3:/usr/share/postfixadmin# doveadm pw -t
2018 Sep 26
2
Can't authenticate using ARGON2ID crypt scheme from doveadm pw w/rounds != default
I'm using dovecot version 2.3.2.1 (0719df592) and trying to use the
ARGON2ID crypt scheme for authentication using the passdb passwd-file
driver. My passdb config is very simple:
??? passdb {
????? driver = passwd-file
????? args = username_format=%u <path-to-file-here>
??? }
If I generate a password this way:
??? doveadm pw -s ARGON2ID -p 'This is a test'
I get a crypt
2019 May 09
1
doveadm sync issues (revised)
Hi,
I'm experiencing serious issues using doveadm sync; mails are not
replicating and/or mails are duplicating. I wanted to use this for
migrating external mailboxes to my server (in order to overcome the time
when some servers/clients still use the old server and some already my
server, as described on <https://wiki2.dovecot.org/Tools/Doveadm/Sync>).
Finally I was able to reproduce
2013 Mar 11
2
doveadm password check
Hi,
I want to write some php code that users can change there dovecot
password via a roundcube plugin. I'm using php function crypt(...) to
generate the hashes and everything works well so far.
I'm using doveadm pw to generate testhashes e.g.:
srv:~ # doveadm pw -r 5 -s BLF-CRYPT -p abc
{BLF-CRYPT}$2a$05$W82/Vw4ZEcHBC00M8cNwe.g8fOHuAeV7L5Q/q4W6VWl9V5kjoiz8y
I expected an
2019 Feb 24
2
password protected ssl key seems unsupported after update to 2.3.4.1
Hi,
On a debian server after an update to dovecot to 2.3.4.1 imaps mail client stop working.
I?ve applied necessary migration for ssl_dh (cf https://wiki.dovecot.org/Upgrading/2.3 <https://wiki.dovecot.org/Upgrading/2.3> ) but that was not enough. The workaround I?ve setup was to remove password protection from the ssl_key file. All tests with ssl_key_password parameter failled (direct
2019 Feb 25
0
password protected ssl key seems unsupported after update to 2.3.4.1
It's in our backlog, but not fixed yet.
Aki
On 24.2.2019 21.30, admin--- via dovecot wrote:
> Hi,
>
> On a debian server after an update to dovecot to 2.3.4.1 imaps mail
> client stop working.
> I?ve applied?necessary migration for ssl_dh
> (cf?https://wiki.dovecot.org/Upgrading/2.3?) but that was not enough.
> The workaround I?ve setup was to remove password protection
2020 May 29
2
Running doveadm without config file?
It would be useful to run the "doveadm" utility on a non-dovecot server e.g.
generating password hashes:
# echo plaintextpass | doveadm pw -s BLF-CRYPT
doveadm(user): Fatal: Error reading configuration: stat(/etc/dovecot/dovecot.conf) failed: No such file or directory
Is there a way to circumvent the need for a configuration file?
Joseph Tam <jtam.home at gmail.com>
2013 Feb 19
1
Dovecot auth works when tested with doveadm, but fails with Postfix
I have three postfix 2.9.5 servers: chombo, rush, yoshi. Chombo relays
to rush and yoshi for outbound email. Outbound relay requires SASL
authentication. Rush and yoshi run Dovecot 2.1.12 servers with simple
passwd-file backends.
If I create a new password hash for chombo's user, houseloki, on either
rush or yoshi:
# doveadm pw -u houseloki -p <password>
{CRAM-MD5}...
Then I
2020 May 29
0
Running doveadm without config file?
> On 29. May 2020, at 23.09, Joseph Tam <jtam.home at gmail.com> wrote:
>
>
> It would be useful to run the "doveadm" utility on a non-dovecot server e.g.
> generating password hashes:
>
> # echo plaintextpass | doveadm pw -s BLF-CRYPT
> doveadm(user): Fatal: Error reading configuration: stat(/etc/dovecot/dovecot.conf) failed: No such file or directory
2019 Sep 05
2
mail_filter and mail_filter_out broken somewhere between 2.2.27 and 2.3.4, problem still exists in git
Hi Dovecot folks,
I recently reported this bug in Debian (https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=939442) after a stretch -> buster upgrade, however since I can reproduce it using the latest 2.4 from git I thought perhaps I ought to take it straight upstream.
Here's the text I provided Debian about the issue, and below that I've included a syslog snip showing the same issue
2002 Mar 27
0
[Bug 191] New: compilation faills in auth1.c:392 `pw' undeclared when USE_PAM is on
http://bugzilla.mindrot.org/show_bug.cgi?id=191
Summary: compilation faills in auth1.c:392 `pw' undeclared when
USE_PAM is on
Product: Portable OpenSSH
Version: -current
Platform: ix86
OS/Version: Linux
Status: NEW
Severity: critical
Priority: P2
Component: Miscellaneous
2011 Nov 07
1
Nexenta: "load_mib2nut: using pw mib" package / config / or firewall problem?
G'day
I'm currently using NUT on Debian squeeze box in the same subnet with an IBM
3000 HV (branded Eaton 5125 with Web/SNMP card), now I wanted to get our
storage appliance running NexentaStor 3.1 set up to be using NUT too. Nexenta-
Stor is an OpenSolaris / illumos-based appliance OS currently using
NUT packages
from ubuntu hardy.
My question here is whether I'm running into a
-
2019 Mar 16
3
ssl_dh
https://wiki.dovecot.org/SSL/DovecotConfiguration says:
"Since v2.3.3+ Diffie-Hellman parameters have been made optional, and
you are encouraged to disable non-ECC DH algorithms completely."
and a bit later:
"From version 2.3, you must specify path to DH parameters file using
ssl_dh=</path/to/dh.pem"
So.
1. Is ssl_dh an optional or a must?
2. I've disabled ssl_dh