mirror of
https://github.com/webmin/webmin.git
synced 2025-07-21 23:40:34 +00:00
22 lines
266 B
Perl
Executable File
22 lines
266 B
Perl
Executable File
|
|
do 'fetchmail-lib.pl';
|
|
|
|
sub feedback_files
|
|
{
|
|
if ($config{'config_file'}) {
|
|
return ( $config{'config_file'} );
|
|
}
|
|
else {
|
|
local (@rv, @uinfo);
|
|
setpwent();
|
|
while(@uinfo = getpwent()) {
|
|
push(@rv, "$uinfo[7]/.fetchmailrc");
|
|
}
|
|
endpwent();
|
|
return @rv;
|
|
}
|
|
}
|
|
|
|
1;
|
|
|