Displaying 3 results from an estimated 3 matches for "maildir_info_sep".
2006 Mar 12
0
How to substitute colon `:' for another character in Maildir message files?
...ally "mount_smbfs") truncates the file
> names. As a result, files with truncated duplicate file names are
> overwritten.
>
> Would prefer a build option or configuration parameter (a hack is O.K.
> if nothing else is available).
src/lib-storage/maildir/maildir-storage.h
MAILDIR_INFO_SEP
MAILDIR_INFO_SEP_S
Changing that breaks maildir standard, so I don't want to make it any
easier to change it.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 191 bytes
Desc: This is a digitally signed mess...
2014 Apr 24
1
maildir compressed message fix patch
...*info, *dir;
struct stat st;
+ const struct stat * stp;
+ const struct compression_handler * handler;
+ struct istream * fstream;
+ struct istream * cstream;
fname = strrchr(path, '/');
i_assert(fname != NULL);
@@ -650,13 +655,29 @@
info = strchr(fname, MAILDIR_INFO_SEP);
if (info == NULL) info = "";
+ fstream = i_stream_create_file(path, 1024);
+ handler = compression_detect_handler(fstream);
+ if (handler != NULL && handler->create_istream != NULL)
+ {
+ cstream = handler->create_istream(fstream, TRUE);
+ if (i_stream_s...
2011 Sep 12
2
Possible to Customize File Naming Scheme?
Hello all,
[Sorry if this has been covered already - I searched back a little way
in the archive and didn't find anything recent on the topic.]
I'm wondering if it is possible to customize the way dovecot creates or
modifies filenames in the maildir directories?
I'm watching how my mail system works, and I see that procmail creates a
new file in the <folder>/new directory,