Handle hostnames with upper-case letters
[webmin.git] / fetchmail / feedback_files.pl
1
2 do 'fetchmail-lib.pl';
3
4 sub feedback_files
5 {
6 if ($config{'config_file'}) {
7         return ( $config{'config_file'} );
8         }
9 else {
10         local (@rv, @uinfo);
11         setpwent();
12         while(@uinfo = getpwent()) {
13                 push(@rv, "$uinfo[7]/.fetchmailrc");
14                 }
15         endpwent();
16         return @rv;
17         }
18 }
19
20 1;
21