summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorKenichi Handa <handa@m17n.org>1997-08-28 04:51:02 +0000
committerKenichi Handa <handa@m17n.org>1997-08-28 04:51:02 +0000
commita16dd35a64da48a282d1327cbe03de5a881317f7 (patch)
treedc8477587e1966597dab20c155e4ba08ea5d1a75 /lisp
parent2bd3dcae0eba8e09cd07f180506493a22905d5cc (diff)
downloademacs-a16dd35a64da48a282d1327cbe03de5a881317f7.tar.gz
(pop3-movemail-file-coding-system): Append it for
assigning a coding system to receive mail with pop3. (pop3-movemail): Modify for writing messages with pop3-movemail-file-coding-system.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/gnus/pop3.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/gnus/pop3.el b/lisp/gnus/pop3.el
index c67b3d6db8b..95bd64ccaa4 100644
--- a/lisp/gnus/pop3.el
+++ b/lisp/gnus/pop3.el
@@ -60,6 +60,9 @@ values are 'apop.")
"Timestamp returned when initially connected to the POP server.
Used for APOP authentication.")
+(defvar pop3-movemail-file-coding-system nil
+ "Crashbox made by pop3-movemail with this coding system.")
+
(defvar pop3-read-point nil)
(defvar pop3-debug nil)
@@ -85,7 +88,8 @@ Used for APOP authentication.")
(pop3-retr process n crashbuf)
(save-excursion
(set-buffer crashbuf)
- (append-to-file (point-min) (point-max) crashbox)
+ (let ((coding-system-for-write pop3-movemail-file-coding-system))
+ (append-to-file (point-min) (point-max) crashbox))
(set-buffer (process-buffer process))
(while (> (buffer-size) 5000)
(goto-char (point-min))