The ACCOUNTING FILES plugin gives you the ability to extract the useful/custom information from the outbound traffic and manage the 'storage/archiving' of the three main types 'Delivered/Deferred/Bounce'.
To enable the plugin you must add the name of the plugin "accounting-files" as a separate line inside the plugins file located inside config directory (config/plugins
).
You should also place the config file "accounting_files.ini" inside the config directory (More details about the content of this file in the next section).
The config file "accounting_files.ini" contains several parameters that gives you the possibility to customize your plugin.
1. Parameters of the information Log
:
/accounting_files
folder inside current HARAKA installation directory). tsv
).path
.fields: The list of fields you want to retrieve for every type (default: Check the list below).
d
for delivered, df
for deferred, b
for bounce)RCPT TO
parameter).HELO/EHLO
command).FIELD
should be replaced by the name of the custom field you wish to log).INFO: List of the default fields for every type :
2. Parameters of the Archiving mode
:
false
).archive
folder inside every type).86400
second "1 day").200
Megabyte).Once installed, the plugin will wait for the start of HARAKA server to be initialized, by reading the config file and checking if the necessary directories are already exist.
There's two cases, if the plugin was already enabled it will create just the files at the start, if it's enabled for the first time, it will setUp the environment by triggering the generation of the all necessary directories and files.
1. Directories generation:
The first generated directory is the main one that will contain all the plugin content, this directory will be created based on the value of the passed parameter path
. Inside the previous generated directory the plugin will create a separated directory for every type of the three tracked types 'Delivered/Deferred/Bounce' (The name of these directories will be retrieved from the config parameter location
).
If the Archiving mode is enabled, the plugin will add an extra directory for the archiving purpose inside the directory of every type (The name of the directories will be the value of config parameter archive_to
).
2. Files generation:
The plugin will generate three separated main files (one file for every type) where the retrieved custom information from the outbound traffics will be stored, every file of them will be located inside the main directory (created previously) of the related type.
The name of the file start by the type 'd/dl/b' followed by the full datetime in the following format (yyyy-mm-dd-HHMMss
) and finally the extension, e.g :
d.2017-06-16-125059.tsv
^ ^^^^^^^^^^^^^^^^^ ^^^
| | |__ Extenstion of the file (retrieved from the config file)
| |____________________ Current datetime in `yyyy-mm-dd-HHMMss` format
|______________________ Type of the file (d:delivered, df:deferred, b:bounce)
Every new file has a header that contain the custom fields passed in the config parameter fields
, those fields are separated by the separator indicated in the config file separator
.
After the initialization the plugin hook the three principal hooks who follows the send_email
:
When the outbound trigger any hook of the three then the plugin will retrieve the necessary fields
based on the received arguments from every hook to construct the entry of the current mail and finally append it to the related file.
When this option is enabled in the config file by setting archiving
parameter to true, the plugin will move all the accounting files to move_to
directory of the three types, using two factors time
and size
:
move_interval
parameter.Size represented by the max_size
parameter.
The plugin will move the files to archive every X second specified in move_interval
OR when the file length reach the max_size
.
The config file it self is required for the plugin, but there's no required parameter since all the parameters has a default value (what mean you can leave it blank).
The plugin will log [INFO] [-] [accounting_files] Plugin is Ready!
in the console when all the directories and files are well generated what mean all goes right.