Displaying 3 results from an estimated 3 matches for "file_istream".
2012 Oct 30
1
copymail deleted
Hi,
I had enabled an option in dovecot. mail_attachment_dir = /var/mail/virtual/copymail/attachments
After a while I checked /var/mail/virtual and did some cleanup. I did not remember that copymail was specified in dovecot and erased it.
Oct 30 10:56:05 mx0 dovecot: imap(hidden): Error: file_istream.stat(/var/mail/virtual/copymail/attachments/6a/50/6a506530265ef7c9feb396410eaf6946036e9a79-b034401e794009503a0400002cb72ff6) failed: No such file or directory
Oct 30 10:56:05 mx0 dovecot: imap(hidden): Error: istream-concat: Failed to get size of stream /var/mail/virtual/copymail/attachments/6a/50/...
2013 Jul 21
2
attachments not with email causing FETCH BODY failed
Hi,
Anyone else experiencing this (Dovecot 2.2.4, attachments stored
separately):
dovecot: imap(user at kamdha.com): Error: file_istream.open(/home/
example.com/user/attachments/f5/f0/f5f0f2c08c4311fa404d090a703c3b492f2ea718-a52388285a04eb51820c0000d485234e-c92f64f79f0d1ed01e6d5b314f04886c-42501)
failed: No such file or directory
dovecot: imap(user at example.com): Error: read(BODY[]) failed: No such file
or directory (FETCH for ma...
2010 Mar 13
2
Design: Asynchronous I/O for single/multi-dbox
...s
================
Async input streams are created with FS API handle, so it's possible to
start reading from them before the file has even been open()ed. The
callers must be aware of this and realize that read() can fail with
ENOENT, etc.
Async input streams' read() would work exactly as file_istream works for
non-blocking sockets: It would return data that is already buffered in
memory. If there's nothing, it returns EAGAIN. The FS API's
set_input_callback() can be used to set a callback function that is
called whenever there's more data available in the buffer.
Async output strea...