You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
5.1 KiB
104 lines
5.1 KiB
#!/usr/bin/perl -wT
|
|
|
|
# vim: ft=xml ts=4 sw=4 et:
|
|
#----------------------------------------------------------------------
|
|
# heading : Collaboration
|
|
# description : Accounts Expiration
|
|
# navigation : 2000 2100
|
|
#----------------------------------------------------------------------
|
|
#----------------------------------------------------------------------
|
|
# Copyright (C) 2011-2014 Firewall-Services
|
|
# daniel@firewall-services.com
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
#
|
|
# Technical support for this program is available from Mitel Networks
|
|
# Please visit our web site www.mitel.com/sme/ for details.
|
|
#----------------------------------------------------------------------
|
|
|
|
use strict;
|
|
use esmith::FormMagick::Panel::expireaccounts;
|
|
|
|
my $fm = esmith::FormMagick::Panel::expireaccounts->new();
|
|
|
|
$fm->display();
|
|
|
|
__DATA__
|
|
<form title="FORM_TITLE" header="/etc/e-smith/web/common/head.tmpl" footer="/etc/e-smith/web/common/foot.tmpl">
|
|
<page name="First" pre-event="print_status_message()">
|
|
<description>DESC_FIRSTPAGE</description>
|
|
<subroutine src="print_custom_button('DESC_GENERAL_CONFIG_BUTTON','General')"/>
|
|
<subroutine src="print_section_bar()" />
|
|
<subroutine src="print_user_table()" />
|
|
</page>
|
|
<page name="General" pre-event="turn_off_buttons()" post-event="modify_config()">
|
|
<description>DESC_MODIFY_CONFIG_PAGE</description>
|
|
<field type="text" size="10" id="WarningDelay" validation="is_positive_int" value="get_conf_prop('WarningDelay')">
|
|
<description>DESC_WARNING_DELAY</description>
|
|
<label>LABEL_WARNING_DELAY</label>
|
|
</field>
|
|
<field type="text" size="10" id="DaysBetweenWarnings" validation="is_positive_int" value="get_conf_prop('DaysBetweenWarnings')">
|
|
<description>DESC_DAYS_BETWEEN_WARNINGS</description>
|
|
<label>LABEL_DAYS_BETWEEN_WARNINGS</label>
|
|
</field>
|
|
<field type="text" size="10" id="WarningRecipient" validation="is_email_or_empty" value="get_conf_prop('WarningRecipient')">
|
|
<description>DESC_WARNING_RECIPIENT</description>
|
|
<label>LABEL_WARNING_RECIPIENT</label>
|
|
</field>
|
|
<subroutine src="print_save_button()" />
|
|
</page>
|
|
<page name="ModifyLocked" pre-event="turn_off_buttons()" post-event="modify_user()">
|
|
<subroutine src="print_account_name()" />
|
|
<field type="select" id="ExpireAutoReply" value="get_user_bool('ExpireAutoReply')" options="'enabled' => 'ENABLED', 'disabled' => 'DISABLED'">
|
|
<description>DESC_AUTO_REPLY</description>
|
|
<label>LABEL_AUTO_REPLY</label>
|
|
</field>
|
|
<field type="select"
|
|
id="ExpireDeleteAfterLock"
|
|
value="get_user_prop('ExpireDeleteAfterLock')"
|
|
options="get_delete_options()">
|
|
<description>DESC_DELETE_AFTER_LOCK</description>
|
|
<label>LABEL_DELETE_AFTER_LOCK</label>
|
|
</field>
|
|
<subroutine src="print_save_button()" />
|
|
</page>
|
|
<page name="ModifyActive" pre-event="turn_off_buttons()" post-event="modify_user()">
|
|
<subroutine src="print_account_name()" />
|
|
<field type="text" size="30" id="ExpireLockOn" validation="is_future_date_or_empty" value="get_user_prop('ExpireLockOn')">
|
|
<description>DESC_LOCK_ON_DATE</description>
|
|
<label>LABEL_LOCK_ON_DATE</label>
|
|
</field>
|
|
<field type="select" id="ExpireWarnUser" value="get_user_bool('ExpireWarnUser')" options="'enabled' => 'ENABLED', 'disabled' => 'DISABLED'">
|
|
<description>DESC_WARN_USER</description>
|
|
<label>LABEL_WARN_USER</label>
|
|
</field>
|
|
<field type="text" size="30" id="ExpireForwardAfterLock" validation="is_email_or_empty" value="get_user_prop('ExpireForwardAfterLock')">
|
|
<description>DESC_FORWARD_AFTER_LOCK</description>
|
|
<label>LABEL_FORWARD_AFTER_LOCK</label>
|
|
</field>
|
|
<field type="select" id="ExpireAutoReply" value="get_user_bool('ExpireAutoReply')" options="'enabled' => 'ENABLED', 'disabled' => 'DISABLED'">
|
|
<description>DESC_AUTO_REPLY</description>
|
|
<label>LABEL_AUTO_REPLY</label>
|
|
</field>
|
|
<field type="select"
|
|
id="ExpireDeleteAfterLock"
|
|
value="get_user_prop('ExpireDeleteAfterLock')"
|
|
options="get_delete_options()">
|
|
<description>DESC_DELETE_AFTER_LOCK</description>
|
|
<label>LABEL_DELETE_AFTER_LOCK</label>
|
|
</field>
|
|
<subroutine src="print_save_button()" />
|
|
</page>
|
|
</form>
|
|
|