man/man5/vmm.cfg.5.rst
branchv0.6.x
changeset 284 ec1966828246
parent 270 d3389645a91d
child 286 e2046d47688b
equal deleted inserted replaced
283:ea6d052de24a 284:ec1966828246
   337 .. _misc.base_directory:
   337 .. _misc.base_directory:
   338 
   338 
   339 ``base_directory (default: /srv/mail)`` : *String*
   339 ``base_directory (default: /srv/mail)`` : *String*
   340   All domain directories will be created inside this directory.
   340   All domain directories will be created inside this directory.
   341 
   341 
       
   342 .. _misc.crypt_blowfish_rounds:
       
   343 
       
   344 ``crypt_blowfish_rounds (default: 0)`` : *Int*
       
   345   Number of encryption rounds for Blowfish crypt.
       
   346 
       
   347   This setting affects the behavior of the 'CRYPT' password scheme. By
       
   348   default crypt will use the DES algorithm for password encryption.
       
   349   |vmm(1)|_ checks if Blowfish crypt is available. When the Blowfish
       
   350   algorithm is supported and the value of this setting is greater than 0
       
   351   Blowfish will be used for crypt, instead of DES.
       
   352 
       
   353   The value must be in range **4** - **31**.
       
   354 
       
   355 .. _misc.crypt_sha256_rounds:
       
   356 
       
   357 ``crypt_sha256_rounds (default: 0)`` : *Int*
       
   358   Number of encryption rounds for crypt using the SHA-256 encryption method.
       
   359 
       
   360   This setting affects the behavior of the 'CRYPT' password scheme. By
       
   361   default crypt will use the DES algorithm for password encryption.
       
   362   |vmm(1)|_ checks if crypt supports the SHA-256 and/or SHA-512 algorithms.
       
   363   When the algorithms are supported and the value of this setting is greater
       
   364   than 0, SHA-256 will be used instead of DES.
       
   365 
       
   366   When the value of |misc.crypt_sha512_rounds|_ is greater than 0, the
       
   367   SHA-512 algorithm will be used instead of SHA-256.
       
   368 
       
   369   The value must be in range **1000** - **999999999**.
       
   370 
       
   371 .. _misc.crypt_sha512_rounds:
       
   372 
       
   373 ``crypt_sha512_rounds (default: 0)`` : *Int*
       
   374   Number of encryption rounds for crypt using the SHA-512 encryption method.
       
   375 
       
   376   See |misc.crypt_sha256_rounds|_ for details.
       
   377 
       
   378   The value must be in range **1000** - **999999999**.
       
   379 
   342 .. _misc.password_scheme:
   380 .. _misc.password_scheme:
   343 
   381 
   344 ``password_scheme (default: CRAM-MD5)`` : *String*
   382 ``password_scheme (default: CRAM-MD5)`` : *String*
   345   Password scheme to use. To get a list of all available password schemes
   383   Password scheme to use. To get a list of all available password schemes
   346   execute the command **dovecotpw -l** (Dovecot v1.x) or **doveadm pw -l**
   384   execute the command **dovecotpw -l** (Dovecot v1.x) or **doveadm pw -l**
   363 
   401 
   364 Example::
   402 Example::
   365 
   403 
   366   [misc]
   404   [misc]
   367   base_directory = /srv/mail
   405   base_directory = /srv/mail
   368   password_scheme = PLAIN
   406   crypt_sha512_rounds = 10000
       
   407   password_scheme = CRYPT
   369   transport = dovecot:
   408   transport = dovecot:
   370   dovecot_version = 2.0.beta4
   409   dovecot_version = 2.0.beta4
   371 
   410 
   372 
   411 
   373 FILES
   412 FILES