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

« back to all changes in this revision

Viewing changes to pigeonhole/src/testsuite/testsuite-script.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:
52
52
 
53
53
        script_path = t_strconcat(script_path, "/", script, NULL);
54
54
 
55
 
        /* Initialize environment */
56
 
        sieve_dir = strrchr(script_path, '/');
57
 
        if ( sieve_dir == NULL )
58
 
                sieve_dir= "./";
59
 
        else
60
 
                sieve_dir = t_strdup_until(script_path, sieve_dir+1);
61
 
 
62
 
        /* Currently needed for include (FIXME) */
63
 
        testsuite_setting_set
64
 
                ("sieve_dir", t_strconcat(sieve_dir, "included", NULL));
65
 
        testsuite_setting_set
66
 
                ("sieve_global_dir", t_strconcat(sieve_dir, "included-global", NULL));
67
 
 
68
55
        if ( (sbin = sieve_compile(svinst, script_path, NULL, testsuite_log_ehandler,
69
56
                NULL)) == NULL )
70
57
                return NULL;