* lisp/gnus/message.el (message--fold-long-headers): Header lines
should be no longer than 79 characters before folding
(bug#33313). Previous comment about 998 octets is about maximum
allowed header field length.
(defun message--fold-long-headers ()
"Fold too-long header lines.
-They should be no longer than 998 octets long."
+Each line should be no more than 79 characters long."
(goto-char (point-min))
(while (not (eobp))
(when (and (looking-at "[^:]+:")
- (> (- (line-end-position) (point)) 998))
+ (> (- (line-end-position) (point)) 79))
(mail-header-fold-field))
(forward-line 1)))