The Feisty Youngster [email protected] (Rainer M. Krug)
scribbled this (selectively-snipped-or-not-p) stuff

>
>In contrast, "Deleting" can be achieved by moving the message to the
>folder [gmail]\bin (or what it is called in the locale one is using). 
>
>Now I am using Expire to move the emails to the bin folder, i.e. to
>delete them. But is there something similar I could use to Archive them?
>especially archiving several message becomes a pain. 

if you use something like this to sort mail to read in gnus:

;; (setq nnmail-split-methods
      '(
        ("cron"         "^Subject: cron:.*")
        ("cvs"          "^Subject: \\[CVS\\]")
        ("rootmail"     "^From: root@ ")
        ...
        ("spam"     ""))))


;;;;;; Expiring junk  

(setq auto-expire t)
(setq gnus-inhibit-user-auto-expire nil)
(setq gnus-auto-expirable-newsgroups "nnml.*")
(setq nnmail-expiry-wait-function
           (lambda (group)
            (cond ((string= "spam"  group ) 1)
           ; ...
        ;; deleting a message after 1 day
                  ((string= "private" group ) 'never)
                  ((string= "slackware" group ) 'never)
        ;; never deleting a message                   
         ; ...
                  (t 7))))
        ;;all aother groups are deleted after 7 days


Cor

-- 
 Slaven hebben geen recht op zelfverdediging, mensen ook niet vlg de UN
Dieren hebben recht op een gezonde plaats, mijn bord en het bos zijn dat
                 Hier noemen een slecht jager vegetarier
                         http://www.nerdstein.nl
_______________________________________________
info-gnus-english mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/info-gnus-english

Reply via email to