Gnus development mailing list
 help / color / mirror / Atom feed
* Infinitely growing Mail/Incoming???
@ 2000-02-18 16:52 dave-mlist
  2000-02-18 21:44 ` Kai Großjohann
  2000-02-19 11:04 ` Henry S. Thompson
  0 siblings, 2 replies; 3+ messages in thread
From: dave-mlist @ 2000-02-18 16:52 UTC (permalink / raw)


I have this snippet in my .gnus file:

; Put the "Incoming*" files here
(setq mail-source-directory "~/Mail/Incoming/")
(setq mail-sources '((maildir :path "/home/dave/Mail/test/Maildir/new")
		     (maildir :path "/home/dave/Mail/misc/Maildir/new")
		     (maildir :path "/home/dave/Mail/mlist/Maildir/new")
		     (maildir :path "/home/dave/Mail/personal/Maildir/new")
		     (maildir :path "/home/dave/Mail/default/Maildir/new")
		     ))

I also have this line:

(setq mail-source-delete-incoming nil)

Unfortunately I see my ~/Mail/Incoming directory growing without
bound.  I tried to clean it once, but it caused Gnus to have a fit and
toss its cookies.

I have just changed that line to 

(setq mail-source-delete-incoming t)

in my .gnus file, but what will happen to the old files?  Can I clean
them safely?  What is the right way to do that?

Thanks,
Dave




^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Infinitely growing Mail/Incoming???
  2000-02-18 16:52 Infinitely growing Mail/Incoming??? dave-mlist
@ 2000-02-18 21:44 ` Kai Großjohann
  2000-02-19 11:04 ` Henry S. Thompson
  1 sibling, 0 replies; 3+ messages in thread
From: Kai Großjohann @ 2000-02-18 21:44 UTC (permalink / raw)
  Cc: ding

dave-mlist@bfnet.com writes:

> in my .gnus file, but what will happen to the old files?  Can I clean
> them safely?  What is the right way to do that?

You can use any mechanism you want.  I use C-x d ~/Mail/Inc* RET, then
type `s' to sort by date, then go to the newest file I want to delete,
hit C-u C-u C-u d, then x.

kai
-- 
~/.signature: No such file or directory



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Infinitely growing Mail/Incoming???
  2000-02-18 16:52 Infinitely growing Mail/Incoming??? dave-mlist
  2000-02-18 21:44 ` Kai Großjohann
@ 2000-02-19 11:04 ` Henry S. Thompson
  1 sibling, 0 replies; 3+ messages in thread
From: Henry S. Thompson @ 2000-02-19 11:04 UTC (permalink / raw)
  Cc: ding

Being paranoid, I like to keep things around a while to protect
against accidents.  Accordingly, I run the following as a 'cron' job
every night:

#!/usr/local/bin/bash
# clean my mail reading temporaries
cd /home/ht/Mail
echo -n 'Before: '
du -s .
find . -name 'Incoming*' -mtime +10 -exec rm {} \;
echo -n 'After: '
du -s .

-- 
  Henry S. Thompson, HCRC Language Technology Group, University of Edinburgh
          W3C Fellow 1999--2001, part-time member of W3C Team
     2 Buccleuch Place, Edinburgh EH8 9LW, SCOTLAND -- (44) 131 650-4440
	    Fax: (44) 131 650-4587, e-mail: ht@cogsci.ed.ac.uk
		     URL: http://www.ltg.ed.ac.uk/~ht/



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2000-02-19 11:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2000-02-18 16:52 Infinitely growing Mail/Incoming??? dave-mlist
2000-02-18 21:44 ` Kai Großjohann
2000-02-19 11:04 ` Henry S. Thompson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).