diff options
| author | Glenn Morris | 2010-12-07 19:29:41 -0800 |
|---|---|---|
| committer | Glenn Morris | 2010-12-07 19:29:41 -0800 |
| commit | 3c1e62f86e7fb3369f19c7dd7dc895cff0f63bfb (patch) | |
| tree | 38e0480e451c522ad9ce61c2100375f7e12fd135 | |
| parent | 3a1efe11b70e6f43b454e044d50d41336e2df255 (diff) | |
| download | emacs-3c1e62f86e7fb3369f19c7dd7dc895cff0f63bfb.tar.gz emacs-3c1e62f86e7fb3369f19c7dd7dc895cff0f63bfb.zip | |
Small smtpmail fix for bug#7588.
* lisp/mail/smtpmail.el (smtpmail-send-it): Avoid colons in the queued
file names, for the sake of MS Windows.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/mail/smtpmail.el | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index bef6405d963..6c558723bdf 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-12-08 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * mail/smtpmail.el (smtpmail-send-it): Avoid colons in the queued | ||
| 4 | file names, for the sake of MS Windows. (Bug#7588) | ||
| 5 | |||
| 1 | 2010-12-07 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2010-12-07 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * diff-mode.el (diff-refine-hunk): Make it work when the hunk contains | 8 | * diff-mode.el (diff-refine-hunk): Make it work when the hunk contains |
diff --git a/lisp/mail/smtpmail.el b/lisp/mail/smtpmail.el index 4e76de60188..1bf3fbe4a59 100644 --- a/lisp/mail/smtpmail.el +++ b/lisp/mail/smtpmail.el | |||
| @@ -379,7 +379,7 @@ The list is in preference order.") | |||
| 379 | (let* ((file-data | 379 | (let* ((file-data |
| 380 | (expand-file-name | 380 | (expand-file-name |
| 381 | (format "%s_%i" | 381 | (format "%s_%i" |
| 382 | (format-time-string "%Y-%m-%d_%H:%M:%S") | 382 | (format-time-string "%Y-%m-%d_%H-%M-%S") |
| 383 | (setq smtpmail-queue-counter | 383 | (setq smtpmail-queue-counter |
| 384 | (1+ smtpmail-queue-counter))) | 384 | (1+ smtpmail-queue-counter))) |
| 385 | smtpmail-queue-dir)) | 385 | smtpmail-queue-dir)) |
| @@ -1007,5 +1007,4 @@ many continuation lines." | |||
| 1007 | 1007 | ||
| 1008 | (provide 'smtpmail) | 1008 | (provide 'smtpmail) |
| 1009 | 1009 | ||
| 1010 | ;; arch-tag: a76992df-6d71-43b7-9e72-4bacc6c05466 | ||
| 1011 | ;;; smtpmail.el ends here | 1010 | ;;; smtpmail.el ends here |