#!/usr/local/bin/perl # index.cgi # Show fetchmail configurations require './fetchmail-lib.pl'; # Check if fetchmail is installed if (!&has_command($config{'fetchmail_path'})) { &ui_print_header(undef, $text{'index_title'}, "", undef, 1, 1, 0, &help_search_link("fetchmail", "doc", "man", "google")); print "

",&text('index_efetchmail', "$config{'fetchmail_path'}", "$gconfig{'webprefix'}/config.cgi?$module_name"),"

\n"; &ui_print_footer("/", $text{'index'}); exit; } # Get and show the version $ver = &get_fetchmail_version(); &ui_print_header(undef, $text{'index_title'}, "", undef, 1, 1, 0, &help_search_link("fetchmail", "doc", "man", "google"), undef, undef, &text('index_version', $ver)); if ($config{'config_file'}) { # Just read one config file @conf = &parse_config_file($config{'config_file'}); @conf = grep { $_->{'poll'} } @conf; print "",&text('index_file', "$config{'config_file'}"),"

\n"; &show_polls(\@conf, $config{'config_file'}, $config{'daemon_user'}); local @uinfo = getpwnam($config{'daemon_user'}); print &ui_hr(); print "\n"; if (&foreign_installed("cron") && $access{'cron'}) { # Show button to manage cron job print "\n"; print "\n"; print "\n"; } # Show the fetchmail daemon form foreach $pf ($config{'pid_file'}, "$uinfo[7]/.fetchmail.pid", "$uinfo[7]/.fetchmail") { if (open(PID, $pf) && ($line=) && (($pid,$interval) = split(/\s+/, $line)) && $pid && kill(0, $pid)) { $running++; last; } } print "\n"; print "\n"; } else { # daemon isn't running - offer to start it print "\n"; print "\n"; print "\n"; } print "
$text{'index_crondesc'}
\n"; if ($running) { # daemon is running - offer to stop it print "
\n"; print "
",&text('index_stopmsg', "$config{'daemon_user'}", $interval),"",&text('index_startmsg', "", "$config{'daemon_user'}"),"
\n"; } else { # Build a list of users with fetchmail configurations $ucount = 0; setpwent(); while(@uinfo = getpwent()) { next if ($donehome{$uinfo[7]}++); next if (!&can_edit_user($uinfo[0])); local @conf = &parse_config_file("$uinfo[7]/.fetchmailrc"); @conf = grep { $_->{'poll'} } @conf; if (@conf) { push(@users, [ \@conf, [ @uinfo ] ]); } $ucount++; last if ($config{'max_users'} && $ucount > $config{'max_users'}); } endpwent() if ($gconfig{'os_type'} ne 'hpux'); if (!@users) { # None found print "
$text{'index_none'}

\n"; } elsif ($config{'max_users'} && $ucount > $config{'max_users'}) { # Show user search form print "$text{'index_toomany'}

\n"; print &ui_form_start("edit_user.cgi"); print "$text{'index_search'}\n"; print &ui_user_textbox("user", undef, 20),"\n"; print &ui_submit($text{'index_show'}),"\n"; print &ui_form_end(); $toomany = 1; } elsif (!$config{'view_mode'}) { # Full details &show_button(); print "\n"; print "\n"; foreach $u (@users) { print "\n"; print "\n"; } print "
$text{'index_user'} $text{'index_conf'}
",&html_escape($u->[1]->[0]), " \n"; &show_polls($u->[0], "$u->[1]->[7]/.fetchmailrc", $u->[1]->[0]); print "
\n"; } else { # Just show usernames print &ui_table_start($text{'index_header'}, "width=100%", 1); $i = 0; foreach $u (@users) { print "\n" if ($i%4 == 0); print "$u->[1]->[0]\n"; print "\n" if ($i%4 == 3); $i++; } print &ui_table_end(); } &show_button() if (!$toomany); if (&foreign_installed("cron") && $access{'cron'}) { # Show button to manage global cron job print &ui_hr(); print &ui_buttons_start(); print &ui_buttons_row("edit_cron.cgi", $text{'index_cron'}, $text{'index_crondesc2'}); print &ui_buttons_end(); } } &ui_print_footer("/", $text{'index'}); sub show_button { if ($access{'mode'} != 3 || !$doneheader) { print "

\n"; print "\n"; print "\n"; print &unix_user_input("user"); print "
\n"; } }