vmm.cfg
branchv0.6.x
changeset 458 4ff0fa3ba0fa
parent 384 d3a97f7fb98a
child 584 f9a2327f57a6
equal deleted inserted replaced
457:2019aa415dcd 458:4ff0fa3ba0fa
    66 ; Permissions for domain directories (Int)
    66 ; Permissions for domain directories (Int)
    67 ; octal 0770 -> decimal 504
    67 ; octal 0770 -> decimal 504
    68 directory_mode = 504
    68 directory_mode = 504
    69 ; Force deletion of accounts and aliases when deleting a domain (Boolean)
    69 ; Force deletion of accounts and aliases when deleting a domain (Boolean)
    70 force_deletion = false
    70 force_deletion = false
       
    71 ;
       
    72 ; The service settings will be evaluated and applied when a domain is
       
    73 ; created. The service settings of the domain will be applied when you
       
    74 ; create a new account.
       
    75 ; Use the subcommand domainservices to modify a domain's service settings.
       
    76 ; Or userservices in order to update the service setting of an account.
       
    77 ; Allow smtp by default? (Boolean)
       
    78 smtp = true
       
    79 ; Allow pop3 by default? (Boolean)
       
    80 pop3 = true
       
    81 ; Allow imap by default? (Boolean)
       
    82 imap = true
       
    83 ; Allow managesieve by default? (Boolean)
       
    84 sieve = true
       
    85 ;
       
    86 ; The quota_* settings will be evaluated and applied when a domain is
       
    87 ; created. The domain's quota_* settings will be applied when an account
       
    88 ; is added to a domain.
       
    89 ; Use the subcommand domainquota to modify a domain's quota limits.
       
    90 ; Or userquota in order to update an account's quota limits.
       
    91 ; Quota limit in bytes. 0 means unlimited (String)
       
    92 ; The value can have one of the suffixes:
       
    93 ;    * b: bytes
       
    94 ;    * k: kilobytes
       
    95 ;    * M: megabytes
       
    96 ;    * G: gigabytes
       
    97 ; 1024 is the same as 1024b or 1k
       
    98 quota_bytes = 0
       
    99 ; Quota limit in number of messages. 0 means unlimited (Int)
       
   100 quota_messages = 0
       
   101 ;
       
   102 ; The transport setting will be evaluated and applied when a domain is
       
   103 ; created. The domain's transport setting will be applied when an account
       
   104 ; is added to a domain.
       
   105 ; Use the subcommand domaintransport to modify the transport of a domain.
       
   106 ; Or usertransport in order to update an account's transport setting.
       
   107 ; default transport for domains and accounts (String)
       
   108 transport = dovecot:
    71 
   109 
    72 #
   110 #
    73 # Account settings
   111 # Account settings
    74 #
   112 #
    75 [account]
   113 [account]
    83 ; Should vmm generate a random password when no password was given for the
   121 ; Should vmm generate a random password when no password was given for the
    84 ; useradd subcommand? (Boolean)
   122 ; useradd subcommand? (Boolean)
    85 random_password = false
   123 random_password = false
    86 ; How many characters to include in the generated passwords? (Int)
   124 ; How many characters to include in the generated passwords? (Int)
    87 password_length = 8
   125 password_length = 8
    88 ; Allow smtp by default? (Boolean)
       
    89 smtp = true
       
    90 ; Allow pop3 by default? (Boolean)
       
    91 pop3 = true
       
    92 ; Allow imap by default? (Boolean)
       
    93 imap = true
       
    94 ; Allow managesieve by default? (Boolean)
       
    95 sieve = true
       
    96 
   126 
    97 #
   127 #
    98 # external binaries
   128 # external binaries
    99 #
   129 #
   100 [bin]
   130 [bin]
   120 ; the version number from `dovecot --version` (String)
   150 ; the version number from `dovecot --version` (String)
   121 ; e.g. 1.1.18; 1.2.11; 2.0.beta4
   151 ; e.g. 1.1.18; 1.2.11; 2.0.beta4
   122 dovecot_version = 1.2.11
   152 dovecot_version = 1.2.11
   123 ; Password scheme to use (see also: dovecotpw -l) (String)
   153 ; Password scheme to use (see also: dovecotpw -l) (String)
   124 password_scheme = CRAM-MD5
   154 password_scheme = CRAM-MD5
   125 ; Quota limit in bytes. 0 means unlimited (String)
       
   126 ; The value can have one of the suffixes:
       
   127 ;    * b: bytes
       
   128 ;    * k: kilobytes
       
   129 ;    * M: megabytes
       
   130 ;    * G: gigabytes
       
   131 ; 1024 is the same as 1024b or 1k
       
   132 quota_bytes = 0
       
   133 ; Quota limit in number of messages. 0 means unlimited (Int)
       
   134 quota_messages = 0
       
   135 ; default transport for domains and accounts (String)
       
   136 transport = dovecot:
       
   137 
   155