changeset 1959:50e24ce4f9c3 HEAD

and a few more custom flag -> keyword changes
author Timo Sirainen <tss@iki.fi>
date Sun, 02 May 2004 23:33:49 +0300
parents 4dec6a3d79fd
children b9ea4db3f8e0
files configure.in src/imap/main.c src/master/mail-process.c src/master/master-settings.c src/master/master-settings.h
diffstat 5 files changed, 7 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/configure.in	Sun May 02 23:32:15 2004 +0300
+++ b/configure.in	Sun May 02 23:33:49 2004 +0300
@@ -1,7 +1,7 @@
 AC_INIT(src)
 
 AM_CONFIG_HEADER(config.h)
-AM_INIT_AUTOMAKE(dovecot, 1.0-test2)
+AM_INIT_AUTOMAKE(dovecot, 1.0-test3)
 
 AM_MAINTAINER_MODE
 
--- a/src/imap/main.c	Sun May 02 23:32:15 2004 +0300
+++ b/src/imap/main.c	Sun May 02 23:33:49 2004 +0300
@@ -113,7 +113,7 @@
 		(unsigned int)strtoul(str, NULL, 10) :
 		DEFAULT_IMAP_MAX_LINE_LENGTH;
 
-	str = getenv("MAIL_MAX_FLAG_LENGTH");
+	str = getenv("MAIL_MAX_KEYWORD_LENGTH");
 	max_keyword_length = str != NULL ?
 		(unsigned int)strtoul(str, NULL, 10) :
 		DEFAULT_MAX_KEYWORD_LENGTH;
--- a/src/master/mail-process.c	Sun May 02 23:32:15 2004 +0300
+++ b/src/master/mail-process.c	Sun May 02 23:33:49 2004 +0300
@@ -252,8 +252,8 @@
 				set->mailbox_idle_check_interval));
 	env_put(t_strconcat("CLIENT_WORKAROUNDS=",
 			    set->client_workarounds, NULL));
-	env_put(t_strdup_printf("MAIL_MAX_FLAG_LENGTH=%u",
-				set->mail_max_flag_length));
+	env_put(t_strdup_printf("MAIL_MAX_KEYWORD_LENGTH=%u",
+				set->mail_max_keyword_length));
 	env_put(t_strdup_printf("IMAP_MAX_LINE_LENGTH=%u",
 				set->imap_max_line_length));
 
--- a/src/master/master-settings.c	Sun May 02 23:32:15 2004 +0300
+++ b/src/master/master-settings.c	Sun May 02 23:33:49 2004 +0300
@@ -85,7 +85,7 @@
 	DEF(SET_INT, mailbox_check_interval),
 	DEF(SET_INT, mailbox_idle_check_interval),
 	DEF(SET_BOOL, mail_full_filesystem_access),
-	DEF(SET_INT, mail_max_flag_length),
+	DEF(SET_INT, mail_max_keyword_length),
 	DEF(SET_BOOL, mail_save_crlf),
 	DEF(SET_BOOL, mail_read_mmaped),
 	DEF(SET_BOOL, mmap_disable),
@@ -206,7 +206,7 @@
 	MEMBER(mailbox_check_interval) 0,
 	MEMBER(mailbox_idle_check_interval) 30,
 	MEMBER(mail_full_filesystem_access) FALSE,
-	MEMBER(mail_max_flag_length) 50,
+	MEMBER(mail_max_keyword_length) 50,
 	MEMBER(mail_save_crlf) FALSE,
 	MEMBER(mail_read_mmaped) FALSE,
 	MEMBER(mmap_disable) FALSE,
--- a/src/master/master-settings.h	Sun May 02 23:32:15 2004 +0300
+++ b/src/master/master-settings.h	Sun May 02 23:33:49 2004 +0300
@@ -60,7 +60,7 @@
 	unsigned int mailbox_check_interval;
 	unsigned int mailbox_idle_check_interval;
 	int mail_full_filesystem_access;
-	int mail_max_flag_length;
+	int mail_max_keyword_length;
 	int mail_save_crlf;
 	int mail_read_mmaped;
 	int mmap_disable;