mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-24 07:20:37 +00:00
* mail/smtpmail.el (smtpmail-send-command): Send the command and
the following \r\n using a single `process-send-string', since the Lotus SMTP server refuses to accept any commands if they are sent with two `process-send-string's. Fixes: debbugs:11444
This commit is contained in:
parent
fe263b8f57
commit
8633b1f456
@ -1,3 +1,10 @@
|
||||
2012-05-09 Jason L. Wright <jason.wright@inl.gov> (tiny change)
|
||||
|
||||
* mail/smtpmail.el (smtpmail-send-command): Send the command and
|
||||
the following \r\n using a single `process-send-string', since the
|
||||
Lotus SMTP server refuses to accept any commands if they are sent
|
||||
with two `process-send-string's (bug#11444).
|
||||
|
||||
2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* shell.el (shell-parse-pcomplete-arguments): Obey
|
||||
|
@ -932,8 +932,7 @@ Returns an error if the server cannot be contacted."
|
||||
(insert (match-string 0 command) "<omitted>\r\n")
|
||||
(insert command "\r\n"))
|
||||
(setq smtpmail-read-point (point))
|
||||
(process-send-string process command)
|
||||
(process-send-string process "\r\n"))
|
||||
(process-send-string process (concat command "\r\n")))
|
||||
|
||||
(defun smtpmail-send-data-1 (process data)
|
||||
(goto-char (point-max))
|
||||
|
Loading…
Reference in New Issue
Block a user