8.3. Additional comments plugin configuration

8.3.1. Enabling email notification

The comment system can notify you via e-mail when new comments/trackbacks/pingbacks are posted. If you want to enable this feature, add the following properties to your config.py file:

py['comment_smtp_server'] - your SMTP server
py['comment_smtp_from']   - the address sending the notification
py['comment_smtp_to']     - the address receiving the notification

For example:

py['comment_smtp_server'] = "localhost"
py['comment_smtp_from']   = "joe@joe.com"
py['comment_smtp_to']     = "joe@joe.com"