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