Gnus development mailing list
 help / color / mirror / Atom feed
* auto-catchup?
@ 2004-03-10 19:45 Anthony Chavez
  2004-03-10 22:58 ` auto-catchup? Jody Klymak
  0 siblings, 1 reply; 4+ messages in thread
From: Anthony Chavez @ 2004-03-10 19:45 UTC (permalink / raw)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Is it possible to configure gnus 10.5.6 to automatically mark all
messages as read for certain groups (such as imap sent-mail folders)
when querying the server for new messages?

- -- 
Anthony Chavez                             http://www.anthonychavez.org/
mailto:acc@anthonychavez.org                jabber:acc@anthonychavez.org
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (Darwin)

iD8DBQFAT3BibZTbIaRBRXERAnNZAJ9Idc01OsY1uxoWFGhRmnKaCCOENwCaAkbH
dnjs84hCCu/gDxRIymX5IH0=
=SKdu
-----END PGP SIGNATURE-----




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

* Re: auto-catchup?
  2004-03-10 19:45 auto-catchup? Anthony Chavez
@ 2004-03-10 22:58 ` Jody Klymak
  2004-03-12 17:10   ` auto-catchup? Anthony Chavez
  0 siblings, 1 reply; 4+ messages in thread
From: Jody Klymak @ 2004-03-10 22:58 UTC (permalink / raw)



Hi Anthony,

Anthony Chavez <acc@mail.anthonychavez.org> writes:

> Is it possible to configure gnus 10.5.6 to automatically mark all
> messages as read for certain groups (such as imap sent-mail folders)
> when querying the server for new messages?

I do this and it works OK.  It doesn't help if your sent-items folder
is created by another mail client.

(setq gnus-message-archive-group "nnimap+opg1.ucsd.edu:mail/sent-items")
(setq gnus-gcc-mark-as-read t)

Cheers,  Jody

-- 
Jody Klymak      http://opg1.ucsd.edu/~jklymak/
mailto:jklymak@ucsd.edu   




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

* Re: auto-catchup?
  2004-03-10 22:58 ` auto-catchup? Jody Klymak
@ 2004-03-12 17:10   ` Anthony Chavez
  2004-03-13 16:50     ` auto-catchup? Michael Schierl
  0 siblings, 1 reply; 4+ messages in thread
From: Anthony Chavez @ 2004-03-12 17:10 UTC (permalink / raw)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On Wed, 10 Mar 2004 14:58:40 -0800 Jody Klymak <jklymak@ucsd.edu> wrote:
> I do this and it works OK.  It doesn't help if your sent-items folder
> is created by another mail client.
>
> (setq gnus-message-archive-group "nnimap+opg1.ucsd.edu:mail/sent-items")
> (setq gnus-gcc-mark-as-read t)

I use multiple mail clients, so this wouldn't work for me, but thanks.

Any other suggestions?  Perhaps this is a job for an MDA such as Sieve,
maildrop or procmail...?

- -- 
Anthony Chavez                             http://www.anthonychavez.org/
mailto:acc@anthonychavez.org                jabber:acc@anthonychavez.org
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (Darwin)

iD8DBQFAUe8ibZTbIaRBRXERAv2dAJwMIgBJyQFymT6fre6IFEtJSRigMQCfY/KA
7jRQC9Uhad7ENB3ftDAOSnQ=
=wCUy
-----END PGP SIGNATURE-----




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

* Re: auto-catchup?
  2004-03-12 17:10   ` auto-catchup? Anthony Chavez
@ 2004-03-13 16:50     ` Michael Schierl
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Schierl @ 2004-03-13 16:50 UTC (permalink / raw)


Anthony Chavez <acc@anthonychavez.org> writes:

> On Wed, 10 Mar 2004 14:58:40 -0800 Jody Klymak <jklymak@ucsd.edu> wrote:
>> I do this and it works OK.  It doesn't help if your sent-items folder
>> is created by another mail client.
>>
>> (setq gnus-message-archive-group "nnimap+opg1.ucsd.edu:mail/sent-items")
>> (setq gnus-gcc-mark-as-read t)
>
> I use multiple mail clients, so this wouldn't work for me, but thanks.
>
> Any other suggestions? 

Maybe advise `gnus-group-get-new-new's to catch up the groups you want
to have caught up? Something like this (shamelessly ripped from
`gnus-group-catchup-current'):

(defadvice gnus-group-get-new-news (after mihi-gggnn-adv activate)
  (mapc
   (lambda (group) 
     (if (prog1 
	     (gnus-group-goto-group group)
	   (gnus-group-catchup group nil))
      (gnus-group-update-group-line)))
   '("nnfolder+archive:sent" 
     "nnfolder:some.other.group"
     "nnfolder:and.even.another.one")))

replace the list of group names by the groups you want to have caught
up.

HTH,

Michael




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

end of thread, other threads:[~2004-03-13 16:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-03-10 19:45 auto-catchup? Anthony Chavez
2004-03-10 22:58 ` auto-catchup? Jody Klymak
2004-03-12 17:10   ` auto-catchup? Anthony Chavez
2004-03-13 16:50     ` auto-catchup? Michael Schierl

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