Skip to content

mozillahispano/smw-reminder

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

97 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MozReminder

MozReminder is a script that fetches the list of pending tasks on Mozilla Hispano, as well as their owners, and sends email reminders letting them know when they are overdue or close to being overdue.

Requirements

Install requirements

pip install -r requirements/requirements.txt

Config

Create local_config.py. You can use local_config.py.example and edit it.

HOST =  'mailserver:port'
MAIL_FROM = 'tareas@mozhispano.com'
username = 'username'
password = 'password'

Note: if your python version is earlier than to 2.7, you have to install python-argparse

Use

python smw-reminder.py --<option>

###options: --tasks for tasks --meetings-threedays and --meetings-todayfor meetings

Test

pytest

For tests you need install tests requirements

pip install -r requirements/tests.txt

Then you can run tests with

py.test

local SMTP

Another way you can test this is trying in your local machine, for this you need a local SMTP server. You can do this with:

python -m smtpd -n -c DebuggingServer localhost:1025

You also need to comment these lines:

# server.starttls()
# server.login(username,password)

Finally, set the HOST in the config file to localhost:1025 and test.

About

Email reminders for semantic mediawiki data

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • Python 100.0%