From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/48865 Path: main.gmane.org!not-for-mail From: William Goedicke Newsgroups: gmane.emacs.gnus.general Subject: Re: My imap is broken. I'm an ignorant, old user. Date: 07 Jan 2003 09:21:44 -0500 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1041949359 8102 80.91.224.249 (7 Jan 2003 14:22:39 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Tue, 7 Jan 2003 14:22:39 +0000 (UTC) Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18Vucl-00026B-00 for ; Tue, 07 Jan 2003 15:22:35 +0100 Original-Received: from sina.hpc.uh.edu ([129.7.128.10] ident=lists) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 18Vuci-0007iz-00; Tue, 07 Jan 2003 08:22:33 -0600 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Tue, 07 Jan 2003 08:23:26 -0600 (CST) Original-Received: from sclp3.sclp.com (sclp3.sclp.com [66.230.238.2]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id IAA10883 for ; Tue, 7 Jan 2003 08:23:09 -0600 (CST) Original-Received: (qmail 33910 invoked by alias); 7 Jan 2003 14:22:11 -0000 Original-Received: (qmail 33905 invoked from network); 7 Jan 2003 14:22:11 -0000 Original-Received: from h000102705837.ne.client2.attbi.com (HELO goedsole.com) (24.147.136.169) by 66.230.238.6 with SMTP; 7 Jan 2003 14:22:11 -0000 Original-Received: from redtail.goedsole.com (localhost [127.0.0.1]) by goedsole.com (8.12.3/8.11.6/SuSE Linux 0.5) with ESMTP id h07ELjgc022782 for ; Tue, 7 Jan 2003 09:21:46 -0500 Original-Received: (from goedicke@localhost) by redtail.goedsole.com (8.12.3/8.12.3/Submit) id h07ELjIS022781; Tue, 7 Jan 2003 09:21:45 -0500 X-Authentication-Warning: redtail.goedsole.com: goedicke set sender to goedicke@goedsole.com using -f Original-To: ding@gnus.org X-Face: ))7iTCx5fYJ{)QSX1tm!qGp{{b,s/SaS.Ktt+&(TdE/;6w}{;jYEov|!B_ In-Reply-To: Original-Lines: 27 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.5 (brussels sprouts) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:48865 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:48865 --=-=-= Dear Y'all - William Goedicke writes: > Here's my startup. Sorry, wrong file. Here's my gnus startup file. --=-=-= Content-Type: test/plain Content-Disposition: attachment; filename=.gnus Content-Description: gnus startup lisp ;;; -*-emacs-lisp-*- ;; i think this stanza is self evident. (setq gnus-article-save-directory "~/News") ;;(setq gnus-nntp-server "news.harvard.net") (setq nntp-buggy-select t) (setq gnus-your-domain "goedsole.com") (setq gnus-your-organization "Goedicke Sole Proprietorship") (setq gnus-user-login-name (getenv "USER")) (setq gnus-startup-hook 'bbdb-insinuate-gnus) (setq message-from-style 'angles user-mail-address "goedicke@goedsole.com" mail-host-address "mail.goedsole.com" message-syntax-checks '((sender . disabled)) ; if you want/need custom headers, here's where they go. message-default-headers (concat "X-Face: ))7iTCx5fYJ{)QSX1tm!qGp{{b,s/SaS.Ktt+&(TdE/;6w}{;jYEov|!B_") ) ;; upon noticing a new address, snarf into bbdb. (setq bbdb-always-add-addresses t) ;; discourage HTML expansion. HTML sucks. (setq mm-discouraged-alternatives '("text/html" "text/richtext")) ;; Expiration (setq gnus-auto-expirable-newsgroups "spam\\|Zope\\|Netsaint\\|mysql\\|hosting.com\\|PS-Fans") (setq nnmail-expiry-wait-function (lambda (group) (cond ((string= group "spam") 1) (t 6)))) ;;;;;; aliases. ;; read .mailrc aliases (require 'mail-abbrevs) (add-hook 'mail-setup-hook '(lambda () (require 'mail-abbrevs))) ;; or use bbdb aliases. ;; you probably don't need this, but here it is just in case. (add-hook 'message-setup-hook 'bbdb-define-all-aliases) (autoload 'bbdb-define-all-aliases "bbdb-com" "Hook mail alias feature of BBDB into message-mode." t) (add-hook 'message-setup-hook 'bbdb-define-all-aliases) (add-hook 'message-mode-hook 'ls6-message-mode-hook-mail-aliases) (defun ls6-message-mode-hook-mail-aliases () (define-key message-mode-map (kbd "C-c C-b") 'mail-interactive-insert-alias)) ;; you probably don't need this either. C-c C-f C-y will add receipts ;; to your outgoing mail. apparently exchange is good about honoring ;; these headers. (defun message-add-receipt-headers () "add return receipt headers to outgoing mail." (interactive) (save-excursion (message-goto-eoh) (insert (concat "Return-Receipt-To: " user-mail-address "\n" "Notice-Requested-Upon-Delivery-To: " user-mail-address "\n")))) (define-key message-mode-map "\C-c\C-f\C-y" 'message-add-receipt-headers) ;; -- local keymaps ;; i use M-tab to do bbdb completion. if you have M-tab bound to ;; something else in message mode, you probably don't want this. (define-key message-mode-map '(meta tab) 'bbdb-complete-name) (setq bbdb-use-pop-up nil) (setq bbdb-auto-revert-p t) (setq bbdb-offer-save 1) (setq bbdb/news-auto-create-p t) (setq bbdb-quiet-about-name-mismatches t) ;(setq bbdb-gag-messages t) ;; -- make sure Incoming* files go away: ;; some versions of gnus don't delete the crash files. unless you're ;; debugging you probably don't need the messages twice. (setq mail-source-delete-incoming t) ;; -- global keymap (global-set-key "\C-x\C-m" 'gnus-group-mail) ;; -- make the article nicer ;; these are all aesthetic treatments. (setq gnus-treat-strip-multiple-blank-lines 'last) (setq gnus-treat-strip-trailing-blank-lines 'last) (setq gnus-treat-strip-leading-blank-lines 'last) (setq gnus-treat-strip-headers-in-body t) (setq gnus-treat-fill-long-lines nil) ;; -- make certain to get mail from 'mail-sources ;; nnml is the gnus mail backend. the "primary select" ;; method is nntp. (setq gnus-secondary-select-methods '((nnml "private") (nnimap "Brandeis" (nnimap-address "imap.staff.brandeis.edu") (nnimap-stream ssl)) )) ;; -- create some mail groups. ;; sort of the heart of the matter. nice-people, the-guys, other, ;; spam, &c. are groups i'm splitting into. incoming mail starts at ;; the top and ends up in the first folder it matches. the most ;; important thing here is the last rule "everything else". don't ;; omit a folder that splits on "" or you *will* lose mail. ;; it's worth noting that everything that ends up in my spam box is ;; actually spam, so these rules work quite well for me. (setq nnmail-split-methods '( ("friends" "From:.*montuori") ("friends" "From:.*\[mM\]enard") ("friends" "From:.*\[Vv\]enegas") ("friends" "From:.*\[lL\]eahy") ("friends" "From:.*Clarke Thompson") ; ;Brandeis ("From" "From:.*brandeis") ; ; lists. ; ("IPCA" "^Subject:.*\\[IPCA\\]") ; ("BosZUG" "^Subject:.*\\[BosZUG\\]") ("Zope" "To:.*[Zz]ope.*") ("Netsaint" "To:.*[Nn]etsaint.*") ("Icecast" "To:.*icecast.*") ; ("DW Spam" "To:.*dwinfo") ; ("DW Spam" "From:.*billinmon.com") ; ("DW Spam" "From:.*bscol.com") ; ("DW Spam" "To:.*pmaforum") ; ("Hardware" "To:.*hardware") ("Gnus" "To:.*ding@") ("Gnus" "Cc:.*ding@") ; ("News" "To: apacheweek.*") ; ("News" "From: AAA.*") ; ("News" "From: Clark Labs.*") ; ("News" "From: Oracle.*") ; ("News" "From:.*E.TRADE.*") ; ("News" "Subject: Sun ONE.*") ; ("News" "From:.*[pP]ay[pP]al.*") ; ; hosting.com ; ("hosting.com" "From:.*hosting.com") ; ("hosting.com" "From:.*harvard.net") ; ("hosting.com" "From:.*jump.net") ; ("hosting.com" "From:.*algx") ; ("hosting.com" "From:.*allegiancetel") ; ("hosting.com" "To:.*hosting.com") ; ("Security" "From: irdb.*") ; ("Security" "From:.*sans.org") ; ("Security" "From:.*[Vv]erisign") ; ("Security" "To:.*sara-l") ; ("Security" "To:.*psionic.com") ; ("Security" "[Cc]+:.*sara-l") ; ; Perlers ; ("Perlers" "To:.*boston-pm") ; ("Perlers" "[Cc]+:.*boston-pm") ; ; Peoplesoft ("PeopleSoft" "To:.*[Pp]eople.*") ; ("PeopleSoft" "Reply-To:.*[Pp]eople.*") ; ("PeopleSoft" "From:.*peoplesoft-l.*") ;; ("PS-DBA" "To:.*psoftdba") ;; ("PS-DBA" "To:.*PSDW") ;; ("PS-DBA" "To:.*PSSAC") ;; ("PS-Consult" "To:.*the_peoplesoft_consultant") ;; ("PS-Consult" "To:.*PeopleSoft_nVisionQry") ;; ("PS-Consult" "To:.*peoplesoftcafe") ; mail direct to me, not caught above. ("Direct" "To:.*goedicke") ("Direct" "C\[Cc\]:.*goedicke") ; everything else. ; ("spam" "From:.*Melissa391913@aol.com") ; ("spam" "Subject:.*[oO]ut of [oO]ffice") ("spam" ""))) ;; -- get pop mail and local mail ;; you'll notice the pop is commented out. i use fetchmail to move ;; mail from my pop mailbox (exchange wouldn't you know) to a local ;; file. mail-cources is a list so i could have both file and pop ;; methods (as well, i believe, as IMAP [although my understanding is ;; that IMAP is pretty slow]) and more than one of each kind if ;; necessary (i.e., multiple pop mailboxes, &c.). (setq mail-sources '( (pop :server "pop.theworld.com") (imap :server "imap.staff.brandeis.edu" :stream ssl) (file :path "/var/mail/goedicke") )) ;; -- keep outgoing messages. ;; in VM this is the FCC: folder. (setq gnus-message-archive-group '((if (message-news-p) "outgoing-news" "outgoing-mail"))) --=-=-= The error message I get refers to a "mail source error" when trying to reach an IMAP server. Yours - Billy ============================================================ William Goedicke goedicke@goedsole.com http://www.goedsole.com:8080 ============================================================ Lest we forget: There shouldn't be "women's" rights or "black" rights there should only be "human" rights. - Victor Goedicke --=-=-=--