~ubuntu-branches/ubuntu/raring/dovecot/raring

« back to all changes in this revision

Viewing changes to pigeonhole/src/lib-sieve/plugins/variables/sieve-ext-variables.h

  • Committer: Package Import Robot
  • Author(s): Marco Nenciarini
  • Date: 2011-09-19 19:26:48 UTC
  • mfrom: (1.14.4 upstream)
  • mto: (4.8.2 experimental)
  • mto: This revision was merged to the branch mainline in revision 86.
  • Revision ID: package-import@ubuntu.com-20110919192648-ri3sovtiz334yori
Tags: 1:2.0.15-1
* [a22575a] New upstream version 2.0.15: (Closes: #642045)
    + doveadm altmove: Added -r parameter to move mails back to primary
      storage.
    - v2.0.14: Index reading could have eaten a lot of memory in some
      situations
    - doveadm index no longer affects future caching decisions
    - mbox: Fixed crash during mail delivery when mailbox didn't yet have
      GUID assigned to it.
    - zlib+mbox: Fetching last message from compressed mailboxes crashed.
    - lib-sql: Fixed load balancing and error
* [8ce5abc] Update pigeonhole to release 0.2.4
* [87658d2] Add dovecot-solr to dovecot-core's Suggests line.

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
 
47
47
ARRAY_DEFINE_TYPE(sieve_variable_name, struct sieve_variable_name);
48
48
 
 
49
bool sieve_variable_identifier_is_valid(const char *identifier);
 
50
 
49
51
/*
50
52
 * Variable scope
51
53
 */
61
63
struct sieve_variable_scope;
62
64
 
63
65
struct sieve_variable_scope *sieve_variable_scope_create
64
 
        (const struct sieve_extension *ext);
 
66
        (struct sieve_instance *svinst, const struct sieve_extension *ext);
65
67
void sieve_variable_scope_ref
66
68
        (struct sieve_variable_scope *scope);
67
69
void sieve_variable_scope_unref
89
91
        (struct sieve_variable_scope_binary **scpbin);
90
92
 
91
93
struct sieve_variable_scope *sieve_variable_scope_binary_dump
92
 
        (const struct sieve_extension *ext,
 
94
        (struct sieve_instance *svinst, const struct sieve_extension *ext,
93
95
                const struct sieve_dumptime_env *denv, sieve_size_t *address);
94
96
struct sieve_variable_scope_binary *sieve_variable_scope_binary_read
95
97
        (struct sieve_instance *svinst, const struct sieve_extension *ext,