Re: RMAIL in Emacs

2008-06-28 Thread Sahil Tandon
Don Saklad <[EMAIL PROTECTED]> wrote:

> What are the less well known existing RMAIL and Emacs commands for a
> single session that might be more useful for nonprogrammers?...
> 
> For RMAIL in Emacs using Esc C-s Regexp to summarize by: 
> to ferret out patterns is a basic method for deleting
> spam messages.
> 
> Dotfile programming is complicated for nonprogrammers.
> Programming solutions are complicated for nonprogrammers

This is the wrong mailing list for such questions and declarations.

-- 
Sahil Tandon <[EMAIL PROTECTED]>


RMAIL in Emacs

2008-06-28 Thread Don Saklad
What are the less well known existing RMAIL and Emacs commands for a
single session that might be more useful for nonprogrammers?...

For RMAIL in Emacs using Esc C-s Regexp to summarize by: 
to ferret out patterns is a basic method for deleting
spam messages.

Dotfile programming is complicated for nonprogrammers.
Programming solutions are complicated for nonprogrammers


For users of RMAIL in EMACS not familier with programming, not familiar with dotfiles, how can spamassassin headers be used with EMACS or RMAIL existing commands?...

2008-04-14 Thread Don Saklad
For users of RMAIL in EMACS not familier with programming, not
familiar with dotfiles, how can spamassassin headers be used
with EMACS or RMAIL existing commands?...











.


Re: For RMAIL in EMACS how do you setup a file of the spam messages?...

2008-03-05 Thread jpff
I have tried GNUS -- OK to read net-news, terrible to read mail.
==John ffitch


Re: For RMAIL in EMACS how do you setup a file of the spam messages?...

2008-03-05 Thread Nix
On 3 Mar 2008, [EMAIL PROTECTED] uttered the following:
>> "Nix" == Nix  <[EMAIL PROTECTED]> writes:
[...]
> and so on for a long time; recogmises mailing list, odd friends etc
> etc.  If it is of any use just mail me. I have run this for most of
> a decade now. and it gets tweaked from time to time.
>
> Do you mean there are other systems for reading mail?  Never seen one
> to touch RMAIL.

My understanding is that most rmail users migrated to Gnus long ago,
which resembles rmail much as a 747 resembles a Bleriot. (Certainly what
you're doing in that filter above looks like stuff that Gnus largely
does for you...)

-- 
`The rest is a tale of post and counter-post.' --- Ian Rawlings
   describes USENET


Re: For RMAIL in EMACS how do you setup a file of the spam messages?...

2008-03-03 Thread jpff
>>>>> "Nix" == Nix  <[EMAIL PROTECTED]> writes:

 Nix> On 4 Feb 2008, Don Saklad said:
 >> For RMAIL in EMACS how do you setup a file of the spam messages?...

 Nix> I suspect that RMS is the only other rmail user left on Earth. You
 Nix> could try asking him :)

Not so.  I am an emacs user from years back, and use RMAIL/Babyl
format.  I have an extensive mail filter written in Lisp, linked into
mail reading with
(add-hook 'rmail-show-message-hook 'rmail-file-filtering-mail-hook)

and the filter starts

(defun rmail-file-filtering-mail-hook () 
  "Hook to file mail and label spam etc automatically"
  (if (eq (current-buffer)
  (get-file-buffer (expand-file-name "~/RMAIL")))
; Only for RMAIL file
  (let
  (pos subject to cc sender reply from content-type x-sa x-rbl
   x-sas x-bar x-mailer x-message-info x-warning return-path 
received)
(save-restriction
  (rmail-narrow-to-non-pruned-header)
  (setq pos (point))
  (setq subject (mail-fetch-field "Subject"))
  (setq to  (mail-fetch-field "To"))
  (setq cc  (mail-fetch-field "Cc"))
  (setq sender  (mail-fetch-field "Sender"))
  (setq reply   (mail-fetch-field "Reply-to"))
  (setq from(mail-fetch-field "From"))
  (setq x-sa(mail-fetch-field "X-Spam-Flag"))
  (setq x-sas   (mail-fetch-field "X-Spam-Score"))
  (setq x-bar   (mail-fetch-field "X-Spam_bar"))
  (setq x-mailer (mail-fetch-field "X-Mailer"))
  (setq x-message-info (mail-fetch-field "X-Message-Info"))
  (setq x-warning (mail-fetch-field "X-Warning"))
  (setq x-rbl   (mail-fetch-field "X-RBL-Warning"))
  (setq return-path (mail-fetch-field "Return-path"))
  (setq content-type (mail-fetch-field "Content-Type"))
  )
(goto-char pos)
(if (eq subject nil) (setq subject ""))
(if (eq to nil)  (setq to ""))
(if (eq cc nil)  (setq cc ""))
(if (eq sender nil)  (setq sender ""))
(if (eq reply nil)   (setq reply ""))
(if (eq from nil)(setq from ""))
(if (eq x-warning nil) (setq x-warning ""))
(if (eq x-sa nil)(setq x-sa ""))
(if (eq x-sas nil)   (setq x-sas ""))
(if (eq x-bar nil)   (setq x-bar ""))
(if (eq x-mailer nil) (setq x-mailer ""))
(if (eq x-rbl nil)   (setq x-rbl ""))
(if (eq return-path nil) (setq return-path ""))
(if (eq received nil) (setq received ""))
(if (eq content-type nil)(setq content-type ""))
(cond ((string-match "text/html" content-type)
   (let ((ss rmail-delete-after-output))
 (setq rmail-delete-after-output nil)
 (rmail-set-label "html-mail" t)
 (rmail-output-to-rmail-file
  (expand-file-name "~/Junky"))
 (rmail-set-attribute "deleted" t)
 (let ((del-msg rmail-current-message))
   (if (rmail-summary-exists)
   (rmail-select-summary
(rmail-summary-mark-deleted del-msg
 (setq rmail-delete-after-output ss)
 (rmail-next-undeleted-message 1)))
  ((rmail-message-labels-p rmail-current-message "white") nil)
  ((rmail-message-deleted-p rmail-current-message) nil)
  ((rmail-message-labels-p rmail-current-message "filed") nil)
;; things that have been mislabelled first
and so on for a long time; recogmises mailing list, odd friends etc
etc.  If it is of any use just mail me. I have run this for most of
a decade now. and it gets tweaked from time to time.

Do you mean there are other systems for reading mail?  Never seen one
to touch RMAIL.

==John ffitch


Re: For RMAIL in EMACS how do you setup a file of the spam messages?...

2008-02-10 Thread Bob Proulx
Nix wrote:
> On 4 Feb 2008, Don Saklad said:
> 
> > For RMAIL in EMACS how do you setup a file of the spam messages?...
> 
> I suspect that RMS is the only other rmail user left on Earth. You
> could try asking him :)

:-)  [I stopped using rmail years ago and converted from there to 'vm'
(view-mail) and from there on to 'mutt'.]

Actually I suggest sending this question to [EMAIL PROTECTED] and
see if anyone there would be able to help.  It is more specifically an
rmail in emacs question than a spamassassin question.

Bob


Re: For RMAIL in EMACS how do you setup a file of the spam messages?...

2008-02-10 Thread Nix
On 4 Feb 2008, Don Saklad said:

> For RMAIL in EMACS how do you setup a file of the spam messages?...

I suspect that RMS is the only other rmail user left on Earth. You
could try asking him :)

-- 
`The rest is a tale of post and counter-post.' --- Ian Rawlings
   describes USENET


For RMAIL in EMACS how do you setup a file of the spam messages?...

2008-02-04 Thread Don Saklad
For RMAIL in EMACS how do you setup a file of the spam messages?...


Re: Around the web what resources are there for users of RMAIL in EMACS to deal with spamassassin headers?...

2007-12-16 Thread Evan Platt

At 09:04 PM 12/16/2007, the zak wrote:


Around the web what resources are there for users of RMAIL in EMACS
to deal with spamassassin headers?...


Google shows quite a few...

http://www.google.com/search?hl=en&q=rmail+emacs+spamassassin&btnG=Search





Around the web what resources are there for users of RMAIL in EMACS to deal with spamassassin headers?...

2007-12-16 Thread the zak

Around the web what resources are there for users of RMAIL in EMACS
to deal with spamassassin headers?...
-- 
View this message in context: 
http://www.nabble.com/Around-the-web-what-resources-are-there-for-users-of-RMAIL-in-EMACS-to-deal-with-spamassassin-headers-...-tp14370075p14370075.html
Sent from the SpamAssassin - Users mailing list archive at Nabble.com.



Re: Filtering capabilities, filtering features of RMAIL in EMACS

2006-12-06 Thread Jonas Eckerman
Don Saklad wrote:
> For novice end users, neophytes, emphasis on novice, what
> filtering capabilities, what features are there?...

> for RMAIL in EMACS when novice end users begin to take note of
> the spamassassin headers appearing on messages?...

*Novice* end users using Emacs with Rmail? Seriously?

<http://www.gnu.org/software/emacs/manual/html_node/Rmail.html>
<http://www.emacswiki.org/cgi-bin/emacs/Rmail>

Regards
/Jonas
-- 
Jonas Eckerman, FSDB & Fruktträdet
http://whatever.frukt.org/
http://www.fsdb.org/
http://www.frukt.org/



Filtering capabilities, filtering features of RMAIL in EMACS

2006-12-05 Thread Don Saklad
For novice end users, neophytes, emphasis on novice, what
filtering capabilities, what features are there?...
for RMAIL in EMACS when novice end users begin to take note of
the spamassassin headers appearing on messages?...