Gnus development mailing list
 help / color / mirror / Atom feed
* nnmaildir, expiry problem
@ 2002-02-20 21:54 Sean Rima
  2002-02-21 17:26 ` Kai Großjohann
                   ` (3 more replies)
  0 siblings, 4 replies; 17+ messages in thread
From: Sean Rima @ 2002-02-20 21:54 UTC (permalink / raw)


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

I am not sure if I am doing something wrong, but I have use nnmaildir as
Maildrop filters my mail prior to gnus getting it's hands on it.

I get a couple of large mailing lists in and I have noticed that even
though I have set a group expiry for them:

(setq nnmail-expiry-wait-function
   (lambda (group)
   (cond ((string= group "mail.private")
          31)
         ((string= group "suse")
         1)
         ((string= group "cicq")
         1)
....

That when gnus leaves the group, nothing gets expired. SOme of the mail
is almost a week old.

What else do I need to do or can you not expire mail whilst using
nnmaildir.

Sean
- -- 
                            ,,,
                           (o o)
- -=-=-=-=-=-=-=-=-=-=-=-oOOo-(_)-oOOo-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
                 Normal Email sean AT tcob1 DOT net 
    Offering feeds for Fidonet, Adventurenet, and many other nets
              See http://www.tcob1.net for more details
 ICQ: 679813  Linux User: 231986  TCOB1 BBS: 095 43852 Yahoo: tcob_1
                           Jabber: tcobone@jabber.org
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: Use GPG for Secure Mail

iEYEARECAAYFAjx0GwIACgkQeR/L2ZZp3E9zvQCcDqmhxoQSRN11z8iDuW69K2sn
UXEAoJ07IIKn/aotxjETqRsmerPaw0Yb
=WOKf
-----END PGP SIGNATURE-----



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

* Re: nnmaildir, expiry problem
  2002-02-20 21:54 nnmaildir, expiry problem Sean Rima
@ 2002-02-21 17:26 ` Kai Großjohann
  2002-02-21 17:26 ` Kai Großjohann
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 17+ messages in thread
From: Kai Großjohann @ 2002-02-21 17:26 UTC (permalink / raw)
  Cc: ding

Sean Rima <spamtrap@tcob1.net> writes:

>    (cond ((string= group "mail.private")

Are you sure the group name is "mail.private" and not, say,
"nnmaildir:mail.private"?  I think you are using the right group
name, but I'm not sure.

(A simple invocation of message in that function should tell the
story.  Or M-x debug-on-entry RET.)

kai
-- 
~/.signature is: umop 3p!sdn    (Frank Nobis)



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

* Re: nnmaildir, expiry problem
  2002-02-20 21:54 nnmaildir, expiry problem Sean Rima
  2002-02-21 17:26 ` Kai Großjohann
@ 2002-02-21 17:26 ` Kai Großjohann
  2002-02-21 20:24   ` Sean Rima
  2002-02-21 20:24   ` Sean Rima
  2002-02-21 18:12 ` Paul Jarc
  2002-02-21 18:12 ` Paul Jarc
  3 siblings, 2 replies; 17+ messages in thread
From: Kai Großjohann @ 2002-02-21 17:26 UTC (permalink / raw)
  Cc: ding

Sean Rima <spamtrap@tcob1.net> writes:

>    (cond ((string= group "mail.private")

Are you sure the group name is "mail.private" and not, say,
"nnmaildir:mail.private"?  I think you are using the right group
name, but I'm not sure.

(A simple invocation of message in that function should tell the
story.  Or M-x debug-on-entry RET.)

kai
-- 
~/.signature is: umop 3p!sdn    (Frank Nobis)



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

* Re: nnmaildir, expiry problem
  2002-02-20 21:54 nnmaildir, expiry problem Sean Rima
  2002-02-21 17:26 ` Kai Großjohann
  2002-02-21 17:26 ` Kai Großjohann
@ 2002-02-21 18:12 ` Paul Jarc
  2002-02-21 18:12 ` Paul Jarc
  3 siblings, 0 replies; 17+ messages in thread
From: Paul Jarc @ 2002-02-21 18:12 UTC (permalink / raw)
  Cc: ding

Sean Rima <spamtrap@tcob1.net> wrote:
> (setq nnmail-expiry-wait-function
...
> What else do I need to do or can you not expire mail whilst using
> nnmaildir.

You can, but nnmaildir doesn't look at nnmail-* unless you tell it to
(via the group parameters that nnmaildir *does* look at).  nnmaildir
is Different.

(add-to-list 'gnus-parameters
             '("" (expire-age . [(your-expire-age-function)])))
(defun your-expire-age-function ()
  (if nnmail-expiry-wait-function
      (* 86400 ;; seconds per day
         (nnmail-expiry-wait-function
           (gnus-group-real-name gnus-newsgroup-name)))
    nnmail-expiry-wait))

I'll see how much it would impact the existing nnmaildir code to make
this the default when the expire-age parameter is not set, so you
could pretend nnmaildir looks directly at nnmail-*.

See <URL:http://multivac.cwru.edu./nnmaildir/using/#group-setup>,
which I really ought to add to the Gnus manual soon.


paul



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

* Re: nnmaildir, expiry problem
  2002-02-20 21:54 nnmaildir, expiry problem Sean Rima
                   ` (2 preceding siblings ...)
  2002-02-21 18:12 ` Paul Jarc
@ 2002-02-21 18:12 ` Paul Jarc
  2002-02-21 19:06   ` cvs commit stalling (was: nnmaildir, expiry problem) Paul Jarc
                     ` (5 more replies)
  3 siblings, 6 replies; 17+ messages in thread
From: Paul Jarc @ 2002-02-21 18:12 UTC (permalink / raw)
  Cc: ding

Sean Rima <spamtrap@tcob1.net> wrote:
> (setq nnmail-expiry-wait-function
...
> What else do I need to do or can you not expire mail whilst using
> nnmaildir.

You can, but nnmaildir doesn't look at nnmail-* unless you tell it to
(via the group parameters that nnmaildir *does* look at).  nnmaildir
is Different.

(add-to-list 'gnus-parameters
             '("" (expire-age . [(your-expire-age-function)])))
(defun your-expire-age-function ()
  (if nnmail-expiry-wait-function
      (* 86400 ;; seconds per day
         (nnmail-expiry-wait-function
           (gnus-group-real-name gnus-newsgroup-name)))
    nnmail-expiry-wait))

I'll see how much it would impact the existing nnmaildir code to make
this the default when the expire-age parameter is not set, so you
could pretend nnmaildir looks directly at nnmail-*.

See <URL:http://multivac.cwru.edu./nnmaildir/using/#group-setup>,
which I really ought to add to the Gnus manual soon.


paul



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

* cvs commit stalling (was: nnmaildir, expiry problem)
  2002-02-21 18:12 ` Paul Jarc
@ 2002-02-21 19:06   ` Paul Jarc
  2002-02-21 19:06   ` Paul Jarc
                     ` (4 subsequent siblings)
  5 siblings, 0 replies; 17+ messages in thread
From: Paul Jarc @ 2002-02-21 19:06 UTC (permalink / raw)


I wrote:
> I'll see how much it would impact the existing nnmaildir code to make
> this the default when the expire-age parameter is not set, so you
> could pretend nnmaildir looks directly at nnmail-*.

I've done this, but my cvs commit can't get a lock:
cvs server: [20:02:21] waiting for cvs's lock in /usr/local/cvsroot/gnus/lisp
cvs server: [20:02:51] waiting for cvs's lock in /usr/local/cvsroot/gnus/lisp
cvs server: [20:03:21] waiting for cvs's lock in /usr/local/cvsroot/gnus/lisp
cvs server: [20:03:51] waiting for cvs's lock in /usr/local/cvsroot/gnus/lisp
cvs server: [20:04:21] waiting for cvs's lock in /usr/local/cvsroot/gnus/lisp
cvs server: [20:04:51] waiting for cvs's lock in /usr/local/cvsroot/gnus/lisp
cvs server: [20:05:21] waiting for cvs's lock in /usr/local/cvsroot/gnus/lisp
cvs server: [20:05:51] waiting for cvs's lock in /usr/local/cvsroot/gnus/lisp
cvs server: [20:06:21] waiting for cvs's lock in /usr/local/cvsroot/gnus/lisp
cvs server: [20:06:51] waiting for cvs's lock in /usr/local/cvsroot/gnus/lisp

Can anyone fix this?


paul



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

* cvs commit stalling (was: nnmaildir, expiry problem)
  2002-02-21 18:12 ` Paul Jarc
  2002-02-21 19:06   ` cvs commit stalling (was: nnmaildir, expiry problem) Paul Jarc
@ 2002-02-21 19:06   ` Paul Jarc
  2002-02-21 20:25   ` nnmaildir, expiry problem Sean Rima
                     ` (3 subsequent siblings)
  5 siblings, 0 replies; 17+ messages in thread
From: Paul Jarc @ 2002-02-21 19:06 UTC (permalink / raw)


I wrote:
> I'll see how much it would impact the existing nnmaildir code to make
> this the default when the expire-age parameter is not set, so you
> could pretend nnmaildir looks directly at nnmail-*.

I've done this, but my cvs commit can't get a lock:
cvs server: [20:02:21] waiting for cvs's lock in /usr/local/cvsroot/gnus/lisp
cvs server: [20:02:51] waiting for cvs's lock in /usr/local/cvsroot/gnus/lisp
cvs server: [20:03:21] waiting for cvs's lock in /usr/local/cvsroot/gnus/lisp
cvs server: [20:03:51] waiting for cvs's lock in /usr/local/cvsroot/gnus/lisp
cvs server: [20:04:21] waiting for cvs's lock in /usr/local/cvsroot/gnus/lisp
cvs server: [20:04:51] waiting for cvs's lock in /usr/local/cvsroot/gnus/lisp
cvs server: [20:05:21] waiting for cvs's lock in /usr/local/cvsroot/gnus/lisp
cvs server: [20:05:51] waiting for cvs's lock in /usr/local/cvsroot/gnus/lisp
cvs server: [20:06:21] waiting for cvs's lock in /usr/local/cvsroot/gnus/lisp
cvs server: [20:06:51] waiting for cvs's lock in /usr/local/cvsroot/gnus/lisp

Can anyone fix this?


paul



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

* Re: nnmaildir, expiry problem
  2002-02-21 17:26 ` Kai Großjohann
  2002-02-21 20:24   ` Sean Rima
@ 2002-02-21 20:24   ` Sean Rima
  1 sibling, 0 replies; 17+ messages in thread
From: Sean Rima @ 2002-02-21 20:24 UTC (permalink / raw)


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

Paul Kelly can witness that Kai on Thu, 21 Feb 2002 wrote:
> Sean Rima <spamtrap@tcob1.net> writes:
> 
>>    (cond ((string= group "mail.private")
> 
> Are you sure the group name is "mail.private" and not, say,
> "nnmaildir:mail.private"?  I think you are using the right group
> name, but I'm not sure.
> 
> (A simple invocation of message in that function should tell the
> story.  Or M-x debug-on-entry RET.)
> 

Okay, I have to admit that I possibly read the info on setting group
expiries wrong, I thought it mean't you only needed to use the dir name
and not the full nnmaildir:....:maildir

Will try that now.

Sean
- -- 
                            ,,,
                           (o o)
- -=-=-=-=-=-=-=-=-=-=-=-oOOo-(_)-oOOo-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
                 Normal Email sean AT tcob1 DOT net 
    Offering feeds for Fidonet, Adventurenet, and many other nets
              See http://www.tcob1.net for more details
 ICQ: 679813  Linux User: 231986  TCOB1 BBS: 095 43852 Yahoo: tcob_1
                           Jabber: tcobone@jabber.org
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: Use GPG for Secure Mail

iEYEARECAAYFAjx1V2kACgkQeR/L2ZZp3E9A7wCgolbwpghCYeLatTvUHOte0zDD
mDkAoN7SdqMX+pone41BCiQlod4tGSH3
=2s0C
-----END PGP SIGNATURE-----



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

* Re: nnmaildir, expiry problem
  2002-02-21 17:26 ` Kai Großjohann
@ 2002-02-21 20:24   ` Sean Rima
  2002-02-21 20:24   ` Sean Rima
  1 sibling, 0 replies; 17+ messages in thread
From: Sean Rima @ 2002-02-21 20:24 UTC (permalink / raw)


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

Paul Kelly can witness that Kai on Thu, 21 Feb 2002 wrote:
> Sean Rima <spamtrap@tcob1.net> writes:
> 
>>    (cond ((string= group "mail.private")
> 
> Are you sure the group name is "mail.private" and not, say,
> "nnmaildir:mail.private"?  I think you are using the right group
> name, but I'm not sure.
> 
> (A simple invocation of message in that function should tell the
> story.  Or M-x debug-on-entry RET.)
> 

Okay, I have to admit that I possibly read the info on setting group
expiries wrong, I thought it mean't you only needed to use the dir name
and not the full nnmaildir:....:maildir

Will try that now.

Sean
- -- 
                            ,,,
                           (o o)
- -=-=-=-=-=-=-=-=-=-=-=-oOOo-(_)-oOOo-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
                 Normal Email sean AT tcob1 DOT net 
    Offering feeds for Fidonet, Adventurenet, and many other nets
              See http://www.tcob1.net for more details
 ICQ: 679813  Linux User: 231986  TCOB1 BBS: 095 43852 Yahoo: tcob_1
                           Jabber: tcobone@jabber.org
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: Use GPG for Secure Mail

iEYEARECAAYFAjx1V2kACgkQeR/L2ZZp3E9A7wCgolbwpghCYeLatTvUHOte0zDD
mDkAoN7SdqMX+pone41BCiQlod4tGSH3
=2s0C
-----END PGP SIGNATURE-----



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

* Re: nnmaildir, expiry problem
  2002-02-21 18:12 ` Paul Jarc
  2002-02-21 19:06   ` cvs commit stalling (was: nnmaildir, expiry problem) Paul Jarc
  2002-02-21 19:06   ` Paul Jarc
@ 2002-02-21 20:25   ` Sean Rima
  2002-02-21 20:25   ` Sean Rima
                     ` (2 subsequent siblings)
  5 siblings, 0 replies; 17+ messages in thread
From: Sean Rima @ 2002-02-21 20:25 UTC (permalink / raw)


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

On Thu, 21 Feb 2002, Paul Jarc thusly discussed the words of the
Internet Oracle:

> Sean Rima <spamtrap@tcob1.net> wrote:
>> (setq nnmail-expiry-wait-function
> ...
>> What else do I need to do or can you not expire mail whilst using
>> nnmaildir.
> 
> You can, but nnmaildir doesn't look at nnmail-* unless you tell it to
> (via the group parameters that nnmaildir *does* look at).  nnmaildir
> is Different.
> 
> (add-to-list 'gnus-parameters
>              '("" (expire-age . [(your-expire-age-function)])))
> (defun your-expire-age-function ()
>   (if nnmail-expiry-wait-function
>       (* 86400 ;; seconds per day
>          (nnmail-expiry-wait-function
>            (gnus-group-real-name gnus-newsgroup-name)))
>     nnmail-expiry-wait))
> 
> I'll see how much it would impact the existing nnmaildir code to make
> this the default when the expire-age parameter is not set, so you
> could pretend nnmaildir looks directly at nnmail-*.
> 

I will try both yours and Kai's suggestions and see what the outcome is
:)

Sean
- -- 
                            ,,,
                           (o o)
- -=-=-=-=-=-=-=-=-=-=-=-oOOo-(_)-oOOo-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
                 Normal Email sean AT tcob1 DOT net 
    Offering feeds for Fidonet, Adventurenet, and many other nets
              See http://www.tcob1.net for more details
 ICQ: 679813  Linux User: 231986  TCOB1 BBS: 095 43852 Yahoo: tcob_1
                           Jabber: tcobone@jabber.org
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: Use GPG for Secure Mail

iEYEARECAAYFAjx1V7EACgkQeR/L2ZZp3E+UmQCgkZ9Zh3s7+wcWc0qvYaRIHV98
D2oAoL9ZKrPPNnvlyVAVppUR821VRr9A
=e5MP
-----END PGP SIGNATURE-----



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

* Re: nnmaildir, expiry problem
  2002-02-21 18:12 ` Paul Jarc
                     ` (2 preceding siblings ...)
  2002-02-21 20:25   ` nnmaildir, expiry problem Sean Rima
@ 2002-02-21 20:25   ` Sean Rima
  2002-02-21 21:28   ` Sean Rima
  2002-02-21 21:28   ` Sean Rima
  5 siblings, 0 replies; 17+ messages in thread
From: Sean Rima @ 2002-02-21 20:25 UTC (permalink / raw)


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

On Thu, 21 Feb 2002, Paul Jarc thusly discussed the words of the
Internet Oracle:

> Sean Rima <spamtrap@tcob1.net> wrote:
>> (setq nnmail-expiry-wait-function
> ...
>> What else do I need to do or can you not expire mail whilst using
>> nnmaildir.
> 
> You can, but nnmaildir doesn't look at nnmail-* unless you tell it to
> (via the group parameters that nnmaildir *does* look at).  nnmaildir
> is Different.
> 
> (add-to-list 'gnus-parameters
>              '("" (expire-age . [(your-expire-age-function)])))
> (defun your-expire-age-function ()
>   (if nnmail-expiry-wait-function
>       (* 86400 ;; seconds per day
>          (nnmail-expiry-wait-function
>            (gnus-group-real-name gnus-newsgroup-name)))
>     nnmail-expiry-wait))
> 
> I'll see how much it would impact the existing nnmaildir code to make
> this the default when the expire-age parameter is not set, so you
> could pretend nnmaildir looks directly at nnmail-*.
> 

I will try both yours and Kai's suggestions and see what the outcome is
:)

Sean
- -- 
                            ,,,
                           (o o)
- -=-=-=-=-=-=-=-=-=-=-=-oOOo-(_)-oOOo-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
                 Normal Email sean AT tcob1 DOT net 
    Offering feeds for Fidonet, Adventurenet, and many other nets
              See http://www.tcob1.net for more details
 ICQ: 679813  Linux User: 231986  TCOB1 BBS: 095 43852 Yahoo: tcob_1
                           Jabber: tcobone@jabber.org
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: Use GPG for Secure Mail

iEYEARECAAYFAjx1V7EACgkQeR/L2ZZp3E+UmQCgkZ9Zh3s7+wcWc0qvYaRIHV98
D2oAoL9ZKrPPNnvlyVAVppUR821VRr9A
=e5MP
-----END PGP SIGNATURE-----



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

* Re: nnmaildir, expiry problem
  2002-02-21 18:12 ` Paul Jarc
                     ` (4 preceding siblings ...)
  2002-02-21 21:28   ` Sean Rima
@ 2002-02-21 21:28   ` Sean Rima
  5 siblings, 0 replies; 17+ messages in thread
From: Sean Rima @ 2002-02-21 21:28 UTC (permalink / raw)


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

Paul Kelly can witness that Paul Jarc on Thu, 21 Feb 2002 wrote:
> Sean Rima <spamtrap@tcob1.net> wrote:
>> (setq nnmail-expiry-wait-function
> ...
>> What else do I need to do or can you not expire mail whilst using
>> nnmaildir.
> 
> You can, but nnmaildir doesn't look at nnmail-* unless you tell it to
> (via the group parameters that nnmaildir *does* look at).  nnmaildir
> is Different.
> 

What are the nnmaildir group settings that you can use to set the expiry
wait for groups. I cannot find it in the el file.

Sean
- -- 
                            ,,,
                           (o o)
- -=-=-=-=-=-=-=-=-=-=-=-oOOo-(_)-oOOo-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
                 Normal Email sean AT tcob1 DOT net 
    Offering feeds for Fidonet, Adventurenet, and many other nets
              See http://www.tcob1.net for more details
 ICQ: 679813  Linux User: 231986  TCOB1 BBS: 095 43852 Yahoo: tcob_1
                           Jabber: tcobone@jabber.org
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: Use GPG for Secure Mail

iEYEARECAAYFAjx1ZoAACgkQeR/L2ZZp3E/XnQCgkISeBGmMFZizHjUpPEtfoRD5
PZUAn0hLtfEOq+gRWxH6KEeSOD83PvdP
=uULm
-----END PGP SIGNATURE-----



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

* Re: nnmaildir, expiry problem
  2002-02-21 18:12 ` Paul Jarc
                     ` (3 preceding siblings ...)
  2002-02-21 20:25   ` Sean Rima
@ 2002-02-21 21:28   ` Sean Rima
  2002-02-21 21:46     ` Paul Jarc
  2002-02-21 21:46     ` Paul Jarc
  2002-02-21 21:28   ` Sean Rima
  5 siblings, 2 replies; 17+ messages in thread
From: Sean Rima @ 2002-02-21 21:28 UTC (permalink / raw)


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

Paul Kelly can witness that Paul Jarc on Thu, 21 Feb 2002 wrote:
> Sean Rima <spamtrap@tcob1.net> wrote:
>> (setq nnmail-expiry-wait-function
> ...
>> What else do I need to do or can you not expire mail whilst using
>> nnmaildir.
> 
> You can, but nnmaildir doesn't look at nnmail-* unless you tell it to
> (via the group parameters that nnmaildir *does* look at).  nnmaildir
> is Different.
> 

What are the nnmaildir group settings that you can use to set the expiry
wait for groups. I cannot find it in the el file.

Sean
- -- 
                            ,,,
                           (o o)
- -=-=-=-=-=-=-=-=-=-=-=-oOOo-(_)-oOOo-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
                 Normal Email sean AT tcob1 DOT net 
    Offering feeds for Fidonet, Adventurenet, and many other nets
              See http://www.tcob1.net for more details
 ICQ: 679813  Linux User: 231986  TCOB1 BBS: 095 43852 Yahoo: tcob_1
                           Jabber: tcobone@jabber.org
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: Use GPG for Secure Mail

iEYEARECAAYFAjx1ZoAACgkQeR/L2ZZp3E/XnQCgkISeBGmMFZizHjUpPEtfoRD5
PZUAn0hLtfEOq+gRWxH6KEeSOD83PvdP
=uULm
-----END PGP SIGNATURE-----



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

* Re: nnmaildir, expiry problem
  2002-02-21 21:28   ` Sean Rima
@ 2002-02-21 21:46     ` Paul Jarc
  2002-02-21 21:46     ` Paul Jarc
  1 sibling, 0 replies; 17+ messages in thread
From: Paul Jarc @ 2002-02-21 21:46 UTC (permalink / raw)
  Cc: ding

Sean Rima <spamtrap@tcob1.net> wrote:
> What are the nnmaildir group settings that you can use to set the expiry
> wait for groups.

My cvs commit finally succeeded, so if you get a fresh checkout, your
nnmail-expiry-wait-function should now work as-is.


paul



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

* Re: nnmaildir, expiry problem
  2002-02-21 21:28   ` Sean Rima
  2002-02-21 21:46     ` Paul Jarc
@ 2002-02-21 21:46     ` Paul Jarc
  2002-02-21 23:03       ` Sean Rima
  2002-02-21 23:03       ` Sean Rima
  1 sibling, 2 replies; 17+ messages in thread
From: Paul Jarc @ 2002-02-21 21:46 UTC (permalink / raw)
  Cc: ding

Sean Rima <spamtrap@tcob1.net> wrote:
> What are the nnmaildir group settings that you can use to set the expiry
> wait for groups.

My cvs commit finally succeeded, so if you get a fresh checkout, your
nnmail-expiry-wait-function should now work as-is.


paul



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

* Re: nnmaildir, expiry problem
  2002-02-21 21:46     ` Paul Jarc
  2002-02-21 23:03       ` Sean Rima
@ 2002-02-21 23:03       ` Sean Rima
  1 sibling, 0 replies; 17+ messages in thread
From: Sean Rima @ 2002-02-21 23:03 UTC (permalink / raw)


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

Paul Kelly can witness that Paul Jarc on Thu, 21 Feb 2002 wrote:
> Sean Rima <spamtrap@tcob1.net> wrote:
>> What are the nnmaildir group settings that you can use to set the
>> expiry wait for groups.
> 
> My cvs commit finally succeeded, so if you get a fresh checkout, your
> nnmail-expiry-wait-function should now work as-is.
> 
> 

Yeah just grabbed it, now to wait and see what happens tomorrow :)

Sean
- -- 
                            ,,,
                           (o o)
- -=-=-=-=-=-=-=-=-=-=-=-oOOo-(_)-oOOo-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
                 Normal Email sean AT tcob1 DOT net 
    Offering feeds for Fidonet, Adventurenet, and many other nets
              See http://www.tcob1.net for more details
 ICQ: 679813  Linux User: 231986  TCOB1 BBS: 095 43852 Yahoo: tcob_1
                           Jabber: tcobone@jabber.org
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: Use GPG for Secure Mail

iEYEARECAAYFAjx1fK8ACgkQeR/L2ZZp3E8RqACeIxP20zrPqQRbzTp4RVBKiM/i
WCAAoMxTfOiFWLQkCH17phfpH26scWtH
=mXc5
-----END PGP SIGNATURE-----



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

* Re: nnmaildir, expiry problem
  2002-02-21 21:46     ` Paul Jarc
@ 2002-02-21 23:03       ` Sean Rima
  2002-02-21 23:03       ` Sean Rima
  1 sibling, 0 replies; 17+ messages in thread
From: Sean Rima @ 2002-02-21 23:03 UTC (permalink / raw)


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

Paul Kelly can witness that Paul Jarc on Thu, 21 Feb 2002 wrote:
> Sean Rima <spamtrap@tcob1.net> wrote:
>> What are the nnmaildir group settings that you can use to set the
>> expiry wait for groups.
> 
> My cvs commit finally succeeded, so if you get a fresh checkout, your
> nnmail-expiry-wait-function should now work as-is.
> 
> 

Yeah just grabbed it, now to wait and see what happens tomorrow :)

Sean
- -- 
                            ,,,
                           (o o)
- -=-=-=-=-=-=-=-=-=-=-=-oOOo-(_)-oOOo-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
                 Normal Email sean AT tcob1 DOT net 
    Offering feeds for Fidonet, Adventurenet, and many other nets
              See http://www.tcob1.net for more details
 ICQ: 679813  Linux User: 231986  TCOB1 BBS: 095 43852 Yahoo: tcob_1
                           Jabber: tcobone@jabber.org
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: Use GPG for Secure Mail

iEYEARECAAYFAjx1fK8ACgkQeR/L2ZZp3E8RqACeIxP20zrPqQRbzTp4RVBKiM/i
WCAAoMxTfOiFWLQkCH17phfpH26scWtH
=mXc5
-----END PGP SIGNATURE-----



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

end of thread, other threads:[~2002-02-21 23:03 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-02-20 21:54 nnmaildir, expiry problem Sean Rima
2002-02-21 17:26 ` Kai Großjohann
2002-02-21 17:26 ` Kai Großjohann
2002-02-21 20:24   ` Sean Rima
2002-02-21 20:24   ` Sean Rima
2002-02-21 18:12 ` Paul Jarc
2002-02-21 18:12 ` Paul Jarc
2002-02-21 19:06   ` cvs commit stalling (was: nnmaildir, expiry problem) Paul Jarc
2002-02-21 19:06   ` Paul Jarc
2002-02-21 20:25   ` nnmaildir, expiry problem Sean Rima
2002-02-21 20:25   ` Sean Rima
2002-02-21 21:28   ` Sean Rima
2002-02-21 21:46     ` Paul Jarc
2002-02-21 21:46     ` Paul Jarc
2002-02-21 23:03       ` Sean Rima
2002-02-21 23:03       ` Sean Rima
2002-02-21 21:28   ` Sean Rima

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