From 308800373ba951e8d2e45b9a8884fe57dc19c01d Mon Sep 17 00:00:00 2001 From: ichikawa Date: Tue, 26 Jan 1999 02:35:37 +0000 Subject: [PATCH] lisp/gnus-offline.el: Add security notice document by Tetsuya Tsukamoto --- ChangeLog | 4 ++++ lisp/gnus-offline.el | 26 +++++++++++++++++++++++++- 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index c1382ed..affa92a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +1999-01-26 Tsukamoto Tetsuo + + * lisp/gnus-offline.el: Add security notice. + 1999-01-25 Tatsuya Ichikawa * README-offline.ja: New file - Variable and command description diff --git a/lisp/gnus-offline.el b/lisp/gnus-offline.el index 83992f0..2a9ca81 100644 --- a/lisp/gnus-offline.el +++ b/lisp/gnus-offline.el @@ -1,5 +1,5 @@ ;;; gnus-offline.el --- To process mail & news at offline environment. -;;; $Id: gnus-offline.el,v 1.1.2.5.2.26 1999-01-25 07:09:51 ichikawa Exp $ +;;; $Id: gnus-offline.el,v 1.1.2.5.2.27 1999-01-26 02:35:37 ichikawa Exp $ ;;; Copyright (C) 1998 Tatsuya Ichikawa ;;; Yukihiro Ito @@ -59,6 +59,27 @@ ;;; In Gnus group buffer , type g to get all news and mail. ;;; Then send mail and news in spool directory. ;;; +;;; Security Notice. +;;; +;;; You can set the variable gnus-offline-pop-password-file to save your POP +;;; passwords. But TAKE CARE. Use it at your own risk. +;;; If you decide to use it, then write in .emacs or .gnus-offline.el +;;; something like: +;;; +;;; (setq gnus-offline-pop-password-file "~/.pop.passwd") +;;; +;;; and write in this file something like: +;;; +;;; (setq pop3-fma-password +;;; '(("SERVER1" "ACCOUNT1" "PASSWORD1") +;;; ("SERVER2" "ACCOUNT2" "PASSWORD2") +;;; ............................ +;;; )) +;;; +;;; If you want to encode the file with base64, try: +;;; +;;; M-: (base64-encode-region (point-min) (point-max)) +;;; ;;; Variables. ;;; gnus-offline-dialup-program-arguments ;;; ... List of dialup program arguments. @@ -74,6 +95,9 @@ ;;; (minutes) ;;; gnus-offline-dialup-function ... Function to diualup. ;;; gnus-offline-hangup-function ... Function to hangup. +;;; gnus-offline-pop-password-file ... File to keep the POP password info. +;;; gnus-offline-pop-password-decoding-function +;;; ... Function to decode the password info. ;;; Code: -- 1.7.10.4