#!/usr/local/bin/perl # list_relay.cgi # List domains to while relaying is allowed require './sendmail-lib.pl'; $access{'relay'} || &error($text{'relay_ecannot'}); &ui_print_header(undef, $text{'relay_title'}, ""); $conf = &get_sendmailcf(); $ver = &find_type("V", $conf); if ($ver->{'value'} !~ /^(\d+)/ || $1 < 8) { # Only sendmail 8.9 and above supports relay domains (I think) print "",$text{'relay_eversion'},"
\n"; &ui_print_footer("", $text{'index_return'}); exit; } @dlist = &get_file_or_config($conf, "R"); print "
\n"; &ui_print_footer("", $text{'index_return'});