Gnus development mailing list
 help / color / mirror / Atom feed
* Archive of sent mail grew too large.
@ 1999-11-09 18:23 Arcady Genkin
  1999-11-09 18:27 ` Eric Marsden
  0 siblings, 1 reply; 4+ messages in thread
From: Arcady Genkin @ 1999-11-09 18:23 UTC (permalink / raw)


Oh, horror, my archive of sent mail is over 11MB in size! I'm using
nnfolder to archive mails. When I send a new email, I have to wait for
a second or more, until the copy gets saved in
nnfolder+archive:Mail. This bothers me.

What would be a preferred way of handling this? I understand I can
just backup the old Mail/archives/Mail file, and start a new one, but
what if I want to see a message that's archived away in the old file?

What's the preferred way of handling this? I don't want to expire sent
mail.

Thanks!
-- 
Arcady Genkin                                http://wgaf.dyndns.org
"'What good is my pity? Is not the pity the cross upon which he who
loves man is nailed?..'" (Zarathustra - F. Nietzsche)


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

* Re: Archive of sent mail grew too large.
  1999-11-09 18:23 Archive of sent mail grew too large Arcady Genkin
@ 1999-11-09 18:27 ` Eric Marsden
  1999-11-10  5:22   ` Karl EICHWALDER
  0 siblings, 1 reply; 4+ messages in thread
From: Eric Marsden @ 1999-11-09 18:27 UTC (permalink / raw)


I use this:

   (setq gnus-message-archive-group
         '((if (message-news-p)
               "misc-news"
             (concat "mail." (format-time-string
                              "%Y-%m" (current-time))))))
   
-- 
Eric Marsden
It's elephants all the way down


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

* Re: Archive of sent mail grew too large.
  1999-11-09 18:27 ` Eric Marsden
@ 1999-11-10  5:22   ` Karl EICHWALDER
  1999-11-10  8:57     ` Eric Marsden
  0 siblings, 1 reply; 4+ messages in thread
From: Karl EICHWALDER @ 1999-11-10  5:22 UTC (permalink / raw)


Eric Marsden <emarsden@mail.dotcom.fr> writes:

|      (setq gnus-message-archive-group
|            '((if (message-news-p)
|                  "misc-news"
|                (concat "mail." (format-time-string
|                                 "%Y-%m" (current-time))))))

I'm using:

(setq gnus-message-archive-group
      '((if (message-news-p)
	  (concat "news." (format-time-string "%Y-%m"))
	  (concat "mail." (format-time-string "%Y-%m")))))

Calling explicitly current-time is superfluous.  But what bugs me, is
that I'm always asked whether it's allowed to delete the backup copy.
Yes, I'm using (version-control t).  How is it possible to tell Gnus not
to produce numbered backups for my archived messages?

-- 
work    : ke@suse.de                          |
        : http://www.suse.de/~ke/             |       ------    ,__o
personal: ke@gnu.franken.de                   |      ------   _-\_<,
        : http://www.franken.de/users/gnu/ke/ |     ------   (*)/'(*)



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

* Re: Archive of sent mail grew too large.
  1999-11-10  5:22   ` Karl EICHWALDER
@ 1999-11-10  8:57     ` Eric Marsden
  0 siblings, 0 replies; 4+ messages in thread
From: Eric Marsden @ 1999-11-10  8:57 UTC (permalink / raw)


>>>>> "ke" == Karl EICHWALDER <ke@gnu.franken.de> writes:

  ke> what bugs me, is that I'm always asked whether it's allowed to
  ke> delete the backup copy. Yes, I'm using (version-control t). How
  ke> is it possible to tell Gnus not to produce numbered backups for
  ke> my archived messages?

I presume that this will also work with numbered backups (but I'm not
certain): 
  
   ;; disable backups for files in /tmp or in my Mail or News directories.
   (defun ecm-backup-enable-predicate (filename)
     (and (not (string= "/tmp/" (substring filename 0 5)))
          (not (string-match "/Mail/" filename))
          (not (string-match "/News/" filename))))
   
   (setq backup-enable-predicate 'ecm-backup-enable-predicate)

-- 
Eric Marsden
It's elephants all the way down


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

end of thread, other threads:[~1999-11-10  8:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1999-11-09 18:23 Archive of sent mail grew too large Arcady Genkin
1999-11-09 18:27 ` Eric Marsden
1999-11-10  5:22   ` Karl EICHWALDER
1999-11-10  8:57     ` Eric Marsden

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).