This file is indexed.

/usr/share/zentyal-samba/sql/samba_virus.sql is in zentyal-samba 2.3.12+quantal1ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

1
2
3
4
5
6
7
8
CREATE TABLE IF NOT EXISTS samba_virus (
    client INT UNSIGNED,
    virus VARCHAR(120),
    filename VARCHAR(120),
    event VARCHAR(16),
    timestamp TIMESTAMP,
    INDEX(timestamp)
) ENGINE = MyISAM;