[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

10.3 Draft mode

Define ‘mew-cc’ to use Cc:. When replying, another Cc: field may be prepared from the target message. If there are multiple Cc: fields, they are combined to one field on sending.

If you want to receive your originating messages for backup without specifying your address, use Dcc:. Set your address to ‘mew-dcc’.

Set header fields that you want to insert every time when you write messages to ‘mew-header-alist’ as an associate list. The following is an example.

 
(setq mew-header-alist
      '(("X-fingerprint:" "6B 63 38 88 67 5E 96 8E  CE A4 62 73 3F 11 64 94")
        ("X-URL:" "http://www.example.org/~kazu/")))

To customize citation label, define field to cite in ‘mew-cite-fields’ and format in ‘mew-cite-format’. Define citation prefix to ‘mew-cite-prefix’. The default declaration is as follows:

 
(defvar mew-cite-fields '("From:" "Subject:" "Date:"))
(defvar mew-cite-format "From: %s\nSubject: %s\nDate: %s\n\n")
(defvar mew-cite-prefix "> ")

To add Message-ID: to citation label, take this way.

 
(setq mew-cite-fields '("From:" "Subject:" "Date:" "Message-ID:"))
(setq mew-cite-format "From: %s\nSubject: %s\nDate: %s\nMessage-ID: %s\n\n")

To add a user part of an address to the citation prefix, configure as follows:

 
(setq mew-cite-prefix-function (function mew-cite-prefix-username))

With this, the citation prefix becomes like this:

 
From: SUMIKAWA Munechika <sumikawa@ebina.hitachi.co.jp>
Subject: Wine
Date: Wed, 23 Jul 1997 11:40:50 +0900

sumikawa> Hi, it's Sumikawa, the guy who's neat from good morning 
sumikawa> to good night.
sumikawa>
sumikawa> Talking about the wonderful wine party, I would propose 
sumikawa> Cabernet Sauvignon, Bordeaux, '90. 

Both an address in the citation label and the citation prefix can be converted to an element of a personal information in Addrbook. They can be configured by ‘mew-addrbook-for-cite-label’ and ‘mew-addrbook-for-cite-prefix’, respectively. The default values are ‘nil’ and ‘'username’, respectively. You can set out of the following values.

'shortname

Short name

'address

Address

'username

User part of address

'nickname

Nickname

'name

Full name

Let's consider the following example.

 
(setq mew-addrbook-for-cite-label 'nickname)
(setq mew-addrbook-for-cite-prefix 'nickname)

With the first line, an address in the citation label is replaced with its nickname. The second line indicates that the cite prefix is replaced with its nickname.

 
From: sumitch
Subject: Wine
Date: Wed, 23 Jul 1997 11:40:50 +0900

sumitch> Hi, it's Sumikawa, the guy who's neat from good morning 
sumitch> to good night.
sumitch>
sumitch> Talking about the wonderful wine party, I would propose 
sumitch> Cabernet Sauvignon, Bordeaux, '90. 

[ < ] [ > ]   [ << ] [ Up ] [ >> ]

This document was generated by U-X61T\saito on August, 31 2008 using texi2html 1.78.