#!/usr/local/bin/perl # # postfix-module by Guillaume Cottenceau , # for webmin by Jamie Cameron # # Copyright (c) 2000 by Mandrakesoft # # Permission to use, copy, modify, and distribute this software and its # documentation under the terms of the GNU General Public License is hereby # granted. No representations are made about the suitability of this software # for any purpose. It is provided "as is" without express or implied warranty. # See the GNU General Public License for more details. # # # A form for editing address rewriting for Postfix # # << Here are all options seen in Postfix sample-rewrite.cf >> require './postfix-lib.pl'; $access{'address_rewriting'} || &error($text{'address_rewriting_ecannot'}); &ui_print_header(undef, $text{'address_rewriting_title'}, ""); $default = $text{'opts_default'}; $none = $text{'opts_none'}; $no_ = $text{'opts_no'}; print "
\n"; print "\n"; print "\n"; print "
$text{'address_rewriting_title'}
\n"; print "\n"; &option_yesno("allow_percent_hack"); &option_yesno("append_at_myorigin"); print "\n"; print "\n"; &option_yesno("append_dot_mydomain"); &option_yesno("swap_bangpath", 'help'); print "\n"; print "\n"; &option_radios_freefield("empty_address_recipient", 20, $text{'opt_empty_recip_default'}); print "\n"; print "\n"; &option_radios_freefield("masquerade_domains", 35, $none); print "\n"; print "\n"; &option_radios_freefield("masquerade_exceptions", 35, $none); print "\n"; print "

\n"; print "

\n"; &ui_print_footer("", $text{'index_return'});