* lisp/mail/feedmail.el (feedmail-fiddle-from):
* lisp/mail/rmail.el (rmail-unknown-mail-followup-to):
* lisp/mail/rmailsum.el (rmail-header-summary):
Belated update for 2002-09-29 startup.el change,
680ebfa, where
the value of user-mail-address during initialization was changed
from nil to the empty string.
((eq t feedmail-from-line)
(let ((feedmail-from-line
(let ((at-stuff
- (if user-mail-address user-mail-address
+ (if (> (length user-mail-address) 0)
+ user-mail-address
(concat (user-login-name) "@"
(or mail-host-address (system-name))))))
(cond
(regexp-quote (user-login-name))
"\\($\\|@\\)\\|"
(regexp-quote
- (or user-mail-address
- (concat (user-login-name) "@"
- (or mail-host-address
- (system-name)))))
+ (if (> (length user-mail-address) 0)
+ user-mail-address
+ (concat (user-login-name) "@"
+ (or mail-host-address
+ (system-name)))))
"\\>\\)"))
addr))
(y-or-n-p
;; Don't lose if run from init file
;; where user-mail-address is not
;; set yet.
- (or user-mail-address
- (concat (user-login-name) "@"
- (or mail-host-address
- (system-name)))))
+ (if (> (length user-mail-address) 0)
+ user-mail-address
+ (concat (user-login-name) "@"
+ (or mail-host-address
+ (system-name)))))
"\\>\\)"))
from))
;; No From field, or it's this user.