A small utility to send requests to servers and notify by email if an error occured.
./uptest.py
You need to configure your mailer as well as the sites you want to check, in a config.py
file. An example file is
available:
mailer = {
"username": "[email protected]",
"password": "mypassword",
"host": "smtp.example.com",
"port": "465",
"dest": "[email protected]",
}
urls = [
"example.com",
"example.com/toto",
]