Browse Source

Clarify reason for `sed` in update

Jason Ghent 7 years ago
parent
commit
e73d33c0c6
1 changed files with 2 additions and 0 deletions
  1. 2
    0
      README.md

+ 2
- 0
README.md View File

@@ -120,6 +120,8 @@ Setting `password_hash` for your mail users is a bit tricky. You can generate on
120 120
     # doveadm pw -p'YOUR_PASSWORD' -s SHA512-CRYPT | sed -e 's/{.*}//'
121 121
     $6$drlIN9fx7Aj7/iLu$XvjeuQh5tlzNpNfs4NwxN7.HGRLglTKism0hxs2C1OvD02d3x8OBN9KQTueTr53nTJwVShtCYiW80SGXAjSyM0
122 122
 
123
+`sed` is used here to truncate the hash type from the beginning of the `doveadm pw` output.
124
+
123 125
 Alternatively, if you don’t already have `doveadm` installed, Python 3.3 or higher on Linux will generate the appropriate string for you (assuming your password is `password`):
124 126
 
125 127
     python3 -c 'import crypt; print(crypt.crypt("password", salt=crypt.METHOD_SHA512))'

Loading…
Cancel
Save