Hi
I want gnus to split mail into a mailbox called mail.ruby from any mail
which has the string as ruby by the field as "From:"

The mailbox does not appear into the buffer as groups.

why is this?


  (setq user-mail-address "[EMAIL PROTECTED]")
     (setq user-full-name "David Rod")

(setq gnus-select-method '(nntp "news.gnus.org"))   

(setq gnus-secondary-select-methods '((nnml ""))
       mail-sources '((pop :server "pop.tiscali.co.uk"
                           :user "[EMAIL PROTECTED]"
                           :password "nottellingu")))

(add-to-list 'gnus-secondary-select-methods '(nntp "news.gmane.org"))
(add-to-list 'gnus-secondary-select-methods '(nntp "news.newnet.co.uk"))

(setq send-mail-function 'smtpmail-send-it)
     (setq message-send-mail-function 'smtpmail-send-it)
     (setq smtpmail-default-smtp-server "smtp.tiscali.co.uk")


(add-hook 'gnus-group-mode-hook 'gnus-topic-mode)

     (defun my-message-mode-setup ()
       (setq fill-column 72)
       (turn-on-auto-fill)
       )
     (add-hook 'message-mode-hook 'my-message-mode-setup)

(setq gnus-message-archive-group 
      '((concat "sent-" (format-time-string "%Y-%B" (current-time)))))

     (setq nnmail-split-methods
       '(("mail.ruby" "^From:.*ruby")
         ("mail.latex" "^From:.*text")
         ("mail.other" "")))




     

-- 
_______________________________________________
info-gnus-english mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/info-gnus-english

Reply via email to