search for: filelen

Displaying 7 results from an estimated 7 matches for "filelen".

2006 Jun 20
2
Re: entered bc_action_emit with filelen:
...still getting the errors below on Debian Etch with Dovecot 1.0.8-4 and Dovecot LDA. Is this something that's fixed in 1.0.9? It doesn't seem to have an effect but I'm wary of messages I don't recognise! Regards, Alex Jun 20 14:13:04 server01 deliver: entered bc_action_emit with filelen: 16 Jun 20 14:13:04 server01 deliver: entered bc_action_emit with filelen: 112 Jun 20 14:13:04 server01 deliver: entered bc_action_emit with filelen: 240 Jun 20 14:13:04 server01 deliver: entered bc_action_emit with filelen: 368 Jun 20 14:13:04 server01 deliver: entered bc_action_emit with filelen:...
2006 Aug 16
3
problem with sieve implementation
...tion of this link (http://wiki.dovecot.org/LDA) to implement sieve with my dovecot installation (dovecot-1.0rc2) and i'm running the timsieve daemon of my cyrus-imapd installation but i got the following error message when the sieve daemon try to formward message : entered bc_action_emit with filelen: 16 Aug 13 14:53:27 ldap sieve[3870]: entered bc_action_emit with filelen: 36 Thank you for your help regards Amadou TOURE -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://dovecot.org/pipermail/dovecot/attachments/20060816/5b81d594/attachment-0001.html>
2006 May 11
3
LDA Sieve feature request
Hello, In http://wiki.dovecot.org/LDA I read # If there is no user-specific Sieve-script, global Sieve script is # executed if set. #global_script_path = so you can set global_script_path and override it using a per user script. It would be nice if the per user scripts could be optionally run after (or before maybe?) the global script. Another nice thing would be per-virtualdomain sieve
2016 Mar 07
0
Re: [PATCH v2] Use less stack.
...find_path (guestfs_h *g, > > /* Returns true iff file is contained in dir. */ > static int > -dir_contains_file (const char *dir, const char *file) > +dir_contains_file (guestfs_h *g, const char *dir, const char *file) > { > - size_t dirlen = strlen (dir); > - size_t filelen = strlen (file); > - size_t len = dirlen + filelen + 2; > - char path[len]; > + CLEANUP_FREE char *path; Missing "= NULL" here. Thanks, -- Pino Toscano
2016 Mar 07
2
[PATCH v2] Use less stack.
...s (*kernel, NULL); @@ -396,27 +386,24 @@ find_path (guestfs_h *g, /* Returns true iff file is contained in dir. */ static int -dir_contains_file (const char *dir, const char *file) +dir_contains_file (guestfs_h *g, const char *dir, const char *file) { - size_t dirlen = strlen (dir); - size_t filelen = strlen (file); - size_t len = dirlen + filelen + 2; - char path[len]; + CLEANUP_FREE char *path; - snprintf (path, len, "%s/%s", dir, file); + path = safe_asprintf (g, "%s/%s", dir, file); return access (path, F_OK) == 0; } /* Returns true iff every listed file i...
2014 May 16
0
Wine release 1.7.19
...: Don't bring owned windows to the front when they're clicked. winemac: Fix a memory leak if posting WM_DROPFILES fails. winemac: Add the ability to disable high-resolution scrolling. Lauri Kentt? (1): po: Update Finnish translation. Marcus Meissner (1): ver.dll16: filelen is an in/out parameter (Coverity). Mark Harmstone (1): setupapi: Add CM_Get_DevNode_Registry_Property wrapper around CM_Get_DevNode_Registry_Property_Ex. Martin Storsjo (2): ntdll: Don't write uninitialized bytes at the end of filenames. ntdll: Align FILE_*_DIRECTORY_INFORMA...
2016 Mar 06
8
[PATCH 0/5] Use less stack.
Various changes/fixes to use smaller stack frames. Rich.