(setq gnus-select-method '(nntp "news.online.no"))
(setq gnus-group-line-format
"%M\%S\%p\%P\%m\%5y/\%-5t: %(%-40,40g%) %2,2~(cut 6)d.%2,2~(cut 4)d.%4,4~(cut 0)d %2,2~(cut 9)d:%2,2~(cut 11)d %O\n")
(setq gnus-extract-address-components
'mail-extract-address-components)
(setq gnus-use-cache t)
(setq gnus-cacheable-groups "^\\(nntp\\)")
(setq gnus-uncacheable-groups "^\\(nnml\\|nnimap\\)")
(setq gnus-save-score t)
(setq gnus-asynchronous nil)
(define-key gnus-group-mode-map [f5] 'gnus-group-get-new-news-this-group)
(define-key gnus-group-mode-map [(meta f5)] '(lambda ()
(interactive)
(gnus-group-get-new-news 1)))
(setq gnus-signature-separator
'("^-- $" "^-- *$" "^-------*$" "^ *--------*$" "^________*$" "^========*$")) (setq gnus-message-archive-group "Sent")
(setq gnus-message-archive-method
'(nnimap "imap-mail"))
(setq nnimap-list-pattern
'("mbox"
"Drafts" "Sent"))
(setq nnimap-split-inbox '("/var/spool/mail/user"))
(setq nnimap-address "imap-mail")
(setq nnimap-split-crosspost nil)
(setq nnimap-split-rule
(list
'("mbox" ".*")))
(setq gnus-cache-enter-articles '(ticked dormant))
(setq gnus-cache-remove-articles nil)
|