File: dupload.5pod

package info (click to toggle)
dupload 1.16
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 148 kB
  • ctags: 95
  • sloc: perl: 1,457; makefile: 96
file content (89 lines) | stat: -rw-r--r-- 2,175 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
=head1 NAME

dupload.conf - Configuration file for dupload

=head1 DESCRIPTION

The configuration file is rather straight forward perl code as it's
included by the B<dupload> script via C<do $config>.  B<The config file
is read as perl code!>

It contains associative arrays, each indexed by the nickname (see B<--to>
option of B<dupload>), for the following items: 

For examples of the configuration please refer to the global configuration file
F</etc/dupload.conf>.

=over 4

=item B<fqdn> [required]

FQDN of the nickname, the name we try to ftp to;

=item B<method> [optional]

The transfer method, "ftp" is default.  Alternativly you can use
E<quot>scpE<quot>.
For B<scp> no password is required. However, you have to setup the remote
and local host to establish a scp/ssh/slogin connection only using
.shosts/.rhosts or the files in ~/.ssh/.


=item B<login> [optional]

The account name to log into the ftp server, default is 
E<quot>anonymousE<quot>, should work with fire wall logins too;

=item B<incoming> [required]

incoming directory, the directory we try to upload to;

=item B<queuedir> [optional]

the directory we move the uploaded files to (after successful upload to
I<incoming>;

=item B<mailto> [optional]

where to send the announcement about stable/unstable packages;

=item B<mailtx> [optional]

where to send the announcement about experimental packages;

=item B<cc> [optional]

carbon copy address for the announcement;

=item B<fullname> [optional]

your fullname that should appear in the announcement;
(If you leave this empty as well as the B<visibledomain> it
depends on you MTA ... usually the MTA should choose the
fullname from the GCOS field in F</etc/passwd>.)
 

=item B<visibleuser> [optional]

your username that should appear in the announcement, defaults to
I<getlogin()>;

=item B<visiblename> [optional]

the domainname that appears as the part right of the B<@> in the I<from>-part
of the announcement, defaults to the value your local MTA likes;

=back

=head1 LOCATION

The configuration is searched as following:

	/etc/dupload.conf
	~/.dupload.conf
	./dupload.conf

=head1 AUTHOR

Heiko Schlittermann <heiko@lotte.sax.de>