-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathweb_search_bot.conf.example
37 lines (27 loc) · 1.22 KB
/
web_search_bot.conf.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Top level configuration used by the entire bot.
[DEFAULT]
# URL to a Searx instance to contact.
searx = http://localhost:8888/?format=json&q=
# URL of the message queue to poll for search requests.
queue = http://localhost:8003/
# Name I should answer to.
bot_name = Waldo
# Default e-mail address to send search results to.
default_email = [email protected]
# Set the default loglevel of the bot.
loglevel = info
# How often to poll the message queue for orders. Defaults to 60 seconds.
# polling_time = 60
# The SMTP server to e-mail search requests through, when commanded. This
# defaults to 'localhost'.
# smtp_server = localhost
# The e-mail address that search results will be sent from. This is not
# optional.
origin_email_address = the-bots-name
# Optional user-defined text that will be displayed to the user as part of the
# online help text. It is recommended that you describe what you use this
# bot for, particularly if you have multiple instances running simultaneously.
# user_text = This is some user-specific text.
# Optional user-defined text that will be displayed to the user to acknowledge
# that commands have been received and are being executed.
# user_acknowledged = Custom telling you I'm doing something text.