Set a default log file size in reference davmail.properties

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@2111 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2013-05-11 18:09:58 +00:00
parent b4c3cc5326
commit 1870ebefe7
1 changed files with 52 additions and 50 deletions

View File

@ -4,120 +4,122 @@
# Basic settings # Basic settings
# Server or workstation mode # Server or workstation mode
davmail.server=true davmail.server=true
# connection mode auto, EWS or WebDav # connection mode auto, EWS or WebDav
davmail.enableEws=auto davmail.enableEws=auto
# base Exchange OWA or EWS url # base Exchange OWA or EWS url
davmail.url=https://owa.example.com/owa/ davmail.url=https://owa.example.com/owa/
# Listener ports # Listener ports
davmail.caldavPort=1080 davmail.caldavPort=1080
davmail.imapPort=1143 davmail.imapPort=1143
davmail.ldapPort=1389 davmail.ldapPort=1389
davmail.popPort=1110 davmail.popPort=1110
davmail.smtpPort=1025 davmail.smtpPort=1025
############################################################# #############################################################
# Network settings # Network settings
# Network proxy settings # Network proxy settings
davmail.enableProxy=false davmail.enableProxy=false
davmail.useSystemProxies=false davmail.useSystemProxies=false
davmail.proxyHost= davmail.proxyHost=
davmail.proxyPort= davmail.proxyPort=
davmail.proxyUser= davmail.proxyUser=
davmail.proxyPassword= davmail.proxyPassword=
# proxy exclude list # proxy exclude list
davmail.noProxyFor= davmail.noProxyFor=
# allow remote connection to DavMail # allow remote connection to DavMail
davmail.allowRemote=false davmail.allowRemote=false
# bind server sockets to a specific address # bind server sockets to a specific address
davmail.bindAddress= davmail.bindAddress=
# client connections SO timeout in seconds # client connections SO timeout in seconds
davmail.clientSoTimeout= davmail.clientSoTimeout=
# DavMail listeners SSL configuration # DavMail listeners SSL configuration
davmail.ssl.keystoreType= davmail.ssl.keystoreType=
davmail.ssl.keystoreFile= davmail.ssl.keystoreFile=
davmail.ssl.keystorePass= davmail.ssl.keystorePass=
davmail.ssl.keyPass= davmail.ssl.keyPass=
# Accept specified certificate even if invalid according to trust store # Accept specified certificate even if invalid according to trust store
davmail.server.certificate.hash= davmail.server.certificate.hash=
# disable SSL for specified listeners # disable SSL for specified listeners
davmail.ssl.nosecurecaldav=false davmail.ssl.nosecurecaldav=false
davmail.ssl.nosecureimap=false davmail.ssl.nosecureimap=false
davmail.ssl.nosecureldap=false davmail.ssl.nosecureldap=false
davmail.ssl.nosecurepop=false davmail.ssl.nosecurepop=false
davmail.ssl.nosecuresmtp=false davmail.ssl.nosecuresmtp=false
# disable update check # disable update check
davmail.disableUpdateCheck=true davmail.disableUpdateCheck=true
############################################################# #############################################################
# Caldav settings # Caldav settings
# override default alarm sound # override default alarm sound
davmail.caldavAlarmSound= davmail.caldavAlarmSound=
# retrieve calendar events not older than 90 days # retrieve calendar events not older than 90 days
davmail.caldavPastDelay=90 davmail.caldavPastDelay=90
# WebDav only: force event update to trigger ActiveSync clients update # WebDav only: force event update to trigger ActiveSync clients update
davmail.forceActiveSyncUpdate=false davmail.forceActiveSyncUpdate=false
############################################################# #############################################################
# IMAP settings # IMAP settings
# Delete messages immediately on IMAP STORE \Deleted flag # Delete messages immediately on IMAP STORE \Deleted flag
davmail.imapAutoExpunge=true davmail.imapAutoExpunge=true
# Enable IDLE support, set polling delay in minutes # Enable IDLE support, set polling delay in minutes
davmail.imapIdleDelay= davmail.imapIdleDelay=
############################################################# #############################################################
# POP settings # POP settings
# Delete messages on server after 30 days # Delete messages on server after 30 days
davmail.keepDelay=30 davmail.keepDelay=30
# Delete messages in server sent folder after 90 days # Delete messages in server sent folder after 90 days
davmail.sentKeepDelay=90 davmail.sentKeepDelay=90
# Mark retrieved messages read on server # Mark retrieved messages read on server
davmail.popMarkReadOnRetr=false davmail.popMarkReadOnRetr=false
############################################################# #############################################################
# SMTP settings # SMTP settings
# let Exchange save a copy of sent messages in Sent folder # let Exchange save a copy of sent messages in Sent folder
davmail.smtpSaveInSent=true davmail.smtpSaveInSent=true
############################################################# #############################################################
# Loggings settings # Loggings settings
# log file path, leave empty for default path # log file path, leave empty for default path
davmail.logFilePath= davmail.logFilePath=
# log levels # maximum log file size, use Log4J syntax, set to 0 to use an external rotation mechanism, e.g. logrotate
log4j.logger.davmail=WARN davmail.logFileSize=1MB
log4j.logger.httpclient.wire=WARN # log levels
log4j.logger.org.apache.commons.httpclient=WARN log4j.logger.davmail=WARN
log4j.rootLogger=WARN log4j.logger.httpclient.wire=WARN
log4j.logger.org.apache.commons.httpclient=WARN
log4j.rootLogger=WARN
############################################################# #############################################################
# Workstation only settings # Workstation only settings
# smartcard access settings # smartcard access settings
davmail.ssl.pkcs11Config= davmail.ssl.pkcs11Config=
davmail.ssl.pkcs11Library= davmail.ssl.pkcs11Library=
# SSL settings for mutual authentication # SSL settings for mutual authentication
davmail.ssl.clientKeystoreType= davmail.ssl.clientKeystoreType=
davmail.ssl.clientKeystoreFile= davmail.ssl.clientKeystoreFile=
davmail.ssl.clientKeystorePass= davmail.ssl.clientKeystorePass=
# disable all balloon notifications # disable all balloon notifications
davmail.disableGuiNotifications=false davmail.disableGuiNotifications=false
# disable startup balloon notifications # disable startup balloon notifications
davmail.showStartupBanner=true davmail.showStartupBanner=true
# enable transparent client Kerberos authentication # enable transparent client Kerberos authentication
davmail.enableKerberos=false davmail.enableKerberos=false