mirror of
https://git.proxmox.com/git/pmg-docs
synced 2025-08-02 22:53:36 +00:00
17 lines
260 B
Perl
Executable File
17 lines
260 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
use lib '.';
|
|
use strict;
|
|
use warnings;
|
|
use PVE::RESTHandler;
|
|
|
|
use Data::Dumper;
|
|
|
|
use PMG::API2::Fetchmail;
|
|
|
|
my $properties = $PMG::API2::Fetchmail::fetchmail_create_properties;
|
|
|
|
print PVE::RESTHandler::dump_properties($properties);
|
|
|
|
exit(0);
|