summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--data/default_config.cfg3
-rw-r--r--src/core.py6
2 files changed, 9 insertions, 0 deletions
diff --git a/data/default_config.cfg b/data/default_config.cfg
index 6ba36419..b061cbf4 100644
--- a/data/default_config.cfg
+++ b/data/default_config.cfg
@@ -129,6 +129,9 @@ log_dir =
# You can specify an other directory to use. It will be created if it doesn't exist
plugins_dir =
+# Space separated list of plugins to load on startup
+plugins_autoload =
+
# the full path to the photo (avatar) you want to use
# it should be less than 16Ko
# The avatar is not set by default, because it slows
diff --git a/src/core.py b/src/core.py
index 55026967..0b8442ff 100644
--- a/src/core.py
+++ b/src/core.py
@@ -174,6 +174,12 @@ class Core(object):
self.xmpp.add_event_handler("chatstate_inactive", self.on_chatstate_inactive)
self.timed_events = set()
+ self.autoload_plugins()
+
+ def autoload_plugins(self):
+ plugins = config.get('plugins_autoload', '')
+ for plugin in plugins.split():
+ self.plugin_manager.load(plugin)
def coucou(self):
self.command_pubsub('pubsub.louiz.org')