Go to the first, previous, next, last section, table of contents.


User-Agent Field

If you are eccentric enough to elaborate `X-Mailer:' or `User-Agent:' fields, define a function that generate appropriate strings as you like, and set it to variable wl-generate-mailer-string-function.

If you do not want verbose `User-Agent:' field, do the following:

(setq wl-generate-mailer-string-function
      (function
       (lambda ()
         (concat "User-Agent: "
                 (wl-generate-user-agent-string-1 nil)))))

The following is a example:

(setq mime-edit-insert-user-agent-field nil)
(setq wl-generate-mailer-string-function
      (function
       (lambda ()
         (format "X-Mailer: %s" (product-string-1 'wl-version)))))


Go to the first, previous, next, last section, table of contents.