diff --git a/news/moderation.el b/news/moderation.el index 0823a57e..321d190c 100644 --- a/news/moderation.el +++ b/news/moderation.el @@ -58,7 +58,8 @@ newsgroups (message-fetch-field "newsgroups") subject (message-fetch-field "subject") message-id (message-fetch-field "message-id" t) - distribution (message-fetch-field "distribution"))) + distribution (message-fetch-field "distribution") + approved (message-fetch-field "approved"))) ;; Make sure that this article was written by the user. (unless (message-is-yours-p) (error "Impossible d'annuler cet article")) @@ -73,6 +74,9 @@ (if distribution (concat "Distribution: " distribution "\n") "") + (if approved + (concat "Approved: " approved "\n") + "") mail-header-separator "\n" message-cancel-message)