diff options
| -rw-r--r-- | lisp/mail/smtpmail.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/mail/smtpmail.el b/lisp/mail/smtpmail.el index 4d19e9371fd..66c4bdd8df7 100644 --- a/lisp/mail/smtpmail.el +++ b/lisp/mail/smtpmail.el | |||
| @@ -691,8 +691,10 @@ This is relative to `smtpmail-queue-dir'.") | |||
| 691 | (>= (car response-code) 400)) | 691 | (>= (car response-code) 400)) |
| 692 | (throw 'done nil))) | 692 | (throw 'done nil))) |
| 693 | (dolist (line (cdr (cdr response-code))) | 693 | (dolist (line (cdr (cdr response-code))) |
| 694 | (let ((name (mapcar (lambda (s) (intern (downcase s))) | 694 | (let ((name |
| 695 | (split-string (substring line 4) "[ ]")))) | 695 | (with-case-table ascii-case-table |
| 696 | (mapcar (lambda (s) (intern (downcase s))) | ||
| 697 | (split-string (substring line 4) "[ ]"))))) | ||
| 696 | (and (eq (length name) 1) | 698 | (and (eq (length name) 1) |
| 697 | (setq name (car name))) | 699 | (setq name (car name))) |
| 698 | (and name | 700 | (and name |