~ubuntu-branches/ubuntu/quantal/dovecot/quantal

« back to all changes in this revision

Viewing changes to sieve/tests/extensions/encoded-character.svtest

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short, Scott Kitterman
  • Date: 2010-06-22 10:33:51 UTC
  • mfrom: (1.13.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20100622103351-ifbmnklp8kxrhb30
Tags: 1:1.2.12-0ubuntu1
* New upstream release:
  - deliver: Don't crash when a message with Auto-submitted: header gets
   rejected.
  - lib-storage: Fixed header searches to work correctly when there are
    multiple headers with same name.
  - dict client: Disconnect from dict server after 1 second of idling.
  - dict: If process crashed, it wasn't automatically restarted
  - dict file: If dict file's group permissions equal world permissions,
    don't try to change its gid.
  - maildir: Fixed a memory leak when copying with hardlinks.
  - maildir: Expunging last messages may have assert-crashed if their
    filenames had just changed.
 * Update sieve patch to 0.1.17
 * debian/dovecot-common.postinst: Add warning about expired certificate.
   (Debian Bug: #576455)
 * Silence lintian warnings.

 [Scott Kitterman]
 * Rename dovecot-postfix to mail-stack-delivery per server-maverick-mail-
   integration spec.
   - Update debian/rules
   - Convert existing package to a dummy package and add new binary in debian/control
   - Update maintainer scripts.
   - Move previously installed backups and config files to new package name
     space in preinst
   - Add new debian/mail-stack-delivery.prerm to handle downgrades
   - Rename debian/dovecot-postfix.* to debian/mail-stack-delivery.*

Show diffs side-by-side

added added

removed removed

Lines of Context:
95
95
        if anyof( not string "${}" "${hex:24}{}", not string "b${}" "b${hex:24}{}", not string "${}b" "${hex:24}{}b" ) {
96
96
                test_fail "entirely missing content handled inappropriately";
97
97
        }
98
 
 
 
98
                
99
99
        if not string "${:}" "${hex:24}{:}" {
100
100
        test_fail "missing content handled inappropriately";
101
101
    }
102
 
 
 
102
        
103
103
        if not string "${hex:}" "${hex:24}{hex:}" {
104
104
        test_fail "missing hex content handled inappropriately";
105
105
    }
115
115
    if not string "${unicode:ttt}" "${hex:24}{unicode:ttt}" {
116
116
        test_fail "erroneous unicode content handled inappropriately";
117
117
    }
118
 
 
 
118
        
119
119
        if not string "${hex:aa aa" "${hex:24}{hex:aa aa" {
120
120
        test_fail "unterminated hex content handled inappropriately";
121
121
    }
141
141
        if not string "${HEX: 40}" "@" {
142
142
                test_fail "failed RFC example 3";
143
143
        }
144
 
 
 
144
        
145
145
        if not string "${hex:40" "${hex:40" {
146
146
                test_fail "failed RFC example 4";
147
147
        }
157
157
        if not string "${unicode:40}" "@" {
158
158
                test_fail "failed RFC example 7";
159
159
        }
160
 
 
 
160
     
161
161
        if not string "${ unicode:40}" "${ unicode:40}" {
162
162
                test_fail "failed RFC example 8";
163
163
        }