1<?php
2
3include_once 'TestAuthContainer.php';
4include_once 'Auth/Container/POP3.php';
5
6
7class POP3aContainer extends TestAuthContainer {
8
9
10    function &getContainer() {
11        static $container;
12        if(!isset($container)){
13            include 'auth_container_pop3a_options.php';
14            $container = new Auth_Container_POP3($options);
15        }
16        return($container);
17    }
18
19    function &getExtraOptions() {
20        include 'auth_container_pop3a_options.php';
21        return($extra_options);
22    }
23}
24
25
26
27
28?>
29