[mew-int 00647] Re: forwarding and replying behavior
Tatsuya Kinoshita
tats at example.com
Tue Dec 18 17:52:07 JST 2001
In message [mew-int 00646], on Mon, 17 Dec 2001,
"R.P. Aditya" <aditya at example.com> wrote:
> - I'd like to be able forward email "inline" rather than as an
> attachment, however mew-message-forward only seems to do it as an
> attachment...suggestions?
`f', `C-c C-y' (, `C-u C-c C-y', `C-c C-t', or `C-u C-c C-t'),
and delete attachments.
> - If I reply to a message using mew-summary-reply-with-citation, the
> emacs screen breaks into 3 separate buffers, the summary buffer, the
> current message buffer and the draft buffer. However, because I am
> replying with citation, the message buffer is unnecessary, how can I
> prevent it from appearing?
Add this to your ~/.mew.el:
----
;;;(add-hook 'mew-draft-mode-hook 'delete-other-windows);; `Draft mode' only
(add-hook 'mew-draft-mode-hook
(function
(lambda ()
;; Delete `Message mode' buffer
(if (get-buffer (mew-buffer-message))
(delete-windows-on (mew-buffer-message)))
;; Resize `Draft mode' buffer
(let ((siz (- (/ (* (frame-height) 2) 3) (window-height))))
(if (> siz 0)
(enlarge-window siz))))))
----
> - lastly has mew-use-full-window been replaced by mew-window-configuration?
mew-use-full-window still remains.
mew-use-full-window means `use Mew with full Emacs frame', but it
works as `delete Message buffer when replying' on Mew 1.x/2.0.
This bug was fixed on Mew 2.1. (Some people loved this bug...)
--
Tatsuya Kinoshita
More information about the Mew-int
mailing list