~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/mail_client.py

  • Committer: Christophe Troestler
  • Date: 2008-07-05 14:19:34 UTC
  • mto: (3533.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 3534.
  • Revision ID: christophe.troestler@umh.ac.be-20080705141934-7vl7b4zfm3tvfili
Removed TABS in mail_client.py and added a NEWS entry.

Show diffs side-by-side

added added

removed removed

Lines of Context:
343
343
        (cond
344
344
         ((eq agent 'sendmail-user-agent)
345
345
          (progn
346
 
            (mail-text)
347
 
            (newline)
348
 
            (if (functionp 'etach-attach)
349
 
              (etach-attach file)
350
 
              (mail-attach-file file))))
 
346
            (mail-text)
 
347
            (newline)
 
348
            (if (functionp 'etach-attach)
 
349
              (etach-attach file)
 
350
              (mail-attach-file file))))
351
351
         ((or (eq agent 'message-user-agent)(eq agent 'gnus-user-agent))
352
352
          (progn
353
 
            (mml-attach-file file "text/x-patch" "BZR merge" "inline")))
354
 
         ((eq agent 'mew-user-agent)
355
 
          (progn
356
 
            (mew-draft-prepare-attachments)
357
 
            (mew-attach-link file (file-name-nondirectory file))
358
 
            (let* ((nums (mew-syntax-nums))
359
 
                   (syntax (mew-syntax-get-entry mew-encode-syntax nums)))
360
 
              (mew-syntax-set-cd syntax "BZR merge")
361
 
              (mew-encode-syntax-print mew-encode-syntax))
362
 
            (mew-header-goto-body)))
 
353
            (mml-attach-file file "text/x-patch" "BZR merge" "inline")))
 
354
         ((eq agent 'mew-user-agent)
 
355
          (progn
 
356
            (mew-draft-prepare-attachments)
 
357
            (mew-attach-link file (file-name-nondirectory file))
 
358
            (let* ((nums (mew-syntax-nums))
 
359
                   (syntax (mew-syntax-get-entry mew-encode-syntax nums)))
 
360
              (mew-syntax-set-cd syntax "BZR merge")
 
361
              (mew-encode-syntax-print mew-encode-syntax))
 
362
            (mew-header-goto-body)))
363
363
         (t
364
364
          (message "Unhandled MUA, report it on bazaar@lists.canonical.com")))
365
365
      (error "File %s does not exist." file))))