Re: Link considered unsafe

2009-07-30 Thread Ted Zlatanov
On Thu, 30 Jul 2009 06:16:50 +0100 Paul Mead paul.d.m...@gmail.com wrote: 

PM Reiner Steib reinersteib+gm...@imap.cc writes:
 ,[ (info (emacs-mime)Display Customization) ]
 | `mm-w3m-safe-url-regexp'
 |  A regular expression that matches safe URL names, i.e. URLs that
 |  are unlikely to leak personal information when rendering HTML
 |  email (the default value is `\\`cid:').  If `nil' consider all
 |  URLs safe.
 `

 Keep in mind that it is unsafe!
 
PM ...sure, but I can make that decision before clicking a link though,
PM can't I?

Actually I was wondering why it is unsafe to visit links in w3m.  If
anything, w3m is the safest web browser I use daily, much better than
IE, Firefox, Chrome, Opera, or Safari because it doesn't even attempt to
run JavaScript.  What personal information is this talking about?  Is it
trackback links that notify the document author that you've looked at
their document?  If so, the word unsafe is probably too strong, I'd
call them dubious and stop there.  

In any case, this is basic functionality that users should not have to
enable.  In addition it's not easy to configure this.  What am I, the
user, supposed to put in it?  I think it's unfair to expect the user to
configure such minutae.

Ted
___
info-gnus-english mailing list
info-gnus-english@gnu.org
http://lists.gnu.org/mailman/listinfo/info-gnus-english


Re: rss feed stuck - keeps downloading same articles

2009-07-30 Thread Ted Zlatanov
On Wed, 29 Jul 2009 17:39:35 +0100 Paul Mead paul.d.m...@gmail.com wrote: 

PM Ted Zlatanov t...@lifelogs.com writes:
 Paul,

 I added a debug statement in nnrss.el:
 
 (gnus-message 9 nnrss: Making hash index of %s (gnus-prin1-to-string item))
 
 a few months ago, which will help you.  Crank up gnus-verbose to 9 and
 look in the *Messages* buffer to see the full RSS entry that's
 retrieved, so you can examine the fields and determine which ones are
 causing your problems.
 
 Don't forget to turn gnus-verbose back down when you're done :)
 
 Ted
PM Ouch! I just got around to trying this. I'm not sure where I should put
PM your debug statement - I put it at the end of nnrss.el but I got an
PM error.

PM I set gnus-verbose to 9 and reloaded the feed and now have 72,000 lines
PM of text in my *Messages* buffer - what on earth am I looking for?

Look for the dump of the RSS entries, and specifically any fields that
mutate between two fetches.  In other words, you have:

fetch A:
 entry E1:
  field P: hello
  fielq Q: bye

fetch B:
 entry E2:
  field P: hello
  fielq Q: bye again

nnrss computes a hash based on P and Q and all the other fields in the
entry, so you have to find what Qs change between fetch A and fetch B
and ignore those Qs.

Ted
___
info-gnus-english mailing list
info-gnus-english@gnu.org
http://lists.gnu.org/mailman/listinfo/info-gnus-english


Re: nnimap vs. nnmaildir

2009-07-30 Thread David Engster
Dan Christensen j...@uwo.ca writes:
 Ted Zlatanov t...@lifelogs.com writes:
 Dan Christensen j...@uwo.ca writes:
 - [nnimap or nnmaildir] ability to edit articles

 You can't edit in nnimap, but you can do:

 - move to nnml/nnmaildir group
 - `e'dit
 - move back

 I assume that you also can't save-and-delete attachments in nnimap?
 I use that *a lot*...

No, you can't do that with nnimap.

 If I'm right, do you think it's something that would be hard to add?

You can't delete attachments from an article with IMAP. I know that some
mail clients claim to do this, but they're actually creating a new
article and delete the old one. One could script something similar in
Gnus, but outside of nnimap.

-David



___
info-gnus-english mailing list
info-gnus-english@gnu.org
http://lists.gnu.org/mailman/listinfo/info-gnus-english


Re: Link considered unsafe

2009-07-30 Thread ky
 Ted Zlatanov t...@lifelogs.com wrote:
[...]
 Actually I was wondering why it is unsafe to visit links in w3m.  If
 anything, w3m is the safest web browser I use daily, much better than
 IE, Firefox, Chrome, Opera, or Safari because it doesn't even attempt to
 run JavaScript.  What personal information is this talking about?
[...]

We considered image tags, that will be accessed without clicking
those links.  By special letters laid in the url, spammers will
know that your mail address is reachable.
___
info-gnus-english mailing list
info-gnus-english@gnu.org
http://lists.gnu.org/mailman/listinfo/info-gnus-english


Emacs 23.1 and sending email through msmtp

2009-07-30 Thread Sivaram Neelakantan
Apparently in 23.1, on windows at least, you may have to set 
message-send-mail-function explicitly to use sendmail.  On the earlier
22.2, this was not needed if you're using some other MDA.

(setq message-send-mail-function 'message-send-mail-with-sendmail)
;;;use msmtp instead of sendmail
(setq sendmail-program /usr/sbin/msmtp)

Otherwise Emacs tries to launch the default windows associated mail
client.  In my case, it was puzzling to see it launch Firefox when I
was trying to send email.  A look at the docs showed that there are a
number of options to message-send-mail-function.

Hope this helps someone in a similar situation.

 sivaram
 -- 



___
info-gnus-english mailing list
info-gnus-english@gnu.org
http://lists.gnu.org/mailman/listinfo/info-gnus-english