File: README.QuotedStrings

package info (click to toggle)
squidguard 1.6.0-6
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 3,484 kB
  • sloc: perl: 2,575; ansic: 1,789; makefile: 414; sh: 311; lex: 193
file content (34 lines) | stat: -rw-r--r-- 881 bytes parent folder | download | duplicates (7)
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
Starting with squidGuard 1.5 you can use quotes in the configuration file. 

A quoted string is surrounded by double quotes ("") and can contain \n
\r \a \b \t \" and \xXX (to introduce a character by its hexadecimal
value). The string can be split across lines by ending a line with a \
(in which case the newline is ignored) or if you don't end the line with
a \ the newline will be kept.

Quoted strings cn be used with the following directives in the configuration
file:

dbhome
logdir
ldapbindpass
mysqlusername
mysqlpassword
mysqldb
domainlist
urllist
expressionlist
rewrite
logfile
userlist
iplist
domain
user

All other directives must be used without quotes. 
ATTENTION: If you use the user directive with quoted_strings, only usernames
with less than 16 characters will be treated correctly.

Special thanks to Iain Fothergill for submitting the patch for this
feature.