Projects
Kolab:3.4
cyrus-imapd
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 83
View file
cyrus-imapd-2.5.tar.gz/imap/ctl_mboxlist.c
Changed
@@ -215,12 +215,10 @@ } // if (r = dlist_getatom()) if (dl_ace->name && tmp) { - const char *ace = strconcat(xstrdup(dl_ace->name), "\t", xstrdup(tmp)); - if (acl) { - acl = strconcat(xstrdup(acl), "\t", ace); + acl = strconcat(xstrdup(acl), "\t", dl_ace->name, "\t", tmp); } else { - acl = xstrdup(ace); + acl = strconcat(dl_ace->name, "\t", tmp); } } }
View file
cyrus-imapd-2.5.tar.gz/imap/imapd.c
Changed
@@ -6047,7 +6047,7 @@ } prot_printf(s->out, - "%s RENAME \"%s\" \"%s\" %s\r\n", + "%s RENAME \"%s\" \"%s\"\r\n", tag, oldname, newname @@ -8042,8 +8042,11 @@ strarray_append(entries, arg.s); - // Not a list - *is_list = 0; + // It is only not a list if there are no wildcards + if (!strchr(arg.s, '*') && !strchr(arg.s, '%')) { + // Not a list + *is_list = 0; + } } if (c == ' ' || c == '\r') return c;
View file
cyrus-imapd-2.5.tar.gz/imap/mboxevent.c
Changed
@@ -41,6 +41,7 @@ * Author: Sébastien Michel from Atos Worldline */ #include <config.h> +#include "imap/mboxevent.h" #ifdef ENABLE_MBOXEVENT #include <stdlib.h> #include <stdio.h> @@ -60,7 +61,6 @@ #include "times.h" #include "xmalloc.h" -#include "imap/mboxevent.h" #include "imap/mboxname.h" #include "imap/notify.h" @@ -1179,8 +1179,6 @@ #else /* !ENABLE_MBOXEVENT */ -#include "mboxevent.h" - EXPORTED void mboxevent_init(void) { } @@ -1234,7 +1232,7 @@ EXPORTED void mboxevent_set_acl(struct mboxevent *event __attribute__((unused)), const char *identifier __attribute__((unused)), ->.......>.......>.......>.......const char *rights __attribute__((unused))) + const char *rights __attribute__((unused))) { }
View file
cyrus-imapd-2.5.tar.gz/sieve/interp.c
Changed
@@ -143,6 +143,9 @@ strlcat(i->extensions, " subaddress", EXT_LEN); if (config_sieve_extensions & IMAP_ENUM_SIEVE_EXTENSIONS_COPY) strlcat(i->extensions, " copy", EXT_LEN); + + if (config_sieve_extensions & IMAP_ENUM_SIEVE_EXTENSIONS_DATE) + strlcat(i->extensions, " date", EXT_LEN); } return i->extensions;
View file
cyrus-imapd.imap-2.3.x-conf
Changed
@@ -11,4 +11,3 @@ tls_ca_file: /etc/pki/tls/certs/ca-bundle.crt # uncomment this if you're operating in a DSCP environment (RFC-4594) # qosmarking: af13 -suppress_capabilities: METADATA
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.