changeset 3027:7321b943b34e HEAD

Removed maildir_check_content_changes setting. The feature hasn't existed for a long time.
author Timo Sirainen <tss@iki.fi>
date Wed, 29 Dec 2004 19:31:54 +0200
parents 80f7050c8bb5
children 16183e87beaf
files dovecot-example.conf src/master/mail-process.c src/master/master-settings.c src/master/master-settings.h
diffstat 4 files changed, 0 insertions(+), 11 deletions(-) [+]
line wrap: on
line diff
--- a/dovecot-example.conf	Wed Dec 29 19:02:47 2004 +0200
+++ b/dovecot-example.conf	Wed Dec 29 19:31:54 2004 +0200
@@ -303,12 +303,6 @@
 # If you care about performance, enable it.
 #maildir_copy_with_hardlinks = no
 
-# Check if mails' content has been changed by external programs. This slows
-# down things as extra stat() needs to be called for each file. If changes are
-# noticed, the message is treated as a new message, since IMAP protocol
-# specifies that existing messages are immutable.
-#maildir_check_content_changes = no
-
 # Which locking methods to use for locking mbox. There's four available:
 #  dotlock: Create <mailbox>.lock file. This is the oldest and most NFS-safe
 #           solution. If you want to use /var/mail/ like directory, the users
--- a/src/master/mail-process.c	Wed Dec 29 19:02:47 2004 +0200
+++ b/src/master/mail-process.c	Wed Dec 29 19:31:54 2004 +0200
@@ -214,8 +214,6 @@
 		env_put("MAILDIR_STAT_DIRS=1");
 	if (set->maildir_copy_with_hardlinks)
 		env_put("MAILDIR_COPY_WITH_HARDLINKS=1");
-	if (set->maildir_check_content_changes)
-		env_put("MAILDIR_CHECK_CONTENT_CHANGES=1");
 	if (set->mail_full_filesystem_access)
 		env_put("FULL_FILESYSTEM_ACCESS=1");
 	if (set->pop3_no_flag_updates)
--- a/src/master/master-settings.c	Wed Dec 29 19:02:47 2004 +0200
+++ b/src/master/master-settings.c	Wed Dec 29 19:31:54 2004 +0200
@@ -100,7 +100,6 @@
 	DEF(SET_STR, lock_method),
 	DEF(SET_BOOL, maildir_stat_dirs),
 	DEF(SET_BOOL, maildir_copy_with_hardlinks),
-	DEF(SET_BOOL, maildir_check_content_changes),
 	DEF(SET_STR, mbox_read_locks),
 	DEF(SET_STR, mbox_write_locks),
 	DEF(SET_INT, mbox_lock_timeout),
@@ -272,7 +271,6 @@
 	MEMBER(lock_method) "fcntl",
 	MEMBER(maildir_stat_dirs) FALSE,
 	MEMBER(maildir_copy_with_hardlinks) FALSE,
-	MEMBER(maildir_check_content_changes) FALSE,
 	MEMBER(mbox_read_locks) "fcntl",
 	MEMBER(mbox_write_locks) "dotlock fcntl",
 	MEMBER(mbox_lock_timeout) 300,
--- a/src/master/master-settings.h	Wed Dec 29 19:02:47 2004 +0200
+++ b/src/master/master-settings.h	Wed Dec 29 19:31:54 2004 +0200
@@ -71,7 +71,6 @@
 	const char *lock_method;
 	int maildir_stat_dirs;
 	int maildir_copy_with_hardlinks;
-	int maildir_check_content_changes;
 	const char *mbox_read_locks;
 	const char *mbox_write_locks;
 	unsigned int mbox_lock_timeout;