diff options
author | Lucas Nussbaum <lucas@lucas-nussbaum.net> | 2009-05-06 13:39:07 +0200 |
---|---|---|
committer | Lucas Nussbaum <lucas@lucas-nussbaum.net> | 2009-05-06 13:39:07 +0200 |
commit | 6a3c1e29ce1da699af27603e1787a284c7395d57 (patch) | |
tree | d6dc888cb27d028d2e5eab2aac561c3a1394a8a0 /lib/feed2imap/itemtomail.rb | |
parent | 92b406375fa95e9111653b8139d74cebe8c65b01 (diff) | |
download | feed2imap-6a3c1e29ce1da699af27603e1787a284c7395d57.tar.gz feed2imap-6a3c1e29ce1da699af27603e1787a284c7395d57.tar.bz2 feed2imap-6a3c1e29ce1da699af27603e1787a284c7395d57.zip |
Use Message-Id instead of X-CacheIndex
Diffstat (limited to '')
-rw-r--r-- | lib/feed2imap/itemtomail.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/feed2imap/itemtomail.rb b/lib/feed2imap/itemtomail.rb index 00ce84f..ffa6b22 100644 --- a/lib/feed2imap/itemtomail.rb +++ b/lib/feed2imap/itemtomail.rb @@ -47,7 +47,7 @@ class String end end -def item_to_mail(item, index, updated, from = 'Feed2Imap', inline_images = false, wrapto = false) +def item_to_mail(item, id, updated, from = 'Feed2Imap', inline_images = false, wrapto = false) message = RMail::Message::new if item.creator and item.creator != '' if item.creator.include?('@') @@ -66,7 +66,7 @@ def item_to_mail(item, index, updated, from = 'Feed2Imap', inline_images = false message.header['Date'] = item.date.rfc2822 end message.header['X-Feed2Imap-Version'] = F2I_VERSION if defined?(F2I_VERSION) - message.header['X-CacheIndex'] = "-#{index}-" + message.header['Message-Id'] = id message.header['X-F2IStatus'] = "Updated" if updated # treat subject. Might need MIME encoding. subj = item.title or (item.date and item.date.to_s) or item.link |