spooler.cfg 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. ##############################################################
  2. # SPOOLER SETTINGS
  3. # Outgoing mailserver name or IP address
  4. smtp_server = localhost
  5. # Port number for outgoing mailserver
  6. smtp_port = 25
  7. # Server Unix socket location
  8. #server_socket = file:///var/run/kopano/server.sock
  9. # drop privileges and run the process as this user
  10. #run_as_user = kopano
  11. # drop privileges and run the process as this group
  12. #run_as_group = kopano
  13. # create a pid file for stopping the service via the init.d scripts
  14. #pid_file = /var/run/kopano/spooler.pid
  15. # run server in this path (when not using the -F switch)
  16. #running_path = /var/lib/kopano
  17. # create memory coredumps upon crash in the running_path directory
  18. coredump_enabled = no
  19. # for temporary files
  20. # consider mounting a `tmpfs' underneath this path (wherever you
  21. # point it to)
  22. tmp_path = /tmp
  23. ##############################################################
  24. # SPOOLER LOG SETTINGS
  25. # Logging method (syslog, file)
  26. log_method = file
  27. # Loglevel (0(none), 1(crit), 2(err), 3(warn), 4(notice), 5(info), 6(debug))
  28. #log_level = 3
  29. # Logfile for log_method = file, use '-' for stderr
  30. log_file = /var/log/kopano/spooler.log
  31. # Log timestamp - prefix each log line with timestamp in 'file' logging mode
  32. log_timestamp = 1
  33. # Buffer logging in what sized blocks. 0 for line-buffered (syslog-style).
  34. #log_buffer_size = 0
  35. ##############################################################
  36. # SPOOLER SSL LOGIN SETTINGS
  37. #
  38. # Note: server_socket must be set to https://servername:portname/
  39. # to use this type of login method
  40. # Login to the storage server using this SSL Key
  41. #sslkey_file = /etc/kopano/ssl/spooler.pem
  42. # The password of the SSL Key
  43. #sslkey_pass = replace-with-server-cert-password
  44. ##############################################################
  45. # SPOOLER THREAD SETTINGS
  46. # Maximum number of threads used to send outgoing messages
  47. # Default: 5
  48. max_threads = 5
  49. ##############################################################
  50. # SPOOLER FAXING SETTINGS
  51. # When sending an email that must go to a fax address, the address
  52. # will be rewritten to <phonenumber>@<fax_domain>
  53. fax_domain = fax.local
  54. # If the received number starts with a '+', it will be replaced by
  55. # the fax_international value.
  56. # eg. +3112345678@fax.local will be rewritten to 003112345678@fax.local
  57. fax_international = 00
  58. ##############################################################
  59. # SPOOLER DELEGATE SETTINGS
  60. # Set this value to 'yes' to let the spooler always send emails with
  61. # delegates (other user than yourself in the From: header)
  62. # In installations before 6.20, this value was always 'yes'.
  63. # IMPORTANT: This feature overrides "send-as" functionality.
  64. always_send_delegates = no
  65. # Set this value to 'no' if you do NOT want to allow redirected e-mails
  66. # being sent with their original 'FROM' header
  67. allow_redirect_spoofing = yes
  68. # Copies the sent mail of delegates and send-as mails in the
  69. # "Sent Items" folder of the representer.
  70. copy_delegate_mails = yes
  71. # Allow to forward and sent a meeting request as delegate Kopano and
  72. # SMTP user.
  73. allow_delegate_meeting_request = yes
  74. # Allow users to send email to the 'everyone' group
  75. allow_send_to_everyone = yes
  76. ##############################################################
  77. # SPOOLER OUTPUT SETTINGS
  78. # Set this value to 'yes' to always send meeting request information
  79. # using TNEF method (winmail.dat attachments).
  80. # Otherwise, the meeting request information is sent using
  81. # iCalendar (calendar.ics attachment).
  82. # Mail bodies created in RTF text format will also use TNEF.
  83. always_send_tnef = no
  84. # Send all e-mail always using the UTF-8 charset.
  85. # Normally, the requested charset is used, which can be any charset.
  86. always_send_utf8 = no
  87. # The us-ascii charset will be upgraded to this charset, to allow more
  88. # use of high-characters. Not used when always_send_utf8 is enabled.
  89. charset_upgrade = windows-1252
  90. # Request SMTP Delivery Status Notifications if the MTA support it
  91. enable_dsn = yes
  92. ##############################################################
  93. # SPOOLER GROUP EXPANSION
  94. # Set this value to 'yes' if groups should be expanded to their
  95. # members; This means that the receiving party will see the names
  96. # of the group members in the To: header for example. If set to
  97. # 'no', the name of the group will appear in the headers.
  98. #
  99. # Note: groups with email addresses are never expanded
  100. expand_groups = no
  101. ##############################################################
  102. # SPOOLER ARCHIVING SETTINGS
  103. # Enable archive_on_send to automatically archive all outgoing
  104. # messages.
  105. # This will do nothing if no archive is attached to the source mailbox.
  106. archive_on_send = no
  107. ##############################################################
  108. # SPOOLER PLUGIN SETTINGS
  109. # Enable the spooler plugin framework
  110. plugin_enabled = yes
  111. # Path to the spooler plugin manager
  112. plugin_manager_path = /usr/share/kopano-spooler/python
  113. # Path to the activated spooler plugins.
  114. # This folder contains symlinks to the kopano plugins and custom scripts. The plugins are
  115. # installed in '/usr/share/kopano-spooler/python/plugins/'. To activate a plugin create a symbolic
  116. # link in the 'plugin_path' directory.
  117. #
  118. # Example:
  119. # $ ln -s /usr/share/kopano-spooler/python/plugins/disclaimer.py /var/lib/kopano/spooler/plugins/disclaimer.py
  120. plugin_path = /var/lib/kopano/spooler/plugins