From d82179388e04e4e976d734887f3b7eb03b6414f2 Mon Sep 17 00:00:00 2001 From: "Taylor R. Campbell" Date: Sun, 11 Mar 2007 22:30:05 +0000 Subject: [PATCH] Bump the default size limit for in-line display of MIME text parts to 65536, since we by default cache message bodies of that size anyway. --- v7/src/imail/imail-top.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v7/src/imail/imail-top.scm b/v7/src/imail/imail-top.scm index 4b1af433d..5725d8a31 100644 --- a/v7/src/imail/imail-top.scm +++ b/v7/src/imail/imail-top.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: imail-top.scm,v 1.298 2007/03/11 22:26:45 riastradh Exp $ +$Id: imail-top.scm,v 1.299 2007/03/11 22:30:05 riastradh Exp $ Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, @@ -185,7 +185,7 @@ Note that this variable does not affect subparts of multipart/alternative." "Size limit in octets for showing MIME text message parts in-line. MIME text message parts less than this size are shown in-line by default. This variable can also be #F; then all parts will be shown in-line." - 8192 + 65536 (lambda (x) (or (boolean? x) (exact-nonnegative-integer? x)))) (define-variable imail-mime-attachment-directory -- 2.25.1