25 lines
368 B
PHP
25 lines
368 B
PHP
|
<?php
|
||
|
/**
|
||
|
* @author markus
|
||
|
* $Id: IndexController.php 6 2009-11-18 14:52:50Z markus $
|
||
|
*/
|
||
|
|
||
|
require_once(LIBRARY_PATH . '/imap/imapConnection.php');
|
||
|
|
||
|
class MailController extends Zend_Controller_Action
|
||
|
{
|
||
|
|
||
|
public function init()
|
||
|
{
|
||
|
/* Initialize action controller here */
|
||
|
}
|
||
|
|
||
|
public function indexAction()
|
||
|
{
|
||
|
// action body
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
|