+2003-05-21 ARISAWA Akihiro <ari@mbf.sphere.ne.jp>
+
+ * lisp/gnus-msg.el (gnus-message-make-user-agent): Don't use `@'
+ for rfc2616 compliance.
+
2003-05-20 Katsumi Yamaoka <yamaoka@jpl.org>
* lisp/gnus-msg.el (gnus-message-make-user-agent): Check whether
nil)
((string-match "^\\(\\([.0-9]+\\)*\\)\\.[0-9]+$"
emacs-version)
- (concat (if (boundp 'MULE)
- "Mule/2.3@"
- "Emacs/")
- (match-string 1 emacs-version)
+ (concat (format (if (boundp 'MULE)
+ "Mule/2.3 (based on Emacs %s)"
+ "Emacs/%s")
+ (match-string 1 emacs-version))
(if system-v
(concat " (" system-v ")")
"")))