Solves the chicken-or-the-egg problem of generating a dovecot and znc salted password hash without already having dovecot and znc installed. That is, people are installing sovereign typically do not have dovecot and znc installed and have no way of generating the required salted password hashes. Python 3 standard library generates SHA512-CRYPT salted password hashes by default so it is particularly convenient for configuring dovecot: python3 -c 'import crypt; print(crypt.crypt('password'))' For ZNC, the required command is slightly more verbose.
|
|
||
140 |
|
140 |
|
141 |
|
141 |
|
142 |
|
142 |
|
|
143 |
|
|
|
144 |
|
|
|
145 |
|
|
|
146 |
|
|
143 |
|
147 |
|
144 |
|
148 |
|
145 |
|
149 |
|
|
|
||
150 |
|
154 |
|
151 |
|
155 |
|
152 |
|
156 |
|
|
157 |
|
|
|
158 |
|
|
|
159 |
|
|
|
160 |
|
|
153 |
|
161 |
|
154 |
|
162 |
|
155 |
|
163 |
|