Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dbx_Pg.pl - github.com/techsneeze/dmarcts-report-parser.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 46bb7f02372b95eadf9b868cf792e6a177615eff (plain)
1
2
3
4
5
6
7
8
9
%dbx = (
	epoch_to_timestamp_fn => 'TO_TIMESTAMP',
	to_hex_string => sub {
		my ($bin) = @_;
		return "'\\x" . unpack("H*", $bin) . "'";
	},
);

1;