Skip to content

Commit

Permalink
improved tasks and added email debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
benadida committed Aug 5, 2010
1 parent 9491823 commit 3702666
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion auth
Submodule auth updated 2 files
+0 −1 auth_systems/google.py
+1 −0 models.py
4 changes: 4 additions & 0 deletions email_debug.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import smtpd
import asyncore
server = smtpd.DebuggingServer(('127.0.0.1', 1025), None)
asyncore.loop()
2 changes: 1 addition & 1 deletion helios
Submodule helios updated 3 files
+35 −0 tasks.py
+3 −2 utils.py
+1 −7 views.py
6 changes: 6 additions & 0 deletions settings.py.sample
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,12 @@ HELIOS_VOTERS_EMAIL = True
AUTH_ENABLED_AUTH_SYSTEMS = ['password','facebook','twitter']
AUTH_DEFAULT_AUTH_SYSTEM = None

# email server
EMAIL_HOST = 'localhost'
EMAIL_PORT = 1025
EMAIL_HOST_USER = ''
EMAIL_HOST_PASSWORD = ''
EMAIL_USE_TLS = False

# set up logging
import logging
Expand Down

0 comments on commit 3702666

Please sign in to comment.