~ubuntu-branches/ubuntu/lucid/mew-beta/lucid

1.2.5 by Tatsuya Kinoshita
Import upstream version 7.0.50~0.20100105
1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2
;;;
3
;;; A sample file of .emacs or a site configuration file
4
;;;
5
;
6
; This is just a sample. You should customize as you like...
7
;
8
9
(autoload 'mew "mew" nil t)
10
(autoload 'mew-send "mew" nil t)
11
12
;; Optional setup (Read Mail menu for Emacs 21):
13
;(if (boundp 'read-mail-command)
14
;    (setq read-mail-command 'mew))
15
16
;; Optional setup (e.g. C-xm for sending a message):
17
;(autoload 'mew-user-agent-compose "mew" nil t)
18
;(if (boundp 'mail-user-agent)
19
;    (setq mail-user-agent 'mew-user-agent))
20
;(if (fboundp 'define-mail-user-agent)
21
;    (define-mail-user-agent
22
;      'mew-user-agent
23
;      'mew-user-agent-compose
24
;      'mew-draft-send-message
25
;      'mew-draft-kill
26
;      'mew-send-hook))
27
28
;; If you are using Emacs with the --unibyte option or the
29
;; EMACS_UNIBYTE environment variable for Latin-1, put the following
30
;; into your "~/.emacs".
31
;(set-language-environment "Latin-1")
32
;(set-input-method "latin-1-prefix") ;; or "latin-1-postfix"
33
;; You MUST remove (standard-display-european 1) from your .emacs.
34
35
;;;
36
;;; End
37
;;;