From da73ddecbae054ad1b82442f97c4335b21c5ae92 Mon Sep 17 00:00:00 2001 From: Sergio Villar Senin Date: Fri, 3 Jul 2009 12:25:31 +0200 Subject: [PATCH] Fixes NB#126375, default message size limit lowered to 100Kb --- src/modest-init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modest-init.c b/src/modest-init.c index f3f3c2c..1dc9f3c 100644 --- a/src/modest-init.c +++ b/src/modest-init.c @@ -760,7 +760,7 @@ init_default_settings (ModestConf *conf) modest_conf_set_int (conf, MODEST_CONF_UPDATE_INTERVAL, MODEST_UPDATE_INTERVAL_15_MIN, NULL); if (!modest_conf_key_exists (conf, MODEST_CONF_MSG_SIZE_LIMIT, NULL)) - modest_conf_set_int (conf, MODEST_CONF_MSG_SIZE_LIMIT, 1000, NULL); + modest_conf_set_int (conf, MODEST_CONF_MSG_SIZE_LIMIT, 100, NULL); if (!modest_conf_key_exists (conf, MODEST_CONF_PLAY_SOUND_MSG_ARRIVE, NULL)) modest_conf_set_bool (conf, MODEST_CONF_PLAY_SOUND_MSG_ARRIVE, FALSE, NULL); -- 1.7.9.5