]> git.ipfire.org Git - thirdparty/sarg.git/blob - ChangeLog
Accept unlimited URL length in the redirector log (thanks to Joseph L Casale).
[thirdparty/sarg.git] / ChangeLog
1 SARG ChangeLog
2
3 Jun-09-2009 Version 2.3-pre5
4 - LDAP usertab added.
5 Now you can have your users in a LDAP Server.
6 Use these tags in sarg.conf: LDAPHost, LDAPPort, LDAPBindDN, LDAPBindPW,
7 LDAPBaseSearch, LDAPFilterSearch
8 - Parse the string flags from sarg.conf once during the reading of sarg.conf instead of manipulating and duplicating the tests of the strings where they are used.
9 - Useragent report limited to requested date range.
10 - Link to external css file instead of including it verbatim in each HTML file (thanks to Maxim Britov).
11 - Enable gettext configuration for autotools.
12 - Use gettext translations instead of the custom languages files.
13 - Keep the user name unchanged in the report (suppress the replacement of some characters by underscores).
14 - Try to resolve a user's IP address only once and store the result. It can speed up the processing a lot.
15 - Resolve IPv6 addresses (to be tested).
16 - Don't limit the maximum length of a URL (the only limit is that a single line of text from the log file must fit in memory).
17 - The creation of the datafile is working again.
18 - Use a template to build the .htaccess file of each report.
19 - Accept spaces in the replacement label of the usertab file (thanks to Alex Sav).
20 - Change the version number of the release candidate to conform to the numbering of the translationproject.org.
21 - Store the period internaly and get rid of the sarg-period file.
22 - Display the period using the locale's month name in the HTML files.
23 - Check the correct writing of the HTML files (thanks to Markus Elfring).
24 - Use the word "Redirector" instead of mentioning explicitly squidGuard in the reports as at least Rejik is compatible with sarg (thanks to Maxim Britov).
25 - The date range passed as argument is not restricted to the actual range covered by the log files any more.
26 - Fix the exclusion of status codes to exclude more than one code.
27 - Accept date ranges for -d command line option as day-n, week-n and month-n where n is the number of backward days, weeks and months to report.
28 - Strengthen the making of the report file name to drastically limit the characters from the user ID that can appear in the file name. The presence of an unescaped backquote in the user ID would execute the rest of the name as a shell command (fixes bug #2997707 reported by anonymous).
29 - Purge the content of sarg-general to free a lot of disk space.
30 - Use parameteric dimensions in the graph creation instead of hard coded constants.
31 - Remove the temporary file and sorting in graph creation.
32 - Add the redirector_log option in sarg.conf to read a log file created by squidGuard or Rejik (thanks to Maxim Britov for pointing out this missing option).
33 - Allow up to 64 redirector log files to be passed through the command line option -L and the sarg.conf option redirector_log.
34 - Configuration option squidguard_log_format renamed into redirector_log_format for equity with the various redirectors that can be used with sarg.
35 - Read a compressed log file through a pipe.
36 - The graph was wrong. The bars were not reaching the correct height with respect to the Y axis.
37 - Use a computed logarithmic scale for the Y axis when plotting bytes data instead of a fixed scale.
38 - Show the time when plotting the elapsed time.
39 - Fix the reporting of only one user with command line option -u.
40 - Output both date/time textual and graphical reports.
41 - Sarg log file now stores the date in the format dd/mm/yyyy and doesn't change it depending on the current date representation selected in sarg.conf. It will break existing sarg log files.
42 - Intermediary log files store the date as dd/mm/yyyy irrespective of the current date representation in sarg.conf.
43 - Fix a regression to accept any directory name length in the index.
44 - Change the CSS template file and cleanup of the hardcoded styles (thanks to Maxim Britov).
45 - Accept unlimited line length when converting or splitting the log file.
46 - Use long options on the command line.
47 - Sarg can output the internal css inlined in the reports. It replaces the css.tpl distributed with the sources.
48 - Command line option -l is optional. The input log files may be named on the command line without prefixing them with -l. It allows the use of wildcards in the command line.
49 - Accept unlimited URL length in the redirector log (thanks to Joseph L Casale).
50
51 Feb-10-2010 Version 2.2.7.1
52 - Fixed compilation error reported by some compilers due to an sizeof in a fprintf (thanks to Maxim Britov and Renato Botelho).
53 - The path to the font used to create the graphs can be set in sarg.conf.
54 - The installation of our fonts can be disabled with --disable-fontdir.
55
56 Feb-05-2010 Version 2.2.7
57 - Extra compile and run time protection (FORTIFY_SOURCE) fixed in configure.
58 - Use tabulations as columns separator in intermediary files to avoid problems when a field of the log contains a space.
59 - Input log file type detection partly rewritten to clearly distinguish which type is processed where.
60 - Read the input log file from standard input if log file name is -.
61 - Use string pointers in getword instead of copying the strings over and over.
62 - Use LC_TIME to format some dates and times in the report according to the selected locale.
63 - Sarg.conf can list up to 255 access.log files.
64 - Downloaded files suffixes are matched against a sorted list and use a dichotomic search.
65 - Added getword_atoll to read a number directly from a file without an intermediary string storage.
66 - Use boolean to enable the options instead of string compares.
67 - Accept an absolute path for the language file in sarg.conf.
68 - Experimental: Can show the backtrace of the program when a getword loop is detected to help in locating the origin of the error.
69 - Protect the creation of the index against invalid directories.
70 - Only copy the files (not the subdirs) when creating the directory with the images to include in the reports.
71 - Directories deleted without using the rm system command.
72 - Index created using an internal sort algorithm instead of a system call.
73 - Fixed Debian bug #408577 (changed exclude_hosts to exclude subdomains and IPv4 subnets).
74 - Replace --enable-htmldir by --enable-sargphp to avoid confusion on the name (thanks to Peter Nixon).
75 - Installation of sarg-php can be disabled with --disable-sargphp.
76 - Fixed empty entries in squidGuard log when the URL doesn't start with protocol://.
77 - Fixed regressions in creation and reading of a sarg parsed log (thanks to Joao Alves).
78 - Does not report URLs consisting of only a host name ending with .com as a downloaded file.
79 - Mangle the $ and @ signs in user ID to make the resulting file name valid in shell commands.
80 - Fixed a regression in the default value of --enable-sargphp.
81 - Increase the maximum size of a line read from access.log and detect longer lines that were silently splitted in previous versions.
82
83 Jan-06-2010 Version 2.2.6.1
84 - Remove unnecessary dependency on off_t.
85 - Configuration doesn't fail if rlim_t is not available.
86 - Test for the availability of -Werror=implicit-function-declaration and -Werror=format flags in gcc (thanks to Murilo Moreira de Oliveira and pjetko).
87 - Fix sort delimiter when reading useragent log (thanks to Maxim Britov).
88 - Fix user agent report font size and statistics on user agent.
89 - Test for the availability of -Werror=format-security in gcc (thanks to Maxim Britov).
90 - Test the existence of bzero with autoconf and don't redefine it (thanks to Maxim Britov).
91 - Remove warnings if libgd is not available.
92 - The date stored in sarg-date is now stored in a more machine readable form (thanks to rcastanheira for pointing this out).
93 - The date read from sarg-date was not properly parsed and would produce a wrongly sorted index across a year change (thanks to rcastanheira for pointing this out).
94 - my_mkdir changed to avoid the use of getword, be simpler and, maybe, work reliably on windows.
95 - Makefile supports DESTDIR for easy package creation (thanks to Erjo).
96 - Real time report honour the user_ip flag of the configuration file and the -l and -n passed on command line.
97 - Fix usage of -Werror and detection of fopen64 with old compilers not supporting -Werror=implicit-function-declaration.
98
99 Oct-14-2009 Version 2.2.6
100 - Protection against buffer overflows in getword and friends and report the origin of the error instead of always blaming access.log.
101 - Patch #2224623 applied.
102 - Updated to autoconf 2.61.
103 - Detect external commands failures and print the exact command that produced the error. The offending file is kept for debugging if possible.
104 - The format of the date written in sarg-date is forced to prevent a failure if the locale is not en_US.
105 - Removed the duplicate file opening that resulted in a resource leak.
106 - Patch #1945235 applied.
107 - Patch #1918397 applied.
108 - Limit the content of the squidguard log file to the date of the day being processed.
109 - Removed fscanf that is prone to buffer overflows.
110 - Size of buffers increased.
111 - Protect ip2name against buffer overflows.
112 - Replace characters that are valid in URL but not in file names when building a file name from a URL.
113 - Patch #2657320 applied.
114 - Fix #else #if into #elif.
115 - Remove all the compilation warnings (inspired from patch #1771501).
116 - Fixed the real time report.
117 - Fixed the same bug as patch #1733337 but in a cleaner way.
118 - All the sprintf/fputs have been replaced by fprintf to avoid an intermediary buffer and possible buffer overflow.
119 - Moved all the functions declarations from conf.h to defs.h for consistency.
120 - Fixed bug #2089451.
121 - Fixed Debian bug #444845.
122 - Replaced the ifdef FOPEN64 by a single call to MY_FOPEN for code clarity.
123 - User IP/ID is searched only in the first column of the usertab file.
124 - Some of indentation fixes.
125 - Speed up by removing two unnecessary ip resolutions.
126 - Applied debian patches: sarg-polish.patch, sarg-turkish.patch
127 - Applied debian patch: opensuse_2_enlarge_report_buffers.patch
128 - Applied debian patch: opensuse_3_too_small_font_buffer.patch
129 - Applied debian patch: opensuse_4_enlarge_log_buffer.patch
130 - Applied and extended debian patch: opensuse_5_limit_sprintf.patch
131 - Function debuga format the output string itself, so there is no need to use sprintf.
132 - Applied debian patch: opensuse_7_year_assertion.patch
133 - Removed a few unnecessary strings copy.
134 - Embryo of documentation for the code with doxygen.
135 - Changed subs to replace the string in place and avoid allocating a memory that was freed on only one occasion.
136 - A few improvements on strings manipulations.
137 - Fixed debian bug #504749.
138 - Detect downloaded suffix bigger than 3 characters, don't match the cases and don't stop on a partial match.
139 - Fixed bug #2716729.
140 - Sanitized a little bit the generated HTML.
141 - Don't reject URL without directories.
142 - Use the correct format for off_t on amd64.
143 - Use the mechanism provided by configure to set the directories of the application instead of the custom variables.
144 - Fixed bug #1814212.
145 - Fixed bug #1847374.
146 - Partly applied advice of bug #1659784.
147 - Fixed bug #1740268.
148 - Applied suggestion of bug #2830643.
149 - Fixed bug #2216451.
150 - Fixed bug #2000178.
151 - Protect the reading of the configuration file against buffer overflows.
152 - Logo image height taken into account.
153 - Accept longer mail utility name.
154 - Fixed e-mail report (may also fix bug #2153024).
155 - Fixed total and percentages of topuser page.
156 - Applied Gentoo patch 10_all_sarg-2.2.5-enlarge-day-mon-buffers.patch.
157 - Applied Gentoo patch 12_all_sarg-2.2.5-enlarge-ntemp.patch.
158 - Open only once the denied.log and authfail.log when parsing more than one access.log.
159 - Use configurable paths for the files that used to reside in SYSCONFDIR.
160 - Add cmake configuration files.
161 - Compute the report date without resorting to the system command.
162 - Allow the use of spaces in the temporary directory.
163 - Fixed bug #2863485.
164 - Removed misplaced off_t as suggested in bug #2864425.
165 - Z files are uncompressed by zcat to avoid deleting the original log file.
166 - Compressed log files are uncompressed in /tmp/sarg to delete the file when the process completes.
167 - Fixed several memory leaks.
168
169 Mar-03-2008 Version 2.2.5
170 - new fix to the script insertion vulnerability via user-agent
171 report. javascript can still be executed via e.g. the "<BODY onload=function();>" scheme
172 Thanks to Alin Rad Pop, Security Specialist, Secunia, Denmark
173
174 Mar-02-2008 version 2.2.4
175 - security issues can be exploited to execute arbitrary code when sarg
176 is used with malicious input files.
177 The vulnerability within the processing of the useragent.log is rather
178 critical, as this can be exploited by passing a long user agent string
179 when browsing via a squid proxy. the manipulated GET request in the
180 access log would not be accepted by squid, so that file has to be specially crafted.
181 Thank you to L4teral l4teral@gmail.com
182
183 - French language fixed.
184 Thanks to Nicod <smlpnicod@orange.fr>
185 - Fixed: Segfault in x86_64
186
187 Jan-02-2007 version 2.2.3.1
188 - fixed -m option to show all the used tags
189 - date period invalid in download reports
190 - wrong results when userid contain '%20' character
191 - previous reports info wrong in index.html
192
193 Dec/23/2006 Version 2.2.3
194 - gd graph font change from FreeSans.ttf to DejaVuSans.ttf
195 - minor fixes when only denied records in access.log file.
196 - ulimit tag changed. If you run sarg with a low privilege user,
197 set to 'none' to disable ulimit.
198 Thanks to Jorge Morgado <jorge@morgado.ch>
199 - Russian_UTF-8 language fixed by Igor Ageikin <iageikin@lipen.elektra.ru>
200 - realtime_unauthenticated_records tag changed to show by default.
201 - chmod 755 in sarg-php due to errors in rpmbuild.
202 Thanks to Davide Madrisan <davide.madrisan@gmail.com>
203 - when the keyword "anonymous" is used in squidGuard.conf, Sarg does
204 not find the log-files anymore.
205 Thanks to Daniel Vogel <daniel_vogel@t-online.de>
206 - after reading the squidGuard configuration, the data read from the
207 usertab file was corrupted.
208 Thanks to Daniel Vogel <daniel_vogel@t-online.de>
209 - millisec values showed as bytes. Thanks to Carlos <ke09@terra.com.br>
210 - with squidGuard, you can log groups in only one log file.
211 We must parse each log files only one time.
212 Thanks to Christophe BADINA <christophe.badina@ch-moulins-yzeure.fr>
213 - error message(removetmp) Cannot open /tmp/sarg_tmp/../general
214 when sending report by email. Thanks to Peter Volkov <pva@gentoo.org>
215 - incorrect off_t size in printf. In FreeBSD off_t is 64bit long long,
216 but sarg always use %d to display off_t in log processing. This cause garbage
217 while reading log files on a freebsd, and possible crash.
218 Thanks to Alex Samorukov <samm@os2.kiev.ua>
219 - squid24 on/off tag added in sarg.conf to implement compatibility if using
220 squid <= 2.4 and using squid common logs.
221 Thanks to Valter Dal Bo <dalbo@tesco.it>
222 - exclude_hosts and some code errors fixed by
223 Alexander Kozlov <avk@post.eao.ru>. Many thanks.
224 - temporary file names changed to sarg-... to avoid conflicts
225 with usernames. Thanks to Ukrainian Elephant <superlamer@users.sourceforge.net>
226 - SARG support Japanese wordset but not support charset.
227 submitted by anonymous at sourceforge.net Many thanks.
228 - support for utf-8 character set added by Peter Warasin
229 <peter-endian@users.sourceforge.net>. Many thanks.
230 - if all the data is at the hour each day, totaliza_day() treats it all as being
231 on the last day. This is observed for users which only download via a cron job
232 at the same time each day. Now the date and time will be
233 checked to see if changed.
234 Thanks to Ian Dall <iandall@users.sourceforge.net>
235 - greport_day() doesn't add the volume for the first hour of each day to the total.
236 Thanks to Ian Dall <iandall@users.sourceforge.net>
237 - Russian_koi8 and Russian_windows1251 languages updated by
238 Stas Degteff <stas.grumbler@gmail.com>. Many thanks
239 - realtime reporting is sorted by URL, and not by Date/Time.
240 Thanks to Puce-Xcit <puce-xcit@users.sourceforge.net>
241
242 Aug/29/2006 Version 2.2.2
243 - malloc test implemented to avoid high-memory consuming.
244 Thanks to Rodrigo Rubira Branco <rodrigo@kernelhacking.com>
245 - Czech UTF8 language added by Josef Karliak <karliak@ajetaci.cz>
246 - fixed: parsed mismatch in realtime_access_log_lines and
247 access_log_lines tags.
248 Thanks to Kuznetsov Andrey <pm_kan@mail.ru>
249 - changed: realtime report sort changed by date/time
250 Thanks to Leonardo Buonsanti <leonardo.buonsanti@gmail.com>
251 - GD minor fixes added.
252 - bug fixed. *** buffer overflow detected ***: sarg terminated
253 in Fedora Core 5 when using -D FORTIFY_SOURCE in gcc or in kernel.
254
255 May/19/2006 Version 2.2.1
256 - iconv problems fixed in Freebsd and Slackware.
257 Thanks to Grigory Trenin <gtrenin@gmail.com>.
258 - new word added to languages: Topuser
259 - missing fclose fp-in in css.c
260 Thanks to Renato Botelho <rbgarga@gmail.com>.
261 - index.c fixed. Missing -r in reverse sort.
262 Thanks to Fernando Lemes da Silva <fernando@koho.com.br>
263 - wrong values in columns in-cache and out-cache.
264 Thanks to Hugo P S Costa <hpcosta@nutron.com.br>
265
266 May/17/2006 Version 2.2
267 - sarg ported to 64 bits.
268 Thanks to Antonio F. Zago <zagolinux@uol.com.br>
269 to share your Fedora Core 5 64 bits with me.
270 - fixed conflict types for 'saverecs2' in .configure
271 - fixed no index.html when lastlog tag is greater then 0,
272 caused by some debug messages.
273 - removed some development debug message
274 - user_limit_block script added to block users when limit exceeded
275 - fixed wrong sort in index.html
276 - removed '+' argument to sort utility.
277 Thanks to Julio Cesar Covolato <julio@psi.com.br>
278 - fixed "file too long" messages when using long_url
279 Thanks to Fabio Lo Votrico <fabio@link.it>
280 - fixes and improvements from Oleg <xsov@mail.ru> - Tanks.
281 . fprintf faster than sprintf+fputs (fixed in some places);
282 . strcpy+strcat is faster than sprintf (fixed in some places);
283 . unused variables removed;
284 . fixed headers look and feel (<th class="header3">);
285 . fixed word 'BYTES' localization for datetime user report;
286 . fixed corrupted top header on index, denied, download and tt-reports;
287 . fixed "No" table header in topsites;
288 . fixed user report table look;
289 . fixed floating point exception on long url (added checks
290 for division by zero);
291 . fixed incorrect long url view;
292 . fixed too wide table entries in user report by adding url_limit
293 internal parameter in html.c (default 40);
294 . fixed charset.c file (was in MS-DOS text format);
295 . also included all previous fixes by other people (from
296 datafile.patch and lastlog.patch files).
297
298 Nov/29/2005 version 2.1
299 - index_tree tag added.
300 Look at TAG: index_tree in sarg.conf file
301 default is file - old format.
302 - realtime report added. sarg -r option
303 Look at these tags ion sarg.conf file:
304 TAG: realtime_refresh_time num sec
305 TAG: realtime_access_log_lines num
306 TAG: realtime_types: GET,PUT,CONNECT,ICP_QUERY,POST
307 TAG: realtime_unauthenticated_records: ignore|show
308 - garbage in topuser report with uninitialized variable.
309 Thanks to Craig Brockmeier <craig@ppco.com>
310 - memory leaks caused by a wrong variable size
311 Fixed by Klaus Singvogel <kssingvo@suse.de>. Thanks.
312 - ignoring users with '.' in password file.
313 Thanks to Emerson Valdir Pellis <webmaster@marisol.com.br>
314 - error with "resolve_ip" with "user_authentication yes"
315 Fixed by Grigory Trenin <gtrenin@gmail.com>. Thanks.
316 - long url causing fault.
317 Thanks to Vassily Andin <vasya@avitalight.com>
318 - hanging on a log file containing space.
319 Thanks to Fabio Lo Votrico <fabio@link.it>
320 - bug fixed in squidguard report module
321 - squidguard_ignore_date on|off tag added to sarg.conf file
322 You can ignore the squidguard log record date if outside of
323 date range in squid access.log file.
324 - alternate squidguard log added using -L option on sarg command line.
325 Thanks to Dave Karlson <dkarlson@r9esd.k12.or.us>
326 - fixed malloc without free.
327 - datafile-url ip|name added to sarg.conf file - saves ip address or name
328 in url when using datafile tag. Thanks to Calvin Muller <calvin@siryn.co.za>
329 - wrong link point in Generated by sarg-2..
330 Thanks to Markus Hoffmann <ipcop@mh-lantech.de>
331 - Russian_UTF-8 language added by Alex Deiter <tiamat@komi.mts.ru>
332
333 Aug/04/2005 version 2.0.9
334 - dansguardian_report_limit missing in sarg.conf file.
335 - ntlm domain+user format added.
336 - index date sort fixed by Olivier JAVAUX. Thanks
337 - Improve broken record detection
338 Thanks to Artem Korneev <akorneev@intelsysus.com>
339 - sort open failed causing an empty topuser report
340 - sarg losslessly size optimized images
341 Thanks to Tonda M��ek <tonda.misek@post.cz> and Luigi Gangitano.
342 - sarg calling sort without quoting filenames
343 Thanks to Luigi Gangitano.
344 - download_report_limit tag added.
345 Thanks to Leonardo Rodrigues <leonardo@solutti.com.br>
346 - logo css class defined but never used.
347 Thanks to Roger Favero <favero@sparkenergy.it>
348
349 May/29/2005 version 2.0.8
350 - verdana.ttf font removed to avoid patent infringement issues.
351 Now sarg uses a GPL FreeSans font from http://savannah.gnu.org
352 - ISA report with wrong date in date/time report.
353 Thanks to Richard Berndt
354 - connect records ignored when using emulate_http_log on in squid.conf file.
355 Thanks to Dusan Woletz
356 - bug that prevents the correct usage of switch -d <date1-date2> when using
357 an "emulate_httpd_log on" logfile and some performance improvements
358 added.
359 Thanks to Filippo Grassilli
360 - Spanish language fixed by Jos� Luis Hern�ndez L�pez. Thanks.
361 - url variable size changed to accommodate big urls with coded symbols and some
362 minor changes in util.c file.
363 Thanks to Oleg <xsov@mail.ru>
364 - download suffixes improved by Oleg <xsov@mail.ru>. Thanks.
365 Now sarg uses these suffixes:
366 7z,ace,arj,avi,bat,bin,bz2,bzip,cab,com,cpio,dll,doc,dot,exe,gz,iso,
367 lha,lzh,mdb,mov,mp3,mpeg,mpg,mso,nrg,ogg,ppt,rar,rtf,shs,src,sys,tar,
368 tgz,vcd,vob,wma,wmv,zip
369
370 May/02/2005 version 2.0.7
371 - DansGuardian report added.
372 Thanks to Adolfas Kupliauskas for the access.log
373 - Slovak language added by Dusan Woletz
374 Thank you
375 - wrong usertab user on topuser report.
376 Thanks to Marcos Favoretto
377 - ntlm_user_format added to sarg.conf. Now you can choose the following formats
378 for the username on reports: user|domainname+user
379 Suggested by Roger Favero
380 - exclude_users ignored in some situations.
381 - Fixes by Sapon Oleg from Russia:
382 . there are two equal lines about Evren Yurtesen in CONTRIBUTORS file.
383 . Internationalization of SARG user graph added, using iconv function, which
384 is presented only in Linux, so I add required #ifdef and other stuff to clean
385 compile code on other platforms.
386 . Fixed two issues:
387 - '?' symbol problems for apache and other cgi-supporting web server which
388 doesn't support '?' symbol in links (all of them interpret this like
389 parameter to cgi script);
390 - some good optimization to all three similar cicles in these files by
391 reducing false checks in 'if ...' strings.
392 . Fixes segfault, produced by improper use of strncpy functions, look - strncpy
393 doesn't copy leading '\0' symbol!
394 . Just localization support for repday report.
395 . Support usertab IP->USERNAME change in siteuser report.
396 . Just proper Russian koi8 localization.
397
398 Apr/22/2005 version 2.0.6
399 - Greek language by Antonis Maglaras <vegos@magla.gr>
400 Thank you.
401 - time period added to -t option. Now you can use -t HH-HH, HH:MM-HH:MM
402 - support to isa proxy 2004 log added.
403 Thanks to William da Rocha Lima <wrochal@linuxit.com.br>
404 - French language fixed by Alexey Znamerovskiy <alexz@everys.com>
405 Thanks
406 - internal LC_ALL=C removed to avoid errors on Solaris.
407 Thanks to Hraska, Frantisek <frantisek.hraska@hupro.sk>
408 - non authenticated records removed from Topuser report.
409 Thanks to Brian <brian@reginachristianschool.org>
410 - Compilation error on FreeBSD > 5 - log.c:645: error: `RLIMIT_OFILE' undeclared
411 - Sarg abbreviation values improved.
412
413 Mar/21/2005 version 2.0.5
414 - fixed: some changes to avoid segmentation fault.
415 - fixed: some changes to avoid compilation errors on freeBSD.
416 - fixed: exclude_hosts not excluding correctly.
417
418 Feb/17/2005 version 2.0.4
419 - exclude hosts not excluding correctly.
420 Thanks to Oleg
421 - download report showing jpeg files.
422 - support to Microsoft isa proxy log files added.
423 Thanks to Trankov Vladislav <vtrankov@kb-obibank.ru>
424 - fixed: error when using relative paths in -o and -w options. Just absolute paths
425 can be used now.
426 Thanks to Andreas Grosse <andi@majestyk.de>
427 - fixed: segfault fix in vrfydir() in util.c
428 Prevent buffer overflow in subs(); replace one constant with sizeof() in my_lltoa().
429 vrfydir(): fix segfault if sub-directory "images" is not exists
430 function builddia() don't check the parameters. Result: segmentation fault in some cases.
431 Thanks to Stas Degteff stas_degteff@users.sourceforge.net for the fixes.
432 - fixed: wrong date period in squidguard_log when using European date format.
433 Thanks to Guenther Mair <gunnyst@users.sourceforge.net>
434 - ulimit tag added on sarg.conf to avoid "Too many open files" error.
435 Thanks to Paulo Pires <paulo.pires@vodafone.pt>
436
437
438 Feb/02/2005 version 2.0.3
439 - squidguard parse logs method changed.
440 Thanks to Joao Mendes <jmendes@credibom.pt>
441 Thanks to Guenther Mair <gunnyst@users.sourceforge.net>
442 - wrong results in -v option.
443 - fixed: error when using -u (include user)
444 Thanks to Bochkarev Vladimi <bochkarev@expocentr.ru>
445 - export LC_ALL=C will be issued before sort to avoid high cpu usage
446
447 Nov/22/2004: version 2.0.2
448 - grepday with invalid font path.
449 Thanks to Marcelo Ricardo Leitner <mrl@conectiva.com.br>
450 - -v option added to display Sarg version on console
451 - Segmentation fault caused by an unclosed file.
452 Thanks to Pustovalov Leonid
453 - SquidGuard log formats added.
454 Thanks to Kolotov Alexandr
455 - time field added to topsites report
456 Thanks to Miles Roper <mroper@westcoastdhb.org.nz>
457 - fixtime function with wrong definition, changed to long long
458 Thanks to Valery from Russia
459 - Solaris 9 compiling error: error: conflicting types for 'my_mkdir'
460 Thanks to Brad Larden <Brad.Larden@alphawest.com.au>
461 - segfaults if the denied report is disabled in sarg.conf.
462 Thanks to Filippo Carletti <filippo.carletti@nethesis.it>
463 - reading performance improved by Francesco Perrillo <fperillo@totalfax.it>
464 Thanks
465 - Russian sarg-php translation added.
466 Thanks to Michael Stepanenko <mistic@ecolines.ru>
467
468
469 Oct/04/2004: version 2.0.1
470 - configure error with no gd installed.
471 - graph with no text when using --enable-sysconfdir
472 - graph day incorrect when using dd/mm/yy date format
473 - show_sarg_logo yes|no added
474 - site_user_time_date with wrong patch.
475 Thanks to Ricardo R. Hoffmann <hoffmann@uninet.com.br>
476
477
478 Sep/29/2004: - version 2.0
479 - Internal/External css implemented
480 - User authentication access (htaccess) implemented
481 - large file support added
482 - Report limits implemented
483 - Download report implemented
484 - Sarg logo by Osamu Matsuzaki <matsu_o@robata.org> added.
485 - Internal mkdir added to easy port to various platform.
486 - long url now show only accessed site and module name.
487 - now you can add a user report url to a flat file to be blocked
488 by some Squid acl.
489 Request by Francesco Collini <collini@colliniconsulting.it>
490 - remove temporary files, if already exist, to avoid conflicts with a
491 previous sarg process..
492 Thanks to Renato Leon <rl_sita@hotmail.com>
493 - squidGuard improved
494 - now only records with the same period from access.log
495 will be in squidGuard report.
496 - squidGuard limit report
497 - now you can save some urls in squidGuard db using
498 sarg-squidguard PHP utility.
499
500 bug fixed: fault caused by rewinddir after closedir.
501 Thanks to Lucas Bocchi <challado@ibocchi.com.br>
502 and to Freek
503 Fixed: - missing </body> tags in all HTML pages
504 - missing </html> tag in some HTML pages
505 - missing DOCTYPE in all HTML pages
506 - grammar in man page
507 - URL Links to SourceForge http://sarg.sourceforge.net/
508 Added: - Included more detailed information in man the page
509 Thanks to Billy Newsom of U.S.
510 To Do: - There are still major validation problems in the HTML generated
511
512
513 Apr/25/2003: - fixed: - link error to denied site in squidGuard report
514 - resolve name error in squidGuard report
515 - some fixes to HPUX. Thanks to Miles Roper <mroper@westcoastdhb.org.nz>
516 - index_sort_order tag don't work correctly.
517 - too many open files fixed. Thanks to Francesco Perrillo <fperillo@totalfax.it>
518 - Ukrainian_windows1251 included in sarg.conf file
519 - exclude_string don�t work correctly. Thanks to Modric Kristijan
520 <Kristijan.Modric@pliva.hr>
521
522 Mar/17/2003: - Release 1.4
523 Added: Now you can choose the fields that will be in User Reports.
524 Look at user_report_fields tag in sarg.conf file
525 Implementation requested by Daniel T. Joye <daniel@dragontail.com>
526
527 Added: Now sarg saves the processed log in a sarg format after parsing
528 the squid log file. This allow futures sarg reprocess and data
529 will be smaller than Squid the log files
530 Look at parsed_output_log directory and
531 parsed_output_log_compress tags in sarg.conf file
532 Implementation requested by Joe Cooper <joe@swelltech.com>.
533 Many thanks for the donation.
534
535 Added: Now sarg can display the report values in abbreviation format.
536 Look at displayed_values in sarg.conf
537
538 Added: Ukrainian_windows1251 language by Roman Vynar <rvynar@icqmail.com>
539 Thank you.
540
541 Added: Catalan language by Andreu Sanchez <tanis@lleida.com>
542 Thank you.
543
544 Nov/16/2002: - Fixed: squidGuard report fail with non authenticated users.
545 Thanks to Dan Ratzlaff <norb@norbysoft.com>
546 Fixed: Turkish language by Evren Yurtesen
547 <yurtesen@ispro.net.tr>. Thanks
548 Fixed: English language by Luigi Gangitano
549 <gangitano@lugroma3.org>. Thanks
550 Fixed: "CONNECT" average values are incorrectly calculated.
551 Arvids <arvids@vendomar.lv>. Thanks
552
553 Oct/15/2002: - Added: sarg man page created by Luigi Gangitano
554 <gangitano@lugroma3.org>
555 Added: Reading statistics, show_read_statistics tag
556 Added: Index sort order. See index_sort_order tag
557 Added: squidGuard report - squidguard_log_path tag
558 Added: show_sarg_info on report bottom optional - show_sarg_info tag
559 Changed: gzipped file will be decompressed using zcat
560 bzipped file will be decompressed using bzcat
561 Changed: new sort routine added.
562 Changed: strsep changed to getnumlist function by Robert Tiismus
563
564 Jun/02/2002: - Added: save the results in a flat file to use to populate some
565 database. Look at these tags in sarg.conf file:
566 TAG: datafile file
567 TAG: datafile_delimiter ";"
568 TAG: datafile_fields all
569 Added: logic to detect a broken record in access.log file
570 and ignore it.
571 Added: now you can select the records to be processed by
572 week and/or time using these tags in sarg.conf file:
573 TAG: weekdays
574 TAG: hours
575 Thanks to Robert Tiismus from Institute of Physics,
576 University of Tartu, Estonia.
577 <robert@fi.tartu.ee>, and for the repday.c
578 improvements.
579
580 Apr/03/2002: - bug fixed: cannot create temporary file when url contain '/'
581 and using long_url
582 Thanks to Enrico Sorge <enrico.sorge@activevr.it>
583
584 Dez/10/2001: - Added: sarg now shows statistics when reading the log file
585 if running with -x option
586
587 Dez/05/2001: - bug fixed: - loop process when using "tmp" chars in usernames
588 Thanks to Jasper vd Heijden <extern@midkemia.nl>
589 new tag added: show_successful_message yes
590 Show "Successful report generated on dir" message at end of process.
591 Requested by: Wendell Schubert <wendell@webeworld.com>
592 Mauricio Felizardo dos Santos <mfelizardo@ansett.com.br>
593 bug fixed: core dump when removing auth_failures report from
594 report_type tag.
595 Thanks to Leonardo Rodrigues <coelho@persogo.com.br>
596 bug fixed: core dump with a big number of users.
597 Thanks to Zverev, Alexandr V. <AVZverev@rtc.tnk.ru>
598 new tags added: topuser_fields
599 topuser_num
600 Now you can choose which fields must be in Topuser report and how many users.
601 Requested by Hidde Beumer <Hidde.Beumer@cmg.nl>
602 bug fixed: auth_failures report missing
603 Thanks to Clary Harridge <clary@csee.uq.edu.au>
604 Polish language added by Wszebor Boksa <Wszebor_Boksa@koncept.pl>
605 Thank you.
606 Romanian language added by Adi Cretu <adi@usv.ro>
607 Thank you.
608
609 Jul/03/2001: - new report added: site/user/date/time
610 Now report_type tag has the following default setup:
611 report_type topsites sites_users date_time denied auth_failures site_user_date_time
612 - bug fixed - error when using squid-ntlm authenticator (domain\user)
613 Thanks to Jakob Curdes <jc@info-systems.de>
614 - ignoring changes in report_type tag
615 - Site&Users report with users shifted down one row.
616 Thanks to Jason Urkow <jaque@telusplanet.net>
617 - some temporary files not removed.
618 - site/user/date/time report without </table> and </html>
619
620 May/30/2001: - bug fixed: - user table garbage
621 - chmod 644 removed from makefile
622 - ignoring first user in usertable
623 - ignoring users names with dots (".")
624 Thanks to Daniel Malmgren <daniel@leeloo.lund.se>
625 - same values for connect and bytes fields in reports on Solaris 8
626 Thanks to Craig Brockmeier <craig@ppco.com>
627 New tag added: user_invalid_char "&/"
628 To avoid core dumps, records that contain invalid characters
629 in userid will be ignored by Sarg.
630 New tag added: privacy yes|no
631 privacy_string "***.***.***.***"
632 privacy_string_color blue
633 In some countries the sysadm cannot see the visited sites by a restrictive law.
634 Using privacy yes the visited url will be changed by privacy_string and
635 the link will be removed from reports.
636 Requested by Diaolin <diaolin@diaolin.com> (Natali Giuliano)
637 New tag added: include_users "user1:user2:...:usern"
638 Reports will be generated only for listed users.
639 exclude_string "string1:string2:...:stringn"
640 Records from access.log file that contain one of listed strings will be ignored.
641 Requested by Michael Koptyaev <mk@aney.ru>
642
643
644 Apr/02/2001: - implementation of --enable-bindir and --enable-sysconfdir in configure script.
645 Thanks to Sergei Dushenkov <dusha@dnttm.ru>
646 - bug fixed: getword excessive long string detection function fixed.
647 Thanks to Junghausz Norbert <nigga@nigga.hu>
648 - bug fixed: wrong charset for windows-1251 and koi8 Russian languages.
649 Thanks to Alexey Zhigayev <murphy@fio.samara.ru>
650 - bug fixed: - Help page (-h) is empty because at start (log.c) program doesn't
651 load definitions to text[][] array.
652 - Definitions for Russian language doesn't have last 2 lines.
653 - Definitions of Charset field for Russian language is not so correct.
654 Better is 'windows-1251' or 'koi8-r'
655 - I think in topuser.c the definition of wheader[] is too short for words
656 on some languages
657 - Initialization and use of variables TopuserSortField and
658 TopuserSortOrder is mismatch
659 Thanks to Alex Voronin <al_vg@mail.ru>
660 - bug fixed: core dump with big user table.
661 Thanks to Jorge Cuellar Martinez <jorge.cuellar@sat.gob.mx>
662 - Latvian languages by Juris Valdovskis <juris@auce.lv>
663 Thank you
664
665 Mar/22/2001: - Now the user can choose the language using the language TAG in /usr/local/sarg/sarg.conf file.
666 There is no more --enable-language in configure script.
667 - New report added: Authentication Failures
668 Requested by Sergei Dushenkov <dusha@dnttm.ru>
669 - NONE/400 (bad request) is excluded by default (/usr/local/sarg/exclude_codes)
670 - Now sarg support big numbers (64 bits) in any platform.
671 - Date/Time report now use bytes or elapsed time as specified in date_time_by tag in sarg.conf
672 Requested by Inters <inters@mailbox.riga.lv>
673 - bug fixed: sites&users report sorted on the User field rather than the Site field
674 Thanks to Simon Bryan <sbryan@olmc.nsw.edu.au>
675 - sites&users report was changed.
676 - Russian_windows125 language fixed.
677 Thanks to Dima I. Allaverdov <allav@ur.rags.ru> (rasa)
678 - bug fixed: getconf was catching a wrong value in replace_index tag
679 Thanks to vrush_22@softhome.net
680 - bug fixed: per_user_limit file with duplicate users.
681 - Russian languages fixed by Nikolai V. Ivanyushin <koko@infocenter.bryansk.ru>. Thank you.
682 - charset TAG added to sarg.conf file. The following charsets are available:
683 Latin1 (West European), Latin2 (East European), Latin3 (South European)
684 Latin4 (North European), Cyrillic, Arabic, Greek, Hebrew
685 Latin5 (Turkish), Latin6 (Nordic)
686 Requested by Nikolai V. Ivanyushin <koko@infocenter.bryansk.ru>
687 - configure now accept only two options:
688 --enable-bindir - where sarg binary will be saved
689 --enable-sysconfdir - where the configuration directory is
690
691 Mar/09/2001: Sqmgrlog has gained a new name: SARG - Squid Analysis Report Generator.
692 Many people have asked me about why sqmgrlog. I really don�t know.
693 No inspiration I think.
694 SARG was suggested by an user from Philippines, but, I lost his email
695 and don�t remember his name.
696
697 Thank you anyway.
698
699
700
701 sqmgrlog ChangeLog
702
703 Feb/06/2001: Version 3.0 released:
704 - Denied report added.
705 Request by Jason Staudenmayer <JasonS@NJAQUARIUM.ORG>
706 - User table added. You can override your userid or IP Address with
707 a real user name.
708 TAG usertab added to sqmgrlog.conf
709 - Now you can have the long url in reports
710 TAG long_url added to sqmgrlog.conf
711 - Now you can choose the report types
712 TAG report_type added to sqmgrlog.conf
713 - sqmgrlog.conf file now will be in 644 mod.
714 Request by Michail Vidiassov <master@iaas.msu.ru>
715 - sqmgrlog coredumps if there is a very long line in the config file.
716 Thank you to Michail Vidiassov <master@iaas.msu.ru>
717 - Url parser changed to get connect records from a better way
718 Thanks to Sergey Erokhin <esl@vechnost.com>
719 - Michail Vidiassov <master@iaas.msu.ru> made gcc -Wall ... happy on FreeBSD 4.1
720 Thank you
721 - Russian_Koi8 language fixed by
722 Andrew Okhmat <andy@crgu.com>. Thank you.
723 Maks Nefedchenko <maks@viaduk.net>. Thank you.
724 - Russian and Bulgarian language fixed by
725 Nikolai V. Ivanyushin <koko@infocenter.bryansk.ru>
726
727
728
729 Nov/09/2000: Two patches form Brad Guillory <proxyadm@baileylink.net> added:
730 1. max-elapsed tag added to sqmgrlog.conf file:
731 # TAG: max_elapsed milliseconds
732 # If elapsed time is recorded in log is greater than max_elapsed use 0 for elapsed time.
733 # Use 0 for no checking
734 #
735 #max_elapsed 0
736 # 8 Hours
737 max_elapsed 28800000
738 2. day report (the one that looks like a calendar) changed:
739 Every minute that a request is logged your time is incremented by the smaller
740 of 1 minute or the total time for the requests.
741
742 Thank you Brad. Brad Guillory is the newest sqmgrlog contributor.
743
744 Changed: sort now compare according to arithmetic value.
745
746 Jul/11/2000: Dutch language fixed by Pieter Kooistra <pkooistra@hr.nl>
747 Thank you.
748 Changed: Russian_koi8 changed to Russian_Koi8.
749 Thank you to Eugene AKA Kevin Kevin <kevin@id.ru>
750 Slightly changed Czech language
751 Added: TAG: replace_index
752 Replace "index.html" in the main index file with this string
753 Vladimir Smelhaus <smelhaus@atlas.cz>
754 Bug fixed: For some reason, Squid occasionally logs a blank line. Running sqmgrlog
755 against a log containing a blank line causes sqmgrlog to take 99+% CPU
756 Thanks to Giese, Bill <bill@gieses.com>
757 Added: now every squid code that contain the MISS word will be counted as out cache.
758 Thanks to Kostya Panov <twin@beep.ru>
759
760 Jun/09/2000: Bug fixed: abnormal end if userid contain ';'
761 Thanks to Victor Feoktistov <feoktist@triniti.ru>
762 Japanese language fixed by
763 Akira Kitamura <click@anet.ne.jp> Takamatsu-City Kagawa Japan
764 Bug fixed: Wrong date when setting date_format u in sqmgrlog.conf file
765 Thanks to Dale Perkel <dale@think.co.za, Nuno Almeida <nalm@vanguarda.com>,
766 Marcio Rodrigo Bordignon <mrbordignon@uol.com.br>
767
768 Mar/15/2000: Japanese language added by
769 Akira Kitamura <click@anet.ne.jp> Takamatsu-City Kagawa Japan
770 Thank you.
771 Serbian language added by
772 Radovan Drobnjakovic <admin.rts@rts.co.yu>
773 Thank you.
774 Bug fixed: wrong sort field when lower case used in
775 sort tags.
776 Thanks to Scott Larsen <slarsen@cascorp.com>
777 and to WOLETZ, Dusan <woletz@globtel.sk>
778 Abuse report removed.
779 Changed: report1_sort_field TAG in sqmgrlog.conf
780 changed to topuser_sort_field
781 Changed: report2_sort_field TAG in sqmgrlog.conf
782 changed to user_sort_field
783 Added: topsites sort field options added:
784 # TAG: topsites_sort_order CONNECT|BYTES A|D
785 # Sort for topsites report, where A=Ascendant, D=Descendant
786 #
787 #topsite_sort_oder CONNECT D
788 Implementation requested by
789 Michael G. Koch <Michael.G.Koch@globalknowledge.de>
790
791 Feb/26/2000: Bulgarian-windows1251 language added by
792 Ivan Minchev <vanko@uni-svishtov.bg>.
793 Thank you.
794 French language updated by
795 Olivier Rousselot <olivier.rousselot@ssti.fr>
796 Thank you.
797
798 Feb/15/2000: SmarfFilter report added.
799 Implementation requested by Andrew Bradshaw <andyb@excite.co.uk>
800 Bug fixed: files created with 09Feb2000-09022000 instead 09Feb2000-09Feb2000
801 Thanks to Andy Parfenov <andy@nursat.net>
802 Changed: ignore records with HTTP/0.0 string.
803 Implementation requested by Bernd Kossmann <bko@shd.de>
804 Changed: some code added to ignore broken records in access.log file
805 Bug fixed: removing old file with lastlog dont work.
806 Thanks to Evren Yurtesen <yurtesen@ispro.net.tr>
807
808 Jan/20/2000: Indonesian language added by V Gatut Harijoso <gatut@student.unpar.ac.id>
809 Thank you.
810 Fixed: change in conf.h to compile on OpenBSD 2.6 system.
811 Thanks to Kenneth Ingham <ingham@i-pi.com>
812 Fixed: small bug, which fills the "periodo" with
813 "01Jan2000-20000101" instead of "01Jan2000-01Jan2000".
814 Thanks to Schlosser, Carsten ECOFIS <c.schlosser@ecofis.de>
815 Fixed: After calling system function malloc, variable excludecode
816 have some symbols inside (excludecode wasn't zeroed).
817 Thanks to Andrew Katkov <askat@crimea.net>
818
819 Dec/29/1999: Czech language added by Milos Prudek <prudek@nembv.cz>
820 Thank you.
821 Russian-windows1251 language added by Dima I. Allaverdov <allav@ur.rags.ru>
822 Thank you.
823 Changed: Russian language changed to Russian_koi8 language.
824 Bug fixed: Sites&Users report dont resolve ip address.
825 Thanks to Pavel Jezek <Pavel.Jezek@i.cz>
826
827 Nov/29/1999: Bug fixed: DENIED word translated to another language never printed.
828 Thanks to Rodolphe SIBERT <rsi@kyxar.fr>
829 New report added: Sites & Users
830 Implementation requested by Rodolphe SIBERT <rsi@kyxar.fr>
831 Added: The date format now also has the option "w" for week.
832 The report is then 1999.47-1999.47 for instance.
833 Implemented by Seth Mos <stimpy@stimpy.multiweb.nl>, thank you for the patch.
834 Dutch language added by Seth Mos <stimpy@stimpy.multiweb.nl>
835 Thank you.
836 Added: new tag on sqmgrlog.conf, named user_ip, for setting a system wire -p, use ip address
837 instead userid.
838 Implemented by Carlo Marcelo Arenas Belon <carenas@chasqui.lared.net.pe>
839 Thank you for the patch.
840 Added: new tag on sqmgrlog.conf, exclude_codes pointing to a file with codes to be
841 ignored by sqmgrlog. Eg.: NONE/400
842 Implementation asked by Doug Burks <DBurks@Augserv.com>
843
844 Sep/28/1999: Bug fixed: -split and -convert dont work with multiples -l options.
845 Thanks to G. Kelana Sudibyo" <kelana@inn.bppt.go.id>
846 Bug fixed: Bytes and Average corrupted in index.html after second execution.
847 Thanks to Rob Glasser <orso@onelist.com>
848
849 Sep/13/1999: Bug fixed: get wrong access.log file when using access_log in sqmgrlog.conf file.
850 Thanks to Michael G. Koch <Michael.G.Koch@globalknowledge.de>
851
852 Sep/10/1999: Spanish language added by Leonardo A. D'Angelo <ldangelo@san-cayetano.com>
853 Thank you.
854 New report added: topsites. This report show the top n sites accessed.
855 You can set the top num sites in topuser_num tag in sqmgrlog.conf file.
856 Bug fixed: wrong userid when using Samba authenticator.
857 Thanks to klaubert@bcb.gov.br (Klaubert Herr da Silveira)
858 Changed: -v option removed. No more support for Squid-1 log format.
859 Thanks to Nik Oxley <nik.oxley@iholland.co.uk>
860
861 Aug/18/1999: New fields added to sqmgrlog.conf:
862 - lastlog n
863 With lastlog you can tell to sqmgrlog to remove old reports files.
864 Usage: lastlog 0 - no remove nothing
865 lastlog 10 - maintain only the last 10 reports
866 Implementation requested by Evren Yurtesen <yurtesen@ispro.net.tr>
867 Thank you for your help.
868 - remove_temp_files yes|no
869 Remove temporary files: geral, usuarios, top, periodo from root report directory.
870 Implementation requested by Fred Pacquier <fredp@dial.oleane.com>
871 - index yes|no|only
872 Usage: index yes - will generate the main index.html in reports
873 index no - dont generate the main index.html in reports
874 index only - generate only the main index.html in reports
875 Implementation asked by Fred Pacquier <fredp@dial.oleane.com>
876 - overwrite_report yes|no
877 If yes and the report already exist for that date, the reports will be overwritten.
878 If no and the report already exist, that report will be renamed to filename.n, filename.n+1
879 Implementation requested by Eugeny Kuzakov <CoreDumped@CoreDumped.null.ru>
880 - records_without_userid ignore|ip|everybody
881 What can I do with records without user id (no authentication) in access.log file ?
882 ignore - This record will be ignored.
883 ip - Use ip address instead. (default)
884 everybody - Use "everybody" instead.
885 - use_comma
886 Use comma instead point in reports.
887 Eg.: use_comma yes => 23,450,110
888 use_comma no => 23.450.110
889 - mail_utility mail|mailx
890 Which mail command must I use to send reports ?
891
892 Added: now every squid code that contain the MISS word will be counted as out cache.
893 Implementation requested by Eugeny Kuzakov <CoreDumped@CoreDumped.null.ru>
894 Thank you for your help and for share your FreeBSD with me.
895 Changed: the field url was changed to 8192 bytes to support big urls.
896 Thanks to Eugeny Kuzakov <CoreDumped@CoreDumped.null.ru>
897 Changed: the header "TIME SPENT" changed to "USED TIME" in topuser report.
898 Changed: no more nouser will be in reports but IP address instead.
899 Changed: no more squid 1 log format supported.
900 Bug fixed: wrong reports when using common log format (emulate_http on).
901 Thanks to Patrick LIN <patrickl@cst.ca>
902
903 Aug/06/1999: French language added by Fred Pacquier <fredp@dial.oleane.com>
904 Thank you
905 Bug fixed: negative percentage in IN-CACHE-OUT.
906 Thanks to brad@baileylink.net
907 Bug fixed: wrong directory name created when using -g e and -d
908 Thanks to Fred Pacquier <fredp@dial.oleane.com>
909 Changed: atol use to get total bytes changed to atoll.
910 Thanks to brad@baileylink.net for the patch.
911 Changed: now use ',' as separator instead '.' when using US date (-g u)
912 Implementations requested by brad@baileylink.net
913 Changed: added -convert and -split to usage help (-h)
914 new messages added to easy translation.
915 Implementations requested by Fred Pacquier <fredp@dial.oleane.com>
916
917 Jul/29/1999: Changed: convert userid to lowercase to disable username case-sensitivity
918 when using auth_smb.
919 Implementations requested by Doug Burks <DBurks@Augserv.com>
920 Changed: the sqmgrlog.conf now installs into /usr/local/etc
921 Implementations requested by Daniel L Sjvsvdrd <daniel.sjosvard@paals.se>
922
923 Jul/06/1999: Y2K bug fixes.
924 Thanks to askat@crimea.net (JSC CRELCOM)
925 Bug fixed: special character in userid cause core dump.
926 Thanks to Rick_Barzilli@xircom.com
927 Splitlog function added: -split will split the log file by date in -d parameter.
928 Eg.: sqmgrlog -split -d 01/07/1999-02/07/1999 [-convert] [-g e]
929
930 Jun/14/1999: German language added by Andreas Piesk <a.piesk@gmx.net>
931 Thank you
932 Some minor changes made by Andreas Piesk, thanks for the patches.
933
934 Jun/09/1999: Bug fixed: to send reports via mail, use mail instead mailx in FreeBSD.
935 Thanks to Evren Yurtesen <yurtesen@ispro.net.tr> to share your FreeBSD with me.
936 Bug fixed: wrong userid when using smb_auth authenticator.
937 The userid will be changed from NTDOMAIN\username to NTDOMAIN.username.
938 Thanks to Jouko Ylikulju <Jouko.Ylikulju@pkcables.com>
939
940 Jun/04/1999: Y2K compliance implemented.
941 Bug fixed: wrong report created when using common log format.
942 Thanks to Carlos Santillana <Carlos@los-fresnos-cons.k12.tx.us>
943 Bug fixed: wrong fopen with "rt", must be "r".
944 Thanks to Wayne Bastow <wbastow@ccahs.health.nsw.gov.au>
945
946 May/31/1999: Turkish language added by Evren Yurtesen <yurtesen@ispro.net.tr>
947 Thank you
948 Bug fixed: users in exclude_users file were not removed from reports.
949 Thanks to Arthur S. Petrossian <arthur@ipia.sci.am>
950 Thanks to Evren Yurtesen <yurtesen@ispro.net.tr>
951 Bug fixed: core dump when using output_email parm and mailx not installed.
952 Thanks to Evren Yurtesen <yurtesen@ispro.net.tr>
953 Thanks to Evren Yurtesen <yurtesen@ispro.net.tr> to share your FreeBSD with me.
954
955 May/20/1999: New report field added: IN CACHE and OUT CACHE.
956 This field show how many bytes (percent) was retrieved from the cache.
957 Implementations requested by Arthur S. Petrossian <arthur@ipia.sci.am>
958
959 May/14/1999: Bug fixed. Abnormal End when using -i option
960 Thanks to Carlos Canau <canau@ionia.EUnet.pt> for the patch.
961 Bug fixed. Sqmgrlog freeze if some records are broken in access.log file.
962 Thanks to Rick_Barzilli@xircom.com
963 Bugfix that prevents sqmgrlog from freezing up if a log file has "holes" (sequences of zeros)
964 (caused by filesystem crash).
965 Thanks to drdivano@mail.axon.ru for the patch.
966
967 Apr/14/1999: Per user limit added.
968 If the user exceed the limit, userid will be saved in a file that can
969 be used in squid acl.
970 Field per_user_limit added to sqmgrlog.conf: per_user_limit file limit
971 file : where userid must be saved
972 limit: in MB Eg. 40 will limit in 40 MB.
973 Implementation requested by Csaba Kabai <ckabai@icnpharm.com>
974
975 Mar/11/1999: Field exclude_users now accept indexonly to create only index.html report.
976 Implementation requested by Hanni Daniel <daniel.haenni@softlab.ch>
977 Bug fixed for FreeBSD. Missing \n on topuser.
978 Thanks to Andrew <andrew@extrim.ru> for share your FreeBSD-3.1
979 Some minors fixes and changes in html layout.
980 Thanks to Andrew Barnes <a.barnes@kaldor.com.au>
981
982 Mar/03/1999: Bug fixed. Wrong href link if userid in format userid.name...
983 Thanks to Manon Goo <manon@manon.de>
984 Some changes on variable translations.
985 Thanks to Matteo Colombo <matteo@calcol.it>
986 Russian language (KOI8-R) added by Palamarchuk Eugen <eugen@cit.od.ukrtel.net>
987 Thank you
988 Field exclude_users added to sqmgrlog.conf.
989 Users within the file will be excluded from reports.
990 Implementation requested by Hanni Daniel <daniel.haenni@softlab.ch>
991
992 Feb/26/1999: New date/time report added.
993 Look at http://www.orso.x5.net/squid-reports/1999Feb01-1999Feb08/duser24.html
994 -d option now accept from-until (dd/mm/yy-dd/mm/yy) dates.
995 Requested by Eric V. Pino <ericvp@roadrunner.com.ph>
996
997 Feb/10/1999: Italian language added by Matteo Colombo <matteo@calcol.it>
998 Thank you.
999 -convert option added. Convert the access.log file to a legible date
1000 and time format. May be used with -l and/or -g options.
1001
1002 Feb/05/1999: Field date_format added to sqmgrlog.conf.
1003 date_format u: reports with USA format mm/dd/yy
1004 date_format e: reports with Europe format dd/mm/yy
1005 Implementation requested by Matteo Colombo <matteo@calcol.it>
1006 Bug fixed: temporary file cannot be created if not run in root.
1007 Thanks to Carlos Canau <canau@ionia.EUnet.pt> for the patch.
1008 Changes from Tony Lorime <alorimes@csc.com>: use atoll instead atol in Solaris
1009 : ignore .htaccess when selecting files
1010 Thank you.
1011
1012 Dec/21/1998: -b option added. Generate useragent report.
1013 field useragent_log added to sqmgrlog.conf
1014 Implementation requested by Alp <support@x5.net>
1015 -j option added. Generate a kind of abuse report.
1016 Implementation requested by Alp <support@x5.net>
1017 To use this feature you must apply a patch (http://www.orso.x5.net/patches) on Squid.
1018 -c exclude option improved. Now you can exclude B classes
1019 Implementation requested by Yin Jun <yinj@mars.ahu.edu.cn>
1020 Bug fixed for Solaris. Must user -lsocket and -lnsl to resolve names.
1021 Thanks to Ryan Roehrich <ryanscott@mindless.com>
1022
1023 Dec/11/1998: Bug fixed for long long int in Alpha Digital
1024 Thanks to Ilya V. Komarov <mur@mur.lynx.ru> for share your Digital server.
1025
1026 Dec/10/1998: Version 2.2 released
1027 -n option added. Resolve domain name for reports with IP Address.
1028 Field resolve_ip added to sqmgrlog.conf
1029 Sort report by header fields implemented
1030 Fields report1_sort_field and report2_sort_field added to sqmgrlog.conf
1031 -f option added. Allow config file override
1032 Exclude hosts implemented
1033 Field exclude_hosts file added to sqmgrlog.conf. Exclude ips, names, subnets
1034 from reports.
1035 Implementations requested by Arthur S. Petrossian <arthur@ipia.sci.am>
1036
1037 Dec/07/1998: Version 2.1 released
1038 sqmgrlog now can read log file in gzip or compress format.
1039 Implementation requested by Alp <support@x5.net>
1040
1041 Nov/09/1998: Version 2.0 released
1042 -p option added. Allow redirect output report to email address.
1043 sqmgrlog.conf with colors, headers, title, font size, background color, text color,
1044 background image, font face, etc... added.
1045 Reports will be generated only for users in passwd file (tag password in sqmgrlog.conf).
1046 Many changes in html output layout.
1047 Thanks to Alp <support@x5.net>
1048
1049 Oct/19/1998: Bug fixed by Maxim Berlin <mak@unesco.mitht.rssi.ru> for long long int in FreeBsd.
1050 Many thanks.
1051 Thanks to Ilya V. Komarov <mur@mur.lynx.ru> to share your FreeBSD 3.0 server to help on fixing.
1052
1053 Sep/28/1998: Bug fixed for log with emulate http on (Squid 1.2.beta)
1054 Thanks to Alp <support@x5.net>
1055 -p option added. Generated reports with IP Address instead Userid.
1056 Use this option if you do not use Proxy authentication on Squid.
1057 Implementation requested by Szalma Zoltan <zszalma@file.matav.hu>
1058
1059 Aug/11/1998: Bug fixed for memory slack.
1060 Thanks to kevin@mcpeake.net
1061 Jose Luiz <jluiz@projesom.com.br>
1062 Patrick Darden <darden@server2.armc.org>
1063 Steve Chan <Steve.Chan@lucasfilm.com>
1064
1065 Jul/07/1998: Spent time added for native Squid log format (emulate_httpd_log off).
1066 Connect added.
1067 Layout change in html reports.
1068
1069 Jun/02/1998: -o option added. Allow output dir override.
1070 Implemented index.html on root output dir.
1071 Implemented auto rename if output dir already exist.
1072 bug fixed, link error if user change output dir in conf.h
1073 Thanks to Alp <cybergulf@cybergulf.net>
1074
1075 May/28/1998: -v option added. Allow Squid version override.
1076
1077 May/28/1998: Bug fixed in common log format
1078 Thanks to Tony Lorimer <tlorimer@health.csc.com.au>
1079 Alp <cybergulf@cybergulf.net>
1080 Carlos Santillana <carlos@los-fresnos-cons.k12.tx.us
1081
1082 May/21/1998: Implemented Squid version verification because common log
1083 from 1.1 differ from 1.2 version.
1084 -i option added (report by user and IP address)
1085
1086 May/19/1998: configure script implemented.
1087
1088 May/18/1998: Implemented auto log format recognize (Squid and Common log)
1089
1090 Apr/15/1998: bug fixed. Some garbage on period.
1091 Thanks to Lee Shakespeare <lee@webfoundry.co.uk>
1092
1093 Apr/15/1998: -z option added (debug)
1094
1095 Apr/07/1998: top.html changed to index.html
1096
1097 Mar/31/1998: index.html added
1098
1099 Mar/25/1998: sqmgrlog was created