Displaying 5 results from an estimated 5 matches for "simiatech".
Did you mean:
semitech
2013 Dec 11
1
Plugin development - ostream and index cache size
Hi,
I'm new to this list, so first thanks for the dovecot tool! So far, it
has been great to work with.
Currently, I'm developing a scrambler plugin for dovecot, that should
stores the mails encrypted. To do that, I've created the
scrambler_ostream and scrambler_istream that does the encryption and
that I hook in the mail storage process.
The scrambler_ostream is stacked on top
2014 Dec 11
2
stacking istreams and ostreams
...ion (which isn't efficient) both streams are working
correct without any errors.
Is there some way the zlib plugin changes the cached message size? Is
there some behaviour of the zlib plugin that I'm missing? Any help would
be very welcome.
Best regards,
Philipp
--
simia.tech GbR
http://simiatech.com
2014 Dec 12
0
stacking istreams and ostreams
Well, I've found the bug. I've got confused with the stream-stacking
function pointers. The encryption istream was stacked on top of the
parent and the ostream below the parent. That caused this very confusing
bug.
Best,
Philipp
Am 11.12.2014 um 12:16 schrieb Philipp Br?ll:
> Hello,
>
> I'm developing an encryption plugin for dovecot and ran into a problem
> with the
2015 May 20
0
Log mail access
Hello,
is it somehow possible to log the access to a mail? The log entry should
be written, if a user fetches a mail via imap or pop3. It would be
convenient for debugging.
I've checked the Logging-Wiki and the docs for the mail_log plugin, but
they seem to log any event but "mail access".
Best regards,
Philipp
2014 Feb 06
0
Plugin architecture
Hi,
I'm currently developing a scrambler plugin which should be used to
store the mails encrypted on the disk. It uses a special ostream for
encryption and an istream for decryption.
The idea is, that if a mail arrives via LMTP it goes through the ostream
and is written encrypted to disk. If an mail is accessed via IMAP, the
istream is used to decrypt the data from disk.
That all works