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

« back to all changes in this revision

Viewing changes to pigeonhole/src/lib-sieve/plugins/include/cmd-global.c

  • 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:
28
28
(const struct sieve_codegen_env *cgenv, struct sieve_command *cmd);
29
29
 
30
30
const struct sieve_command_def cmd_global = {
31
 
    "global",
32
 
    SCT_COMMAND,
33
 
    1, 0, FALSE, FALSE,
34
 
    NULL, NULL,
35
 
    cmd_global_validate,
36
 
    cmd_global_generate,
37
 
    NULL
 
31
  "global",
 
32
  SCT_COMMAND,
 
33
  1, 0, FALSE, FALSE,
 
34
  NULL, NULL,
 
35
  cmd_global_validate,
 
36
        NULL,
 
37
  cmd_global_generate,
 
38
  NULL
38
39
};
39
40
 
40
41
/* DEPRICATED:
51
52
        1, 0, FALSE, FALSE,
52
53
        NULL, NULL,
53
54
        cmd_global_validate,
 
55
        NULL,
54
56
        cmd_global_generate,
55
57
        NULL
56
58
};
66
68
        1, 0, FALSE, FALSE,
67
69
        NULL, NULL,
68
70
        cmd_global_validate,
 
71
        NULL,
69
72
        cmd_global_generate,
70
73
        NULL
71
74
};