- Timestamp:
- 11/30/17 00:15:29 (7 years ago)
- Branches:
- gcc484, master, perl-5.22
- Children:
- 94b5bc1
- Parents:
- 6165e17
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
npl/mailserver/kopano_conf/root/etc/kopano/spooler.cfg
r6165e17 r2c1b61a 3 3 4 4 # Outgoing mailserver name or IP address 5 # Use 127.0.0.1 to disable virusscanning for webmail. (not recommended) 5 ; smtp_server = localhost 6 6 smtp_server = 127.0.0.3 7 7 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 8 13 9 14 # drop privileges and run the process as this user 10 run_as_user = kopano15 #run_as_user = kopano 11 16 12 17 # drop privileges and run the process as this group 13 run_as_group = kopano18 #run_as_group = kopano 14 19 20 # create a pid file for stopping the service via the init.d scripts 21 #pid_file = /var/run/kopano/spooler.pid 15 22 16 23 # run server in this path (when not using the -F switch) 17 running_path = / 24 #running_path = /var/lib/kopano 18 25 19 # The us-ascii charset will be upgraded to this charset, to allow more 20 # use of high-characters. Not used when always_send_utf8 is enabled. 21 charset_upgrade = windows-1252 26 # create memory coredumps upon crash [no, systemdefault, yes] 27 #coredump_enabled = systemdefault 22 28 23 # Request SMTP Delivery Status Notifications if the MTA support it 24 enable_dsn = yes 29 # for temporary files 30 # consider mounting a `tmpfs' underneath this path (wherever you 31 # point it to) 32 tmp_path = /tmp 25 33 26 34 ############################################################## … … 30 38 log_method = file 31 39 32 # Loglevel (0 =no logging, 5=full logging)33 log_level = 340 # Loglevel (0(none), 1(crit), 2(err), 3(warn), 4(notice), 5(info), 6(debug)) 41 #log_level = 3 34 42 35 43 # Logfile for log_method = file, use '-' for stderr … … 39 47 log_timestamp = 1 40 48 49 # Buffer logging in what sized blocks. 0 for line-buffered (syslog-style). 50 #log_buffer_size = 0 41 51 42 52 ############################################################## 43 53 # SPOOLER SSL LOGIN SETTINGS 44 # 45 # Note: server_socket must be set to https://servername:portname/ kopano54 # 55 # Note: server_socket must be set to https://servername:portname/ 46 56 # to use this type of login method 47 57 48 # Login to the Kopanoserver using this SSL Key49 sslkey_file = /etc/kopano/ssl/spooler.pem58 # Login to the storage server using this SSL Key 59 #sslkey_file = /etc/kopano/ssl/spooler.pem 50 60 51 61 # The password of the SSL Key 52 sslkey_pass = replace-with-server-cert-password62 #sslkey_pass = replace-with-server-cert-password 53 63 54 64 ############################################################## … … 76 86 # Set this value to 'yes' to let the spooler always send emails with 77 87 # delegates (other user than yourself in the From: header) 78 # In installations before 6.20, this value was always 'yes' 88 # In installations before 6.20, this value was always 'yes'. 89 # IMPORTANT: This feature overrides "send-as" functionality. 90 # always_send_delegates = no 79 91 always_send_delegates = yes 80 81 # This does the same as always_send_delegates, but gets rid of the 'on behalf of' text.82 #always_send_as = yes83 92 84 93 # Set this value to 'no' if you do NOT want to allow redirected e-mails … … 90 99 copy_delegate_mails = yes 91 100 92 # Setting this option to no will disallow sending to the everyone group. 93 allow_send_to_everyone=yes 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 94 107 95 108 ############################################################## 96 # SPOOLER MEETING REQUEST SETTINGS109 # SPOOLER OUTPUT SETTINGS 97 110 98 111 # Set this value to 'yes' to always send meeting request information 99 # using TNEF method (winmail.dat attachments) 100 # Otherwise, the meeting request information is sent using 101 # iCalendar (calendar.ics attachment). 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. 102 116 always_send_tnef = no 117 118 # Send all e-mail always using the UTF-8 charset. 119 # Normally, the requested charset is used, which can be any charset. 120 always_send_utf8 = no 121 122 # The us-ascii charset will be upgraded to this charset, to allow more 123 # use of high-characters. Not used when always_send_utf8 is enabled. 124 charset_upgrade = windows-1252 125 126 # Request SMTP Delivery Status Notifications if the MTA support it 127 enable_dsn = yes 103 128 104 129 ############################################################## … … 120 145 # This will do nothing if no archive is attached to the source mailbox. 121 146 archive_on_send = no 122 123 #################################### 147 ############################################################## 124 148 # SPOOLER PLUGIN SETTINGS 125 149 126 150 # Enable the spooler plugin framework 127 plugin_enabled = no 151 plugin_enabled = yes 152 128 153 # Path to the spooler plugin manager 129 154 plugin_manager_path = /usr/share/kopano-spooler/python 155 130 156 # Path to the activated spooler plugins. 131 157 # This folder contains symlinks to the kopano plugins and custom scripts. The plugins are … … 136 162 # $ ln -s /usr/share/kopano-spooler/python/plugins/disclaimer.py /var/lib/kopano/spooler/plugins/disclaimer.py 137 163 plugin_path = /var/lib/kopano/spooler/plugins 138 139
Note: See TracChangeset
for help on using the changeset viewer.