comparison dovecot-example.conf @ 5626:d1de7c486763 HEAD

Removed mmap_no_write setting. The only OS requiring it is OpenBSD, so we're now forcing mmap_disable=yes with it instead. dovecot.index.cache file is the most important file to mmap(), but since this didn't work with mmap_no_write, there's not much point in keeping special code paths for minimal gains.
author Timo Sirainen <tss@iki.fi>
date Wed, 16 May 2007 18:25:28 +0300
parents 0d6cd7281aa7
children f18a7fd8ac9a
comparison
equal deleted inserted replaced
5625:ebf443cae951 5626:d1de7c486763
280 #mail_log_max_lines_per_sec = 10 280 #mail_log_max_lines_per_sec = 10
281 281
282 # Don't use mmap() at all. This is required if you store indexes to shared 282 # Don't use mmap() at all. This is required if you store indexes to shared
283 # filesystems (NFS or clustered filesystem). 283 # filesystems (NFS or clustered filesystem).
284 #mmap_disable = no 284 #mmap_disable = no
285
286 # Don't write() to mmaped files. This is required for some operating systems
287 # which use separate caches for them, such as OpenBSD.
288 #mmap_no_write = no
289 285
290 # Rely on O_EXCL to work when creating dotlock files. The default is to use 286 # Rely on O_EXCL to work when creating dotlock files. The default is to use
291 # hard linking. O_EXCL makes the dotlocking faster, but it doesn't always 287 # hard linking. O_EXCL makes the dotlocking faster, but it doesn't always
292 # work with NFS. 288 # work with NFS.
293 #dotlock_use_excl = no 289 #dotlock_use_excl = no