First time here? Check out the FAQ!
0

TypeError whent trying to process_emailed_question()

When I try to fetch emailed questions I'm seing this message:

#python manage.py post_emailed_questions
TypeError: process_emailed_question() takes at least 4 arguments (3 given)

My settings:

settings.py:

IMAP_HOST = 'imap-mail.outlook.com'
IMAP_HOST_USER = 'example@outlook.com'
IMAP_HOST_PASSWORD = '1234'
IMAP_PORT = '993'
IMAP_USE_TLS = True

in "settings/EMAIL/" : "Reply by email hostname": outlook.com or imap-mail.outlook.com (neither works)

and "Enable posting answers and comments by email" checked

nicanorl's avatar
55
nicanorl
asked 2013-12-09 11:56:27 -0500
edit flag offensive 0 remove flag close merge delete

Comments

Usign gmail smtp server: #python manage.py post_emailed_questions TypeError: expected string or buffer

nicanorl's avatar nicanorl (2013-12-09 12:03:41 -0500) edit
add a comment see more comments

1 Answer

1

Please instead use "lamson" module, the instructions are here:

http://askbot.org/doc/optional-modules.html#receiving-replies-for-email-notifications

The method you have described will be removed (I will delete it now from the repository), sorry for the confusion.

Evgeny's avatar
13.2k
Evgeny
answered 2013-12-09 12:37:37 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments