# Basic rspamd configuration # Please don't modify this file as your changes might be overwritten with # the next update. # # You can modify 'local.d/options.inc' to add and merge # parameters defined inside this section # # You can modify 'override.d/options.inc' to strictly override all # parameters defined inside this section # # See https://rspamd.com/doc/faq.html#what-are-the-locald-and-overrided-directories # for details # # Relevant documentation: https://rspamd.com/doc/configuration/options.html filters = "chartable,dkim,regexp,fuzzy_check"; one_shot = false; cache_file = "$DBDIR/symbols.cache"; # How often maps are checked ( map_watch_interval = 5min; # Multiplier for watch interval for files map_file_watch_multiplier = 0.1; dynamic_conf = "$DBDIR/rspamd_dynamic"; history_file = "$DBDIR/rspamd.history"; check_all_filters = false; # Default settings dns_max_requests = 64; max_lua_urls = 1024; max_urls = 10240; max_recipients = 1024; dns { timeout = 1s; sockets = 16; retransmits = 5; } tempdir = "/tmp"; url_tld = "${SHAREDIR}/effective_tld_names.dat"; classify_headers = [ "User-Agent", "X-Mailer", "Content-Type", "X-MimeOLE", ]; control_socket = "$DBDIR/rspamd.sock mode=0600"; history_rows = 200; explicit_modules = ["settings", "bayes_expiry"]; # Scan messages even if they are not MIME allow_raw_input = true; # Start ignore words when reaching the following limit, so the total # amount of words processed will not be *LIKELY more than the twice of that limit words_decay = 600; # Write statistics about rspamd usage to the round-robin database rrd = "${DBDIR}/rspamd.rrd"; # Write statistics for `rspamc` here stats_file = "${DBDIR}/stats.ucl"; # Local networks local_addrs = [192.168.0.0/16, 10.0.0.0/8, 172.16.0.0/12, fd00::/8, 169.254.0.0/16, fe80::/10]; hs_cache_dir = "${DBDIR}/"; # Timeout for messages processing (must be larger than any internal timeout used) task_timeout = 8s; # Emit soft reject when timeout takes place soft_reject_on_timeout = false; gistry and CI/CD: https://github.com/go-gitea/giteawww-data
summaryrefslogtreecommitdiffstats
path: root/routers/admin/auths.go
blob: dcd9a225a797b1d719357b9f6b7e1e8fd61259c0 (plain)
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261