summarylogtreecommitdiffstats
path: root/v2.3.conf
diff options
context:
space:
mode:
Diffstat (limited to 'v2.3.conf')
-rw-r--r--v2.3.conf88
1 files changed, 0 insertions, 88 deletions
diff --git a/v2.3.conf b/v2.3.conf
deleted file mode 100644
index 316f6322b221..000000000000
--- a/v2.3.conf
+++ /dev/null
@@ -1,88 +0,0 @@
-{
-
- # QQBot 的配置文件
- # 使用 qqbot -u somebody 启动程序时,依次加载:
- # 根配置 -> 默认配置 -> 用户 somebody 的配置 -> 命令行参数配置
- # 使用 qqbot 启动程序时,依次加载:
- # 根配置 -> 默认配置 -> 命令行参数配置
-
- # 用户 somebody 的配置
- "somebody" : {
-
- # QQBot-term (HTTP-API) 服务器端口号(该服务器监听 IP 为 127.0.0.1 )
- # 设置为 0 则不会开启本服务器(此时 qq 命令和 HTTP-API 接口都无法使用)。
- "termServerPort" : 8188,
-
- # 二维码 http 服务器 ip,请设置为公网 ip 或空字符串
- "httpServerIP" : "",
-
- # 二维码 http 服务器端口号
- "httpServerPort" : 8189,
-
- # 自动登录的 QQ 号
- "qq" : "3497303033",
-
- # 接收二维码图片的邮箱账号
- "mailAccount" : "3497303033@qq.com",
-
- # 该邮箱的 IMAP/SMTP 服务授权码
- "mailAuthCode" : "feregfgftrasdsew",
-
- # 是否以文本模式显示二维码
- "cmdQrcode" : False,
-
- # 显示/关闭调试信息
- "debug" : False,
-
- # QQBot 掉线后自动重启
- "restartOnOffline" : False,
-
- # 在后台运行 qqbot ( daemon 模式)
- "daemon": False,
-
- # 完成全部联系人列表获取之后才启动 QQBot
- "startAfterFetch" : False,
-
- # 插件目录
- "pluginPath" : ".",
-
- # 启动时需加载的插件
- "plugins" : [],
-
- # 插件的配置(由用户自定义)
- "pluginsConf" : {},
-
- },
-
- # 可以在 默认配置 中配置所有用户都通用的设置
- "默认配置" : {
- "qq" : "",
- "pluginPath" : "",
- "plugins" : [
- 'qqbot.plugins.sampleslots',
- 'qqbot.plugins.schedrestart',
- ],
- "pluginsConf" : {
- 'qqbot.plugins.schedrestart': '8:00',
- }
- },
-
- # # 注意:根配置是固定的,用户无法修改(在本文件中修改根配置不会生效)
- # "根配置" : {
- # "termServerPort" : 8188,
- # "httpServerIP" : "",
- # "httpServerPort" : 8189,
- # "qq" : "",
- # "mailAccount" : "",
- # "mailAuthCode" : "",
- # "cmdQrcode" : False,
- # "debug" : False,
- # "restartOnOffline" : False,
- # "daemon" : False,
- # "startAfterFetch" : False,
- # "pluginPath" : "",
- # "plugins" : [],
- # "pluginsConf" : {}
- # },
-
-}