Artifact [4e7d0867db]
Not logged in

Artifact 4e7d0867db143f746a128675181b99e38d4896fe:

Wiki page [feed2mail] by dennis 2013-01-25 21:31:01.
D 2013-01-25T21:31:01.890
L feed2mail
P 954589fb5473d21afc2bba409812d9fe4c709781
U dennis
W 2553
<h1>feed2mail</h1>

<h2>Abstract</h2>

feed2mail reads RSS and Atom feed and put the entries into folders of an IMAP mail server.

Why storing feed entries into an IMAP Server and not into a cloud service or device-depended app?

Some devices like simple phones does not have a RSS or Atom feed reader, but most today's devices have a build-in email app can access IMAP servers. Why not store the feeds into an IMAP server?

You can access your feeds from all over the world from where you have access to your IMAP server.

The IMAP servers "syncs" the new and read entries of your feed over all devices. 

<h2>Features</h2>

<ul>
<li>feed2mail reads RSS and Atom feeds</li>
<li>feed2mail creates a HTML message for every feed entry</li>
<li>different feeds can be stored into different IMAP mailbox folders</li>
<li>feed2mail saves a summary message in your INBOX so you are up-to-date about your feeds (optional)</li>
</ul>

<h2>Requirements</h2>

feed2mail requires PHP. It is tested with version 5.3.8 on Windows XP.

An IMAP email server is required. POP3 and SMTP are not supported. Tested with Jana Server (WinXP).

Mail clients tested: Thunderbird 2 (WinXP), ipad (iOS 6), Blackberry Playbook, Samsung Wave (Bada OS).

<h2>Usage & Configuration</h2>

Usage: 

feed2mail.php CONFIGURATIONFILE

e. g. feed2mail.php feed2mail-conf.xml

The configuration file is a XML file of following structure

<pre>
<?xml version="1.0" encoding="UTF-8"?>
<feed2mail>
	<option name="updatesummary">BOOLEAN</option>
	<server type="imap" security="notls">
		<hostname>SERVERNAME:PORTNO</hostname>
		<username>USERNAME</username>
		<userpass>PASSWORD</userpass>
	</server>
	<feed>
		<url>URL_TO_FEED</url>
		<mailfolder>IMAP_FOLDER</mailfolder>
	</feed>
<feed2mail>
</pre>

The <i>server node</i> defines the connection to your IMAP server. Note: the password is stored in plain text. 

The <i>feed</i> node defines the feed's URL and the IMAP folder to store the entries. You can have more than one feed node in your configuration file.

With the <i>option</i> you can control some features:

<ul>
 <li>updatesummary - <i>true</i> to save the summary message (default), <i>false</i> to do not save this message</li>
</ul>

To frequently run feed2mail use your OS's scheduler, e. g. crontab or scheduled task on Windoze boxes.

<h2>Download</h2>

Get the latest version from <a href="./dir?name=src/feed2imap">the source folder</a>.

A sample configurtion file is stored in the conf folder.

Z 3ec0c270f779c34acf00a7f83f2fe2c2