vmm.cfg
author Pascal Volk <neverseen@users.sourceforge.net>
Mon, 21 Apr 2008 04:56:01 +0000
changeset 20 55146c78b3fb
parent 9 e3d3dbeb5b84
child 24 48ea255e8a85
permissions -rw-r--r--
* 'create_tables.pgsql' - Replaced column 'disabled' with columns smpt, pop3, imap and managesieve - updated view, added service columns smpt, pop3, imap and managesieve * 'update_tables_0.3.x-0.4.py' - Updated to consider the points above mentioned * 'vmm.cfg' - Added section »services« with options: smtp, pop3, imap and managesieve * 'update_config_0.3.x-0.4.py' * 'VirtualMailManager/Config.py' - Updated, to add new section »services« * 'VirtualMailManager/Account.py' * 'VirtualMailManager/VirtualMailManager.py' * 'vmm' - Modified, to fit new database structure * 'UPGRADE' * 'INSTALL' - Updated information * 'update_tables_0.4-dev_r24.py' - Added temporary to the repository

# $Id$
# This is the Virtual Mail Manager (vmm) configuration file.
# location: /usr/local/etc/vmm.cfg
#

#
# Database settings
#
[database]
; Hostname or IP address of the database server (String)
host = 127.0.0.1
; Database user name (String)
user = dbuser
; Database password (String)
pass = dbpassword
; database name (String)
name = mailsys

#
# Mail directories
#
[maildir]
; The base directory for all domains/accounts (String)
base = /home/mail
; default name of the  Maildir folder
folder = Maildir
; Permissions for maildirs (Int)
; octal 0700 -> decimal 448
mode = 448
; Display disk usage in account info by default? (Boolean)
diskusage = false
; Delete maildir recursive when deleting an account? (Boolean)
delete = false

#
# Services per user
#
[services]
; allow smtp by default? (Boolean)
smtp = true
; allow pop3 by default? (Boolean)
pop3 = true
; allow imap by default? (Boolean)
imap = true
; allow managesieve by default? (Boolean)
managesieve = true

#
# domain directory settings
#
[domdir]
; Permissions for domain directories (Int)
; octal 0770 -> decimal 504
mode = 504
; Delete domain directory recursive when deleting a domain? (Boolean)
delete = false

#
# external binaries
#
[bin]
; location of dovecotpw (String)
dovecotpw = /usr/sbin/dovecotpw
; location of disk usage (String)
du = /usr/bin/du

#
# misc settings
#
[misc]
; Password scheme to use (see also: dovecotpw -l) (String)
passwdscheme = CRAM-MD5
; numeric  group ID of group mail (mail_extra_groups from dovecot.conf) (Int)
gid_mail = 8
; force deletion of accounts and aliases (Boolean)
forcedel = false
; default transport for domains and accounts
transport = dovecot:

#
# Configuration state
#
[config]
; finally set this to true (Boolean)
done = false