Displaying 2 results from an estimated 2 matches for "input_list".
Did you mean:
input_disk
2005 Sep 15
1
Javascript object literals -- prototype clash?
...value: ''Init string for stuff1''
},
input_line2: {
name: ''stuff2'',
size: ''30'',
type: ''text'',
value: ''Init string for stuff2''
}
},
form2: {...}, ...
}
Within the form generation javascript routine, I have:
var input_list = forms[form_type];
for (var i in input_list) {
form = form + ''<input '';
var item = input_list[i];
for (var prop in item) {
form = form + prop + ''="'' + item[prop] + ''" '';
}
form = form + ''/><br />'';
}...
2009 Feb 04
1
location of temporary files in deliver
deliver has the following:
-- -- --
/* After buffer grows larger than this, create a temporary file to /tmp
where to read the mail. */
#define MAIL_MAX_MEMORY_BUFFER (1024*128)
...
static struct istream *create_raw_stream(int fd, time_t *mtime_r)
...
input = i_stream_create_seekable(input_list, MAIL_MAX_MEMORY_BUFFER,
"/tmp/dovecot.deliver.");
-- -- --
On most of my systems, /tmp is relatively small (a few hundred MB, and sometimes
on ramdisk), and I like to use /var/tmp for larger temp space.
I just had a problem where I exceeded the...