* when forwarding, include attachments from original

This commit is contained in:
djcb
2012-01-14 12:55:50 +02:00
parent ff04b20712
commit 6e3e425c66
5 changed files with 112 additions and 15 deletions

View File

@ -64,7 +64,6 @@ and finally, we receive:
.fi
.TP
.B move
@ -138,13 +137,21 @@ particular e-mail message.
.TP
.B compose
Using the \fBcompose\fR command, we get the (unchanged) message, and tell what
to do with it. The user-interface is then expect to pre-process the message,
Using the \fBcompose\fR command, we get the (original) message, and tell what
to do with it. The user-interface is then expected to pre-process the message,
e.g. set the subject, sender and recipient for a reply message.
.nf
-> compose <reply|forward|edit> <docid>
<- (:compose <s-exp> :compose-type <reply|forward|edit>)
<- (:compose-type <reply|forward|edit> :original <s-exp> :include (<list-of-attachments))
.fi
The <list-of-attachments> is an s-expression describing the attachments to
include in the message; this currently only applies to message we are
forwarding. This s-exprssion looks like:
.nf
(:file-name <filename> :mime-type <mime-type> :disposition <disposition>)
.fi