davmail.properties.template 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. # DavMail settings, see http://davmail.sourceforge.net/ for documentation
  2. #############################################################
  3. # Basic settings
  4. # Server or workstation mode
  5. davmail.server=true
  6. # connection mode auto, EWS or WebDav
  7. davmail.enableEws=auto
  8. # base Exchange OWA or EWS url
  9. davmail.url=${DAVMAIL_URL}
  10. # Listener ports (SSL is not working for some reason)
  11. #davmail.caldavPort=1080
  12. #davmail.imapPort=1993
  13. #davmail.ldapPort=1636
  14. #davmail.popPort=1995
  15. #davmail.smtpPort=1587
  16. davmail.ldapPort=1389
  17. davmail.caldavPort=1080
  18. davmail.smtpPort=1025
  19. davmail.popPort=1110
  20. davmail.imapPort=1143
  21. #############################################################
  22. # Network settings
  23. # Network proxy settings
  24. davmail.enableProxy=false
  25. davmail.useSystemProxies=false
  26. davmail.proxyHost=
  27. davmail.proxyPort=
  28. davmail.proxyUser=
  29. davmail.proxyPassword=
  30. # proxy exclude list
  31. davmail.noProxyFor=
  32. # allow remote connection to DavMail
  33. davmail.allowRemote=true
  34. # bind server sockets to a specific address
  35. davmail.bindAddress=
  36. # client connections SO timeout in seconds
  37. davmail.clientSoTimeout=
  38. # DavMail listeners SSL configuration
  39. #davmail.ssl.keystoreType=${DAVMAIL_SSL_PASS:+PKCS12}
  40. #davmail.ssl.keystoreFile=${DAVMAIL_SSL_PASS:+/etc/davmail/davmail.p12}
  41. #davmail.ssl.keystorePass=${DAVMAIL_SSL_PASS}
  42. #davmail.ssl.keyPass=${DAVMAIL_SSL_PASS}
  43. # Accept specified certificate even if invalid according to trust store
  44. #davmail.server.certificate.hash=${DAVMAIL_SERVER_CERTIFICATE_HASH}
  45. # disable SSL for specified listeners
  46. #davmail.ssl.nosecurecaldav=false
  47. #davmail.ssl.nosecureimap=false
  48. #davmail.ssl.nosecureldap=false
  49. #davmail.ssl.nosecurepop=false
  50. #davmail.ssl.nosecuresmtp=false
  51. # disable update check
  52. davmail.disableUpdateCheck=true
  53. # Send keepalive character during large folder and messages download
  54. davmail.enableKeepalive=false
  55. # Message count limit on folder retrieval
  56. davmail.folderSizeLimit=0
  57. # Default windows domain for NTLM and basic authentication
  58. davmail.defaultDomain=${DAVMAIL_NTLM_DOMAIN}
  59. #############################################################
  60. # Caldav settings
  61. # override default alarm sound
  62. davmail.caldavAlarmSound=
  63. # retrieve calendar events not older than 90 days
  64. davmail.caldavPastDelay=90
  65. # WebDav only: force event update to trigger ActiveSync clients update
  66. davmail.forceActiveSyncUpdate=false
  67. #############################################################
  68. # IMAP settings
  69. # Delete messages immediately on IMAP STORE \Deleted flag
  70. davmail.imapAutoExpunge=true
  71. # Enable IDLE support, set polling delay in minutes
  72. davmail.imapIdleDelay=
  73. #############################################################
  74. # POP settings
  75. # Delete messages on server after 40 days
  76. davmail.keepDelay=40
  77. # Delete messages in server sent folder after 90 days
  78. davmail.sentKeepDelay=90
  79. # Mark retrieved messages read on server
  80. davmail.popMarkReadOnRetr=false
  81. #############################################################
  82. # SMTP settings
  83. # let Exchange save a copy of sent messages in Sent folder
  84. davmail.smtpSaveInSent=true
  85. #############################################################
  86. # Loggings settings
  87. # log file path, leave empty for default path
  88. #davmail.logFilePath=/var/log/davmail.log
  89. davmail.logFilePath=/dev/stdout
  90. # maximum log file size, use Log4J syntax, set to 0 to use an external rotation mechanism, e.g. logrotate
  91. #davmail.logFileSize=1MB
  92. davmail.logFileSize=0
  93. # log levels
  94. log4j.logger.davmail=INFO
  95. log4j.logger.httpclient.wire=WARN
  96. log4j.logger.org.apache.commons.httpclient=WARN
  97. log4j.rootLogger=WARN
  98. #############################################################
  99. # Workstation only settings
  100. # smartcard access settings
  101. #davmail.ssl.pkcs11Config=
  102. #davmail.ssl.pkcs11Library=
  103. # SSL settings for mutual authentication
  104. #davmail.ssl.clientKeystoreType=
  105. #davmail.ssl.clientKeystoreFile=
  106. #davmail.ssl.clientKeystorePass=
  107. # disable all balloon notifications
  108. davmail.disableGuiNotifications=false
  109. # disable startup balloon notifications
  110. davmail.showStartupBanner=true
  111. # enable transparent client Kerberos authentication
  112. davmail.enableKerberos=false