~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Xavier Maillard
  • Date: 2008-04-13 11:48:00 UTC
  • mto: (3364.1.1 bzr.ab.integration)
  • mto: This revision was merged to the branch mainline in revision 3365.
  • Revision ID: xma@gnu.org-20080413114800-b3tp394elic1793b
Replace mail-mode call with compose-mail from GNU Emacs.

This patch is a modified version of the current revno 3323.

It overloads it by:

1. defining a different python class EmacsMail "MUA agnostic".

   To use this option, just put these lines into ~/.bazaar/bazaar.conf
    
[DEFAULT]
mail_client = emacsclient

2. supporting any mail client of GNU Emacs family (mail-mode,
   message-mode, ...) The right tool will be called according to the
   value of the variable ``mail-user-agent``. So Virtually any Emacs
   mail client will work transparently if registered against
   ``mail-user-agent``.

3. adding a wrapper function around MIME attachment. This allow us not
   to have many different functions/classes to attach a file but one.

4. tests have been updated to follow the changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
  FEATURES:
26
26
 
27
 
    * Added mail-mode GNU Emacs mail package as a mail_client.
28
 
      (Xavier Maillard, Bojan Nikolic)
 
27
    * GNU Emacs set of mail clients are now supported as a mail_client
 
28
      target; set ``mail_client=emacsclient`` in your bazaar.conf and
 
29
      ``send`` will pop the bundle in a mail buffer according to the
 
30
      value of ``mail-user-agent`` variable. (Bojan Nikolic, Xavier
 
31
      Maillard)
29
32
 
30
33
  IMPROVEMENTS:
31
34