views:

256

answers:

1

Has anyone implemented functionality (within trac or using external tools) to get the functionality of the bugzilla "whine"? (a report(s) run and the results emailed periodically - basically I want a weekly reminder sent to each assignee with a list of their open issues.

+1  A: 

Don't really know the answer to your question, but if not, it shouldn't be too hard to do yourself, trac has a database somewhere. Usually, it's an SQLite3 called $TRAC_ROOT/db/trac.db, from which you can select the relevant bits:

echo "SELECT owner, status, summary FROM ticket;" | sqlite3 $TRAC_ROOT/db/trac.db

Which would give you something like

tim|assigned|Implement bugzilla-style "whine" emails.
tim|assigned|Fix the other thing

...And from that, just <handwaving>.

Anders Eurenius