Function: nnimap-insert-partial-structure
nnimap-insert-partial-structure is a byte-compiled function defined in
nnimap.el.gz.
Signature
(nnimap-insert-partial-structure STRUCTURE PARTS &optional SUBP)
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/nnimap.el.gz
(defun nnimap-insert-partial-structure (structure parts &optional subp)
(let (type boundary)
(let ((bstruc structure))
(while (consp (car bstruc))
(pop bstruc))
(setq type (car bstruc))
(setq bstruc (car (cdr bstruc)))
(let ((has-boundary (member "boundary" bstruc)))
(when has-boundary
(setq boundary (cadr has-boundary)))))
(when subp
(insert (format "Content-type: multipart/%s; boundary=%S\n\n"
(downcase type) boundary)))
(while (not (stringp (car structure)))
(insert "\n--" boundary "\n")
(if (consp (caar structure))
(nnimap-insert-partial-structure (pop structure) parts t)
(let ((bit (pop structure)))
(insert (format "Content-type: %s/%s"
(downcase (nth 0 bit))
(downcase (nth 1 bit))))
(if (member-ignore-case "CHARSET" (nth 2 bit))
(insert (format
"; charset=%S\n"
(cadr (member-ignore-case "CHARSET" (nth 2 bit)))))
(insert "\n"))
(insert (format "Content-transfer-encoding: %s\n"
(nth 5 bit)))
(insert "\n")
(when (assoc (nth 9 bit) parts)
(insert (cadr (assoc (nth 9 bit) parts)))))))
(insert "\n--" boundary "--\n")))