package MP;

use warnings;
use strict;

use MIME::Lite;


use Apache::RequestRec ;


use Apache::Const -compile => qw(REDIRECT OK SERVER_ERROR);

sub handler : method {
    my $class = shift;
    my $r = shift;


    print STDERR "DEBUG REQUEST\n";

    $r->content_type('text/plain');
    print "Debugtest";
    return Apache::OK;               

}


1;


