summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2006-02-05 16:35:40 +0000
committerthomascube <thomas@roundcube.net>2006-02-05 16:35:40 +0000
commit88375ff9807785a5843b47e2312d76eef66e0f62 (patch)
tree42fe5ac1719beb426f0f8bcac2dbe95300dc347f /index.php
parentbde645fdf1fef55ba8da8657918363fc237fb969 (diff)
Added RSS output (experimental)
Diffstat (limited to 'index.php')
-rw-r--r--index.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/index.php b/index.php
index d99f24dbd..fd356c8ba 100644
--- a/index.php
+++ b/index.php
@@ -217,7 +217,7 @@ if ($_action=='keep-alive')
if ($_task=='mail')
{
include_once('program/steps/mail/func.inc');
-
+
if ($_action=='show' || $_action=='print')
include('program/steps/mail/show.inc');
@@ -257,6 +257,9 @@ if ($_task=='mail')
if ($_action=='list' && $_GET['_remote'])
include('program/steps/mail/list.inc');
+ if ($_action=='rss')
+ include('program/steps/mail/rss.inc');
+
// kill compose entry from session
if (isset($_SESSION['compose']))
rcmail_compose_cleanup();