Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
19a0baf7
Commit
19a0baf7
authored
Dec 10, 2001
by
Eli Zaretskii
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(smtpmail-send-queued-mail): Insert the enqueued messages literally.
parent
440c4d7a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/mail/smtpmail.el
lisp/mail/smtpmail.el
+4
-1
No files found.
lisp/ChangeLog
View file @
19a0baf7
2001-12-10 Eli Zaretskii <eliz@is.elta.co.il>
* mail/smtpmail.el (smtpmail-send-queued-mail): Insert the
enqueued messages literally.
2001-12-10 Noah Friedman <friedman@splode.com>
* battery.el (battery-insert-file-contents): Obsolete function
...
...
lisp/mail/smtpmail.el
View file @
19a0baf7
...
...
@@ -376,7 +376,10 @@ This is relative to `smtpmail-queue-dir'.")
(
while
(
not
(
eobp
))
(
setq
file-msg
(
buffer-substring
(
point
)
(
line-end-position
)))
(
load
file-msg
)
(
setq
tembuf
(
find-file-noselect
file-msg
))
;; Insert the message literally: it is already encoded as per
;; the MIME headers, and code conversions might guess the
;; encoding wrongly.
(
setq
tembuf
(
find-file-noselect
file-msg
nil
t
))
(
if
(
not
(
null
smtpmail-recipient-address-list
))
(
if
(
not
(
smtpmail-via-smtp
smtpmail-recipient-address-list
tembuf
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment