Account also for strings when reading in group names from an active
file (bug#62812).
* lisp/gnus/nnmail.el (nnmail-parse-active): Make it similar to
gnus-active-to-gnus-format
(cond ((symbolp group)
(symbol-name group))
((numberp group)
- (number-to-string group))))
+ (number-to-string group))
+ ((stringp group)
+ group)))
(if (and (numberp (setq max (read buffer)))
(numberp (setq min (read buffer))))
(push (list group (cons min max))