#! /usr/bin/env python

import radiusd

def authorize(p):
        reply = ( ('Reply-Message', 'Hello from mod7'), )
        config = ( ('Cleartext-Password', 'hello'), )
        return (radiusd.RLM_MODULE_OK, reply, config)

