blob: 3dd7275cc64debd3b1fc04585127b60b02e2e5d8 (
plain) (
blame)
| 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
 | menuconfig TODO
	bool "List of todo"
	option todo
	default y
if TODO
	config TODO_DEFAULT_FILE
	string "Default file location"
	default "todo/todo.txt"
endif
menuconfig TWIT
	bool "Twit soem short messages"
	option twit
	default n
if TWIT
endif
menuconfig DOORGAMES
	bool "Door games"
	option doorgames
	default n
if DOORGAMES
endif
menuconfig BOARD
	bool "Messaging board"
	option board
	default n
if BOARD
endif
menuconfig LOGIN
	bool "User login support"
	option login
	default n
if LOGIN
endif
menuconfig ARTICLES
	bool "Read articles"
	option articles
	default y
if ARTICLES
endif
menuconfig MOTD
	bool "Motd message"
	option motd
	default y
if MOTD
endif
menuconfig MESSAGING
	bool "Messaging between users"
	option messaging
	default n
if MESSAGING
endif
config CAPTCHA
	bool "Enable simple captcha"
	default y
 |