add fetchmail.conf.5-opts.adoc

This commit is contained in:
Dietmar Maurer 2018-01-09 12:25:57 +01:00
parent 51ac959227
commit 8538d9a2e7
3 changed files with 62 additions and 0 deletions

View File

@ -0,0 +1,40 @@
`enable`: `<boolean>` ('default =' `0`)::
Flag to enable or disable polling.
`interval`: `<integer> (1 - 2016)` ::
Only check this site every <interval> poll cycles. A poll cycle is 5 minutes.
`keep`: `<boolean>` ('default =' `0`)::
Keep retrieved messages on the remote mailserver.
`pass`: `<string>` ::
The password used tfor server login.
`port`: `<integer> (1 - 65535)` ::
Port number.
`protocol`: `<imap | pop3>` ::
Specify the protocol to use when communicating with the remote mailserver
`server`: `<string>` ::
Server address (IP or DNS name).
`ssl`: `<boolean>` ('default =' `0`)::
Use SSL.
`target`: `(?:|[^\s\/\@]+\@[^\s\/\@]+)` ::
The target email address (where to deliver fetched mails).
`user`: `<string>` ::
The user identification to be used when logging in to the server

16
gen-fetchmail.conf.5-opts.pl Executable file
View File

@ -0,0 +1,16 @@
#!/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);

View File

@ -452,6 +452,12 @@ User Management
TODO
Fetchmail
---------
include::fetchmail.conf.5-opts.adoc[]
ifdef::manvolnum[]
include::pmg-copyright.adoc[]
endif::manvolnum[]