diff options
| author | Ted Zlatanov | 2013-10-29 13:54:16 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2013-10-29 13:54:16 +0000 |
| commit | 0bdb7b45fcfd554b278a1412eedc360e591e6e72 (patch) | |
| tree | 6a2e2faeed10407eb51ac00a3fbd41e6b91f6a67 | |
| parent | 142207c0e687e9202d5e8efc54a54f5fc56ccc72 (diff) | |
| download | emacs-0bdb7b45fcfd554b278a1412eedc360e591e6e72.tar.gz emacs-0bdb7b45fcfd554b278a1412eedc360e591e6e72.zip | |
lisp/gnus/nnimap.el: Search the netrc entries for the logical server name, then the actual
| -rw-r--r-- | lisp/gnus/ChangeLog | 7 | ||||
| -rw-r--r-- | lisp/gnus/nnimap.el | 4 |
2 files changed, 9 insertions, 2 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 92e3d8ff5c5..beb47120241 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2013-10-29 Teodor Zlatanov <tzz@lifelogs.com> | ||
| 2 | |||
| 3 | * nnimap.el (nnimap-open-connection-1): `auth-source-search' for the | ||
| 4 | `nnoo-current-server' first, then for the actual `nnimap-address' to | ||
| 5 | allow netrc entries for the nnoo server to coexist with netrc entries | ||
| 6 | for the `nnimap-address'. | ||
| 7 | |||
| 1 | 2013-10-23 Katsumi Yamaoka <yamaoka@jpl.org> | 8 | 2013-10-23 Katsumi Yamaoka <yamaoka@jpl.org> |
| 2 | 9 | ||
| 3 | * mm-decode.el (mm-dissect-buffer): Revert last change. | 10 | * mm-decode.el (mm-dissect-buffer): Revert last change. |
diff --git a/lisp/gnus/nnimap.el b/lisp/gnus/nnimap.el index f8c2b24cc9f..2220c81e775 100644 --- a/lisp/gnus/nnimap.el +++ b/lisp/gnus/nnimap.el | |||
| @@ -456,8 +456,8 @@ textual parts.") | |||
| 456 | (nnimap-credentials | 456 | (nnimap-credentials |
| 457 | (gnus-delete-duplicates | 457 | (gnus-delete-duplicates |
| 458 | (list | 458 | (list |
| 459 | nnimap-address | 459 | (nnoo-current-server 'nnimap) |
| 460 | (nnoo-current-server 'nnimap))) | 460 | nnimap-address)) |
| 461 | ports | 461 | ports |
| 462 | nnimap-user)))) | 462 | nnimap-user)))) |
| 463 | (setq nnimap-object nil) | 463 | (setq nnimap-object nil) |