diff options
| -rw-r--r-- | lisp/mail/smtpmail.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/mail/smtpmail.el b/lisp/mail/smtpmail.el index 8ac0cd7e7c0..33458178a51 100644 --- a/lisp/mail/smtpmail.el +++ b/lisp/mail/smtpmail.el | |||
| @@ -805,7 +805,11 @@ Returns an error if the server cannot be contacted." | |||
| 805 | (plist-get (cdr result) :capabilities) | 805 | (plist-get (cdr result) :capabilities) |
| 806 | "\r\n"))) | 806 | "\r\n"))) |
| 807 | (let ((name | 807 | (let ((name |
| 808 | (with-case-table ascii-case-table ;FIXME: Why? | 808 | ;; Use ASCII case-table to prevent I |
| 809 | ;; downcasing to a dotless i under some | ||
| 810 | ;; language environments. See | ||
| 811 | ;; https://lists.gnu.org/archive/html/emacs-devel/2007-03/msg01760.html. | ||
| 812 | (with-case-table ascii-case-table | ||
| 809 | (mapcar (lambda (s) (intern (downcase s))) | 813 | (mapcar (lambda (s) (intern (downcase s))) |
| 810 | (split-string (substring line 4) "[ ]"))))) | 814 | (split-string (substring line 4) "[ ]"))))) |
| 811 | (when (= (length name) 1) | 815 | (when (= (length name) 1) |