~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/config.py

  • Committer: Keir Mierle
  • Date: 2007-09-03 23:54:22 UTC
  • mto: This revision was merged to the branch mainline in revision 2824.
  • Revision ID: keir@cs.utoronto.ca-20070903235422-zfj6mk7nts9nmzw2
Add Mutt as a supported client email program. Also rearranges various listings
of the mail clients to be alphabetical; the number of supported email clients
is only going to grow, and this way it is easier to scan for your favorite
email client.

Show diffs side-by-side

added added

removed removed

Lines of Context:
152
152
                None: mail_client.DefaultMail,
153
153
                'default': mail_client.DefaultMail,
154
154
                'editor': mail_client.Editor,
155
 
                'thunderbird': mail_client.Thunderbird,
156
155
                'evolution': mail_client.Evolution,
 
156
                'kmail': mail_client.KMail,
157
157
                'mapi': mail_client.MAPIClient,
 
158
                'mutt': mail_client.Mutt,
 
159
                'thunderbird': mail_client.Thunderbird,
158
160
                'xdg-email': mail_client.XDGEmail,
159
 
                'kmail': mail_client.KMail,
160
161
            }[selected_client]
161
162
        except KeyError:
162
163
            raise errors.UnknownMailClient(selected_client)