Mercurial > moin > 1.9
view jabberbot/config.py @ 5132:df8f5b4546ca
mailimport: fix endless looping while trying to import a forwarded mail
This is just a fix to solve the endless looping / crash.
It needs further improvement, currently the From/To/... header data
of the forwarded mail is not processed at all and thus not visible
later in the wiki. The body of it is visible, though, but just appears
appended to the main mail body.
author | Thomas Waldmann <tw AT waldmann-edv DOT de> |
---|---|
date | Sun, 06 Sep 2009 22:35:50 +0200 |
parents | 99ed52b53e4e |
children |
line wrap: on
line source
# -*- coding: iso-8859-1 -*- """ MoinMoin - jabber bot configuration file @copyright: 2007 by Karol Nowak <grywacz@gmail.com> @license: GNU GPL, see COPYING for details. """ class BotConfig: # Node name (a valid JID) to be used xmpp_node = u"moinbot@jabber.example2.org/wiki" # Server to be used xmpp_server = u"jabber.example.com" # Port to connect to or None, if default xmpp_port = None # Password used to connect to the xmpp server xmpp_password = u"" # Status message that the bot should set xmpp_status = u"Ready to serve!" # Set to True if bot should be verbose about actions it # is performing. Useful for debuging. verbose = True # Interface to listen on for XML RPC traffic xmlrpc_host = u"localhost" # Port to listen on for XML RPC traffic xmlrpc_port = 8000 # Url where wiki is located (for reverse XML RPC traffic) wiki_url = u"http://localhost:8080/" # A secret shared with Wiki , must be the same in both # configs for communication to work. secret = "use the same string as in secrets setting in wiki config" # Maximum number of items in service discovery cache (XEP-0115) disco_cache_size = 100 # Time allowed for a response for disco#info query (in seconds) disco_answering_timeout = 60