~ubuntu-branches/ubuntu/wily/semi/wily

« back to all changes in this revision

Viewing changes to semi-setup.el

  • Committer: Bazaar Package Importer
  • Author(s): Tatsuya Kinoshita
  • Date: 2010-02-08 23:40:04 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20100208234004-zra1zdm4bgijt51o
Tags: 1.14.6+0.20100207-1
* New upstream release. (CVS semi-1_14 branch on 2010-02-07)
  - Fix non-compliant messages that are signed and encrypted with OpenPGP.
    (closes: #555472)
  - Fix missing mandatory "Version: 1" field for application/pgp-encrypted.
    (closes: #554720)
* debian/rules: Add direntry to *.texi for *.info. (closes: #528895)
* debian/prerm, debian/postinst: Removed.
* debian/control:
  - Add `dpkg (>= 1.15.4) | install-info' to Depends.
  - Add `${misc:Depends}' to Depends.
  - Set Section to lisp.
  - Update Standards-Version to 3.8.4.
* debian/copyright: Updated.

Show diffs side-by-side

added added

removed removed

Lines of Context:
79
79
(if mime-setup-enable-pgp
80
80
    (eval-after-load "mime-view"
81
81
      '(progn
 
82
         (require 'mime-pgp)
 
83
 
82
84
         (mime-add-condition
83
85
          'preview '((type . application)(subtype . pgp)
84
86
                     (message-button . visible)))
136
138
          '((type . application)(subtype . x-pkcs7-mime)
137
139
            (method . mime-view-application/pkcs7-mime))
138
140
          'strict "mime-pgp")
 
141
 
 
142
         (ctree-set-calist-strictly
 
143
          'mime-preview-condition
 
144
          '((type . multipart) (subtype . encrypted) ("protocol" . "application/pgp-encrypted")
 
145
            (body . visible)
 
146
            (body-presentation-method . mime-display-multipart/pgp-encrypted)))
139
147
         ))
140
148
  )
141
149