Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
a368801c
Commit
a368801c
authored
May 22, 2008
by
Miles Bader
Browse files
Merge from gnus--devo--0
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1172
parent
c63028e1
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
31 additions
and
4 deletions
+31
-4
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/gnus/ChangeLog
lisp/gnus/ChangeLog
+19
-0
lisp/gnus/auth-source.el
lisp/gnus/auth-source.el
+1
-0
lisp/gnus/gnus-draft.el
lisp/gnus/gnus-draft.el
+1
-0
lisp/gnus/nnheader.el
lisp/gnus/nnheader.el
+1
-1
lisp/gnus/pop3.el
lisp/gnus/pop3.el
+1
-1
lisp/net/netrc.el
lisp/net/netrc.el
+4
-2
No files found.
lisp/ChangeLog
View file @
a368801c
2008-05-22 Teodor Zlatanov <tzz@lifelogs.com>
* net/netrc.el (netrc-machine): Always match if the port is not given.
2008-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
2008-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
* minibuffer.el (completion-pcm--find-all-completions):
* minibuffer.el (completion-pcm--find-all-completions):
...
...
lisp/gnus/ChangeLog
View file @
a368801c
2008-05-20 Teodor Zlatanov <tzz@lifelogs.com>
* auth-source.el: Add more docs.
2008-05-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
* nnheader.el (nnheader-read-timeout): Change the default timeout from
0.1 seconds to 0.01 seconds. This will make nntp and pop3 article
retrieval faster in some cases, but might make CPU usage larger. If
this has any bad side effects, we might revert this change.
* pop3.el (pop3-movemail): Change the sit-for from 0.1 to 0.01, which
seems to make mail retrieval much, much faster.
(pop3-movemail): Use nnheader-accept-process-output instead of sleeping
unconditionally.
* gnus-draft.el (gnus-group-send-queue): Bind
message-send-mail-partially-limit to nil to avoid being prompted.
2008-05-16 Reiner Steib <Reiner.Steib@gmx.de>
2008-05-16 Reiner Steib <Reiner.Steib@gmx.de>
* mml.el (mml-attach-buffer): Prompt for `disposition'.
* mml.el (mml-attach-buffer): Prompt for `disposition'.
...
...
lisp/gnus/auth-source.el
View file @
a368801c
...
@@ -36,6 +36,7 @@
...
@@ -36,6 +36,7 @@
;; if you want encrypted sources, which is strongly recommended, do
;; if you want encrypted sources, which is strongly recommended, do
;; (require 'epa-file)
;; (require 'epa-file)
;; (epa-file-mode)
;; (epa-file-mode)
;; (setq epa-file-cache-passphrase-for-symmetric-encryption t) ; VERY important
;; before you put some data in ~/.authinfo.gpg (the default place)
;; before you put some data in ~/.authinfo.gpg (the default place)
...
...
lisp/gnus/gnus-draft.el
View file @
a368801c
...
@@ -216,6 +216,7 @@ Obeys the standard process/prefix convention."
...
@@ -216,6 +216,7 @@ Obeys the standard process/prefix convention."
(
gnus-info-marks
(
gnus-info-marks
(
gnus-get-info
"nndraft:queue"
))))))
(
gnus-get-info
"nndraft:queue"
))))))
(
gnus-posting-styles
nil
)
(
gnus-posting-styles
nil
)
message-send-mail-partially-limit
(
total
(
length
articles
))
(
total
(
length
articles
))
article
)
article
)
(
while
(
setq
article
(
pop
articles
))
(
while
(
setq
article
(
pop
articles
))
...
...
lisp/gnus/nnheader.el
View file @
a368801c
...
@@ -86,7 +86,7 @@ Integer values will in effect be rounded up to the nearest multiple of
...
@@ -86,7 +86,7 @@ Integer values will in effect be rounded up to the nearest multiple of
;; what's possible. Perhaps better, maybe the Windows/DOS primitive
;; what's possible. Perhaps better, maybe the Windows/DOS primitive
;; could round up non-zero timeouts to a minimum of 1.0?
;; could round up non-zero timeouts to a minimum of 1.0?
1.0
1.0
0.1
)
0.
0
1
)
"How long nntp should wait between checking for the end of output.
"How long nntp should wait between checking for the end of output.
Shorter values mean quicker response, but are more CPU intensive."
)
Shorter values mean quicker response, but are more CPU intensive."
)
...
...
lisp/gnus/pop3.el
View file @
a368801c
...
@@ -169,7 +169,7 @@ Shorter values mean quicker response, but are more CPU intensive.")
...
@@ -169,7 +169,7 @@ Shorter values mean quicker response, but are more CPU intensive.")
(
unless
pop3-leave-mail-on-server
(
unless
pop3-leave-mail-on-server
(
pop3-dele
process
n
))
(
pop3-dele
process
n
))
(
setq
n
(
+
1
n
))
(
setq
n
(
+
1
n
))
(
if
pop3-debug
(
sit-for
1
)
(
sit-for
0.1
)))
; why?
(
nnheader-accept-process-output
process
))
(
when
(
and
pop3-leave-mail-on-server
(
when
(
and
pop3-leave-mail-on-server
(
>
n
1
))
(
>
n
1
))
(
message
"pop3.el doesn't support UIDL. Setting `pop3-leave-mail-on-server'
(
message
"pop3.el doesn't support UIDL. Setting `pop3-leave-mail-on-server'
...
...
lisp/net/netrc.el
View file @
a368801c
...
@@ -137,8 +137,10 @@ Entries without port tokens default to DEFAULTPORT."
...
@@ -137,8 +137,10 @@ Entries without port tokens default to DEFAULTPORT."
(
while
(
and
result
(
while
(
and
result
(
not
(
netrc-port-equal
(
not
(
netrc-port-equal
(
or
port
defaultport
"nntp"
)
(
or
port
defaultport
"nntp"
)
;; when port is not given in the netrc file,
;; it should mean "any port"
(
or
(
netrc-get
(
car
result
)
"port"
)
(
or
(
netrc-get
(
car
result
)
"port"
)
defaultport
"nntp"
))))
defaultport
port
))))
(
pop
result
))
(
pop
result
))
(
car
result
))))
(
car
result
))))
...
@@ -159,7 +161,7 @@ MODE can be \"login\" or \"password\", suitable for passing to
...
@@ -159,7 +161,7 @@ MODE can be \"login\" or \"password\", suitable for passing to
(
dolist
(
default
defaults
)
(
dolist
(
default
defaults
)
(
dolist
(
port
ports
)
(
dolist
(
port
ports
)
(
let
((
alist
(
netrc-machine
authinfo-list
machine
port
default
)))
(
let
((
alist
(
netrc-machine
authinfo-list
machine
port
default
)))
(
setq
info
(
or
(
netrc-get
alist
mode
)
info
))))))
(
setq
info
(
or
(
netrc-get
alist
mode
)
info
))))))
info
))
info
))
(
defun
netrc-get
(
alist
type
)
(
defun
netrc-get
(
alist
type
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment