mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-09 16:28:00 +08:00
6116597f6f
New ownCloud package with a built-in webmail
13 lines
385 B
PHP
13 lines
385 B
PHP
<?php
|
|
|
|
$this->create('rainloop_index', '/')
|
|
->actionInclude('rainloop/index.php');
|
|
|
|
$this->create('rainloop_app', '/app/')
|
|
->actionInclude('rainloop/app.php');
|
|
|
|
$this->create('rainloop_ajax_personal', 'ajax/personal.php')
|
|
->actionInclude('rainloop/ajax/personal.php');
|
|
|
|
$this->create('rainloop_ajax_admin', 'ajax/admin.php')
|
|
->actionInclude('rainloop/ajax/admin.php');
|