diff options
author | lnu <lnu@f70e237a-67f3-0310-a06c-d2b8a7116972> | 2005-09-28 07:16:10 +0000 |
---|---|---|
committer | lnu <lnu@f70e237a-67f3-0310-a06c-d2b8a7116972> | 2005-09-28 07:16:10 +0000 |
commit | 2296da8a7783873f80ba97beb7bc512bee44e5c5 (patch) | |
tree | 1dba143a6cdbea82fd5301334bf5f9c55716d992 | |
parent | 9aa7db265118fabfffddd677d6ad3aa73af2d23a (diff) | |
download | feed2imap-2296da8a7783873f80ba97beb7bc512bee44e5c5.tar.gz feed2imap-2296da8a7783873f80ba97beb7bc512bee44e5c5.tar.bz2 feed2imap-2296da8a7783873f80ba97beb7bc512bee44e5c5.zip |
atom parser fix, issue warning when config file is world-readable
git-svn-id: svn+ssh://svn.gna.org/svn/feed2imap/trunk/feed2imap@69 f70e237a-67f3-0310-a06c-d2b8a7116972
Diffstat (limited to '')
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | lib/feed2imap/channel.rb | 8 | ||||
-rw-r--r-- | lib/feed2imap/feed2imap.rb | 4 |
3 files changed, 10 insertions, 4 deletions
@@ -1,5 +1,7 @@ Feed2Imap 0.6 (XX/09/2005) ============================ +* Issue a warning if the config file is world readable. +* Fixed a small bug in Atom feeds parsing. And found a bug in Dotclear. * Fix another bug related to escaped HTML. Feed2Imap 0.5 (19/09/2005) diff --git a/lib/feed2imap/channel.rb b/lib/feed2imap/channel.rb index 9ed3bdc..c43c254 100644 --- a/lib/feed2imap/channel.rb +++ b/lib/feed2imap/channel.rb @@ -91,9 +91,10 @@ class Channel end # Link doc.root.each_element('/feed/link') do |e| - if e.attribute('type').value == 'text/html' or - e.attribute('type').value == 'application/xhtml' or - e.attribute('type').value == 'application/xhtml+xml' + if e.attribute('type') and ( + e.attribute('type').value == 'text/html' or + e.attribute('type').value == 'application/xhtml' or + e.attribute('type').value == 'application/xhtml+xml') if (h = e.attribute('href')) && h @link = h.value.rmWhiteSpace! end @@ -124,7 +125,6 @@ class Item attr_accessor :title, :link, :content, :date, :creator, :subject, :category, :cacheditem attr_reader :channel - def initialize(item = nil, channel = nil) @channel = channel @title, @link, @content, @date, @creator, @subject, @category = nil diff --git a/lib/feed2imap/feed2imap.rb b/lib/feed2imap/feed2imap.rb index 38046e9..a20eeed 100644 --- a/lib/feed2imap/feed2imap.rb +++ b/lib/feed2imap/feed2imap.rb @@ -46,6 +46,10 @@ class Feed2Imap @logger.fatal("Configuration file #{configfile} not found.") exit(1) end + if (File::stat(configfile).mode & 044) != 0 + @logger.warn("Configuration file is readable by other users. It" + + "probably contains your password.") + end begin File::open(configfile) { |f| @config = F2IConfig::new(f) |