Changeset 2c1b61a for npl/mailserver/kopano_conf/root/etc/kopano/search.cfg
- 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/search.cfg
r6165e17 r2c1b61a 3 3 4 4 # Location of the index files 5 index_path = /home/system/kopano_index/ 5 # index_path = /var/lib/kopano/search 6 index_path = /home/system/kopano_index/ 6 7 7 8 # run as specific user 8 run_as_user = kopano9 #run_as_user = kopano 9 10 10 11 # run as specific group 11 run_as_group = kopano12 #run_as_group = kopano 12 13 14 # control pid file 15 #pid_file = /var/run/kopano/search.pid 13 16 14 17 # run server in this path (when not using the -F switch) 15 running_path = / 18 #running_path = /var/lib/kopano 16 19 17 20 # Limit the number of results returned (0 = don't limit) 18 limit_results = 0 19 21 limit_results = 1000 20 22 21 23 ############################################################## 22 # CONNECTION TO KOPANOSERVER SETTINGS24 # CONNECTION TO STORAGE SERVER SETTINGS 23 25 # 24 26 27 # Socket to find the connection to the storage server. 28 # Use https to reach servers over the network 29 #server_socket = file:///var/run/kopano/server.sock 25 30 26 # Login to the Kopanoserver using this SSL Key31 # Login to the storage server using this SSL Key 27 32 #sslkey_file = /etc/kopano/ssl/search.pem 28 33 … … 34 39 # 35 40 41 # binding address 42 # To setup for multi-server, use: http://0.0.0.0:port or https://0.0.0.0:port 43 server_bind_name = file:///var/run/kopano/search.sock 36 44 37 45 # File with RSA key for SSL, used then server_bind_name uses https 38 #ssl_private_key_file= /etc/kopano/search/privkey.pem46 ssl_private_key_file = /etc/kopano/search/privkey.pem 39 47 40 48 # File with certificate for SSL, used then server_bind_name uses https 41 #ssl_certificate_file= /etc/kopano/search/cert.pem49 ssl_certificate_file = /etc/kopano/search/cert.pem 42 50 43 51 ############################################################## … … 47 55 log_method = file 48 56 49 # Loglevel (0 =no logging, 5=full logging, 6=debugging)50 log_level = 5 57 # Loglevel (0(none), 1(crit), 2(err), 3(warn), 4(notice), 5(info), 6(debug)) 58 #log_level = 3 51 59 52 60 # Logfile for log_method = file, use '-' for stderr … … 56 64 log_timestamp = 1 57 65 58 log_buffer_size = 059 66 60 67 ############################################################## 61 68 # ADVANCED INDEXED SEARCH SETTINGS 69 70 # Back end search engine (currently only xapian is supported) 71 #search_engine = xapian 62 72 63 73 # Size of indexing cache (used for indexing only, not for searching) … … 68 78 #index_exclude_properties = 007D 0064 0C1E 0075 678E 678F 69 79 70 ############################################################## 71 # INDEX OPTIMIZATION SCHEDULE 80 # Number of indexing processes used during initial indexing 81 # Setting this to a higher value can greatly speed up initial indexing, 82 # especially when attachments are indexed. 83 index_processes = 1 72 84 73 # Start the optimization routine at this hour, in 24h notation.74 # optimize_start = 285 # Index junk folder 86 #index_junk = yes 75 87 76 # Stop the optimization routine at this hour, in 24h notation. 77 # The current index that is being optimized is finished before stopping. 78 #optimize_stop = 5 79 80 # Only optimize indexes which wern't optimized for the past X days. 81 #optimize_age = 7 88 # Prepare search suggestions ("did-you-mean?") during indexing 89 # This takes up a large percentage of the used disk space 90 #suggestions = yes 82 91 83 92 ############################################################## … … 89 98 # Maximum file size for attachments 90 99 index_attachment_max_size = 5M 91 92 # Scripts to attachment to text parser93 index_attachment_parser = /etc/kopano/searchscripts/attachments_parser94 95 # Maximum amount of memory which a parser may use in bytes (set to 0 for unlimited)96 # If this maximum is exceeded the parser will be killed97 index_attachment_parser_max_memory = 098 99 # Maximim amount of CPU time (in seconds) which a parser may spend on parsing (set to 0 for unlimited)100 # If this maximum is exceeded the parser will be killed101 index_attachment_parser_max_cputime = 0102 103 # Filter out parsing of attachment which has a mimetype from this list104 # Only the first part of the mime needs to be given, like 'image'.105 # This field is SPACE separated106 index_attachment_mime_filter =107 108 # Filter out parsing of attachment which has an extension from this list109 # (only tested if mimetype was not found on the attachment)110 # This field is SPACE separated111 index_attachment_extension_filter =112 113 #number of parallel indexers114 index_processes=4115
Note: See TracChangeset
for help on using the changeset viewer.