Function: nnmairix-determine-original-group-from-registry

nnmairix-determine-original-group-from-registry is a byte-compiled function defined in nnmairix.el.gz.

Signature

(nnmairix-determine-original-group-from-registry MID)

Documentation

Try to determine original group for message-id MID from the registry.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/nnmairix.el.gz
(defun nnmairix-determine-original-group-from-registry (mid)
  "Try to determine original group for message-id MID from the registry."
  (when (bound-and-true-p gnus-registry-enabled)
    (unless (string-match "^<" mid)
      (set mid (concat "<" mid)))
    (unless (string-match ">$" mid)
      (set mid (concat mid ">")))
    (gnus-registry-get-id-key mid 'group)))