diff options
author | mathieui <mathieui@mathieui.net> | 2013-04-10 01:49:09 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2013-04-10 01:49:09 +0200 |
commit | 1d18f4f8d4f70f6643c81863d1b0e20be8a9ab2b (patch) | |
tree | d3353d97797584be388a47daa309dcab77c8389b /doc | |
parent | 4c2553bbed66e7e92964aaf72ba43bd70245724b (diff) | |
download | poezio-1d18f4f8d4f70f6643c81863d1b0e20be8a9ab2b.tar.gz poezio-1d18f4f8d4f70f6643c81863d1b0e20be8a9ab2b.tar.bz2 poezio-1d18f4f8d4f70f6643c81863d1b0e20be8a9ab2b.tar.xz poezio-1d18f4f8d4f70f6643c81863d1b0e20be8a9ab2b.zip |
Add the separate accounts page
Diffstat (limited to 'doc')
-rw-r--r-- | doc/source/commands.rst | 4 | ||||
-rw-r--r-- | doc/source/dev/index.rst | 1 | ||||
-rw-r--r-- | doc/source/misc/index.rst | 17 | ||||
-rw-r--r-- | doc/source/misc/separate.rst | 21 |
4 files changed, 26 insertions, 17 deletions
diff --git a/doc/source/commands.rst b/doc/source/commands.rst index 962be9dd..6b8e58b9 100644 --- a/doc/source/commands.rst +++ b/doc/source/commands.rst @@ -7,9 +7,7 @@ you can use the **"** character to surround this argument. The commands described in this page are shown like this: -.. code-block:: - - /command <mandatory argument> [optional argument] +``/command <mandatory argument> [optional argument]`` You can get the same help as below from inside poezio with the **/help** command. diff --git a/doc/source/dev/index.rst b/doc/source/dev/index.rst index 7498e0e8..ff70ec69 100644 --- a/doc/source/dev/index.rst +++ b/doc/source/dev/index.rst @@ -16,4 +16,5 @@ Contents: timed_events common sleek + theming diff --git a/doc/source/misc/index.rst b/doc/source/misc/index.rst index 60a2a4e1..be6f12c3 100644 --- a/doc/source/misc/index.rst +++ b/doc/source/misc/index.rst @@ -1,23 +1,12 @@ -Miscellaneous topics -==================== +Other topics +============ Contents: .. toctree:: :maxdepth: 2 + separate correct ssl - -.. - configure - ssl - usage - themes - keys - plugins - misc - xep - dev - diff --git a/doc/source/misc/separate.rst b/doc/source/misc/separate.rst new file mode 100644 index 00000000..7392cea6 --- /dev/null +++ b/doc/source/misc/separate.rst @@ -0,0 +1,21 @@ +Using several accounts +====================== + +Poezio does not support multi-accounts, and we do not plan to do so in a +foreseeable future. However, you can run several poezio instances (e.g. with +tmux or screen) to have similar functionnality. + +You can specify a different configuration file than the default with: + +.. code-block:: bash + + ./launch.sh -f separate_config.cfg + + +The relevant options for a separate config are the following: + +* :term:`plugins_dir`: A different directory for the plugin sources (not _that_ useful) +* :term:`log_dir`: A different directory for logs +* :term:`plugins_conf_dir`: A different directory for plugin configurations ; useful for the GPG plugin, for example. + +Those options are detailed in the *configuration page*. |