Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports
Path: blob/main/mail/asmail/files/patch-globals.h
18157 views
1
--- globals.h.orig 2007-04-09 00:51:09.000000000 -0700
2
+++ globals.h 2011-01-06 22:55:10.000000000 -0800
3
@@ -15,7 +15,9 @@
4
#define VERSION "2.1"
5
#define RCFILE ".asmailrc"
6
/* Watch out! The MAX_INPUT_LENGTH must be a multiple of 64! */
7
-#define MAX_INPUT_LENGTH 255
8
+/* Why?? 255 (the original value) is not a multiple of 64. 255 is too small */
9
+/* for IMAP responses */
10
+#define MAX_INPUT_LENGTH 4096
11
12
#define pthread_attr_default NULL
13
14
--- patch-globals.h ends here ---
15
16