initial commit of file from CVS for smeserver-expire-accounts on Sat Sep 7 19:52:48 AEST 2024

This commit is contained in:
Trevor Batley
2024-09-07 19:52:48 +10:00
parent fccbe8588b
commit 133c7905f7
77 changed files with 6895 additions and 2 deletions

View File

@@ -0,0 +1 @@
enabled

View File

@@ -0,0 +1 @@
service

View File

@@ -0,0 +1,48 @@
#!/usr/bin/perl -w
use strict;
use esmith::AccountsDB;
use esmith::event;
use DateTime;
my $a = esmith::AccountsDB->open or
die "Could not open AccountsDB\n";
my $event = shift;
my $userName = shift;
my @users;
if (defined $userName){
my $user = $a->get($userName);
die "Account $userName is not a user account; can't update the auto-reply message.\n"
unless $user && $user->prop('type') eq "user";
@users = ($user);
}
else{
@users = ( $a->users );
}
my $now = DateTime->now;
foreach my $user (@users){
my $userName = $user->key;
# Remove user from all its groups
my @groups = $a->user_group_list($userName);
$a->remove_user_from_groups($userName, @groups);
event_signal('group-modify', @groups) if (scalar @groups);
# Set forward if needed
my $fwd = $user->prop('ExpireForwardAfterLock') || '';
if ($fwd ne ''){
$user->set_prop('ForwardAddress', $fwd);
$user->set_prop('EmailForward', 'forward');
}
# Remove expiration settings now that the account is locked
$user->delete_prop('ExpireLockOn');
$user->delete_prop('ExpireLastNotifiedOn');
# Set the expiration date
$user->set_prop('ExpireLockedOn', $now->ymd);
}
exit (0);

View File

@@ -0,0 +1,20 @@
#!/usr/bin/perl -w
use strict;
use esmith::AccountsDB;
use User::pwent;
my $a = esmith::AccountsDB->open || die "Couldn't open the AccountsDB\n";
my $event = $ARGV[0];
my $user = $ARGV[1];
if (!$event){
die "Event must be specified\n";
}
if (!$user){
die "User must be specified\n";
}
my $rec = $a->get($user) || die "user $user not found in AccountsDB\n";
$rec->delete_prop('ExpireLockedOn');

View File

@@ -0,0 +1,48 @@
#!/usr/bin/perl -w
use strict;
use esmith::AccountsDB;
use esmith::templates;
use esmith::util;
use User::pwent;
my $a = esmith::AccountsDB->open or
die "Could not open AccountsDB\n";
my $event = shift;
my $userName = shift;
my @users;
if (defined $userName){
my $user = $a->get($userName);
die "Account $userName is not a user account; can't update the auto-reply message.\n"
unless $user && $user->prop('type') eq "user";
@users = ($user);
}
else{
@users = ( $a->users );
}
foreach my $user (@users){
my $userName = $user->key;
my $home = getpwnam($userName)->dir;
unless (-d $home . '/.lock-auto-reply'){
mkdir $home . '/.lock-auto-reply';
esmith::util::chownFile($userName, $userName, $home . '/.lock-auto-reply');
}
esmith::templates::processTemplate ({
MORE_DATA => { USERNAME => $userName },
TEMPLATE_PATH => "/.lock-auto-reply/message.txt",
TEMPLATE_EXPAND_QUEUE =>
[
"/etc/e-smith/templates-user-custom",
"/etc/e-smith/templates-user",
],
OUTPUT_PREFIX => "$home",
PERMS => 0644,
});
}
exit(0);

View File

@@ -0,0 +1,158 @@
<lexicon lang="bg">
<entry>
<base>Accounts Expiration</base>
<trans>Account expiration</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Account expiration management</trans>
</entry>
<entry>
<base>DESC_FIRSTPAGE</base>
<trans>This page lets you configure user accounts expiration.</trans>
</entry>
<entry>
<base>DESC_GENERAL_CONFIG_BUTTON</base>
<trans>General configuration</trans>
</entry>
<entry>
<base>DESC_MODIFY_CONFIG_PAGE</base>
<trans>The following parameters are global: they affect all users subject to an expiration of their account.</trans>
</entry>
<entry>
<base>DESC_WARNING_DELAY</base>
<trans>This value indicates how many days before the expiry of an account a reminder email will be sent to the administrator</trans>
</entry>
<entry>
<base>LABEL_WARNING_DELAY</base>
<trans>Notification threshold (in days)</trans>
</entry>
<entry>
<base>DESC_DAYS_BETWEEN_WARNINGS</base>
<trans>Several reminders can be sent to the administrator to ensure that no account is locked without being notified. This value determines the number of days between two notifications. For example, if this value is 5, the administrator will receive an alert every five daysi until the account expire.</trans>
</entry>
<entry>
<base>LABEL_DAYS_BETWEEN_WARNINGS</base>
<trans>Delay between two notifications (in days)</trans>
</entry>
<entry>
<base>DESC_WARNING_RECIPIENT</base>
<trans>By default, notifications are sent to the administrator. You can enter an alternative address.</trans>
</entry>
<entry>
<base>LABEL_WARNING_RECIPIENT</base>
<trans>Notifications recipient</trans>
</entry>
<entry>
<base>DESC_WARN_USER</base>
<trans>Should the user be warned when his account is about to expire</trans>
</entry>
<entry>
<base>LABEL_WARN_USER</base>
<trans>Notify user</trans>
</entry>
<entry>
<base>LABEL_USER_ACCOUNT</base>
<trans>User account</trans>
</entry>
<entry>
<base>DESC_LOCK_ON_DATE</base>
<trans>Specify the date on which the account will automatically be locked. The date must be in YYYY-MM-DD format, eg 2018-07-25 for July the 25th 2018. Keep this field blank to disable account expiration.</trans>
</entry>
<entry>
<base>LABEL_LOCK_ON_DATE</base>
<trans>Expiration date</trans>
</entry>
<entry>
<base>DESC_FORWARD_AFTER_LOCK</base>
<trans>You can enter an email address here. If this box is filled, then all the mails to the user will be forwarded to that address from the date the account expires. The forward will only be configured after the expiry.</trans>
</entry>
<entry>
<base>LABEL_FORWARD_AFTER_LOCK</base>
<trans>After expiry, forward email to</trans>
</entry>
<entry>
<base>DESC_AUTO_REPLY</base>
<trans>You can activate an automatic response: from the day the account expires, it is locked but remains valid. If this feature is enabled, email senders to the user's attention will automatically receive a response informing them that the user is no longer active, and asking them to update their address book.</trans>
</entry>
<entry>
<base>LABEL_AUTO_REPLY</base>
<trans>Auto reply</trans>
</entry>
<entry>
<base>DESC_DELETE_AFTER_LOCK</base>
<trans>You can choose to completely delete the account after it expires. Here you select the number of days the account will remain valid (but locked). Beyond this period, the data will be archived and the account deleted. Caution: this is the number of days before the account is deleted starting from the day the account is locked, not starting from today.</trans>
</entry>
<entry>
<base>LABEL_DELETE_AFTER_LOCK</base>
<trans>Delay before deleting the account (in days)</trans>
</entry>
<entry>
<base>NO_USER_ACCOUNTS</base>
<trans>No user account</trans>
</entry>
<entry>
<base>ACTIVE_ACCOUNT</base>
<trans>Account (active)</trans>
</entry>
<entry>
<base>USER_NAME</base>
<trans>Име</trans>
</entry>
<entry>
<base>FORWARD</base>
<trans>Forwarding address</trans>
</entry>
<entry>
<base>DAYS_BEFORE_LOCK</base>
<trans>Days left until expiration</trans>
</entry>
<entry>
<base>ACTION</base>
<trans>Действие</trans>
</entry>
<entry>
<base>INACTIVE_ACCOUNT</base>
<trans>Account (inactive)</trans>
</entry>
<entry>
<base>DAYS_BEFORE_DELETE</base>
<trans>Days left until deletion</trans>
</entry>
<entry>
<base>TAINTED_USER</base>
<trans>Invalid characters in the account name</trans>
</entry>
<entry>
<base>CONFIG_MODIFIED</base>
<trans>Configuration has been modified</trans>
</entry>
<entry>
<base>NOT_A_USER_ACCOUNT</base>
<trans>This is not a user account</trans>
</entry>
<entry>
<base>USER_MODIFIED</base>
<trans>The user account has been modified</trans>
</entry>
<entry>
<base>MUST_BE_POSITIVE_NUMBER</base>
<trans>This value must be a positive integer</trans>
</entry>
<entry>
<base>DATE_FORMAT_INVALID</base>
<trans>Invalid date format. The date must of the form YYYY-MM-DD.</trans>
</entry>
<entry>
<base>DATE_IS_PASSED</base>
<trans>This date has passed. The expiration date must be in future</trans>
</entry>
<entry>
<base>BAD_SYNTAX</base>
<trans>This is not a valid email address</trans>
</entry>
<entry>
<base>never</base>
<trans>never</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,158 @@
<lexicon lang="da">
<entry>
<base>Accounts Expiration</base>
<trans>Account expiration</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Account expiration management</trans>
</entry>
<entry>
<base>DESC_FIRSTPAGE</base>
<trans>This page lets you configure user accounts expiration.</trans>
</entry>
<entry>
<base>DESC_GENERAL_CONFIG_BUTTON</base>
<trans>General configuration</trans>
</entry>
<entry>
<base>DESC_MODIFY_CONFIG_PAGE</base>
<trans>The following parameters are global: they affect all users subject to an expiration of their account.</trans>
</entry>
<entry>
<base>DESC_WARNING_DELAY</base>
<trans>This value indicates how many days before the expiry of an account a reminder email will be sent to the administrator</trans>
</entry>
<entry>
<base>LABEL_WARNING_DELAY</base>
<trans>Notification threshold (in days)</trans>
</entry>
<entry>
<base>DESC_DAYS_BETWEEN_WARNINGS</base>
<trans>Several reminders can be sent to the administrator to ensure that no account is locked without being notified. This value determines the number of days between two notifications. For example, if this value is 5, the administrator will receive an alert every five daysi until the account expire.</trans>
</entry>
<entry>
<base>LABEL_DAYS_BETWEEN_WARNINGS</base>
<trans>Delay between two notifications (in days)</trans>
</entry>
<entry>
<base>DESC_WARNING_RECIPIENT</base>
<trans>By default, notifications are sent to the administrator. You can enter an alternative address.</trans>
</entry>
<entry>
<base>LABEL_WARNING_RECIPIENT</base>
<trans>Notifications recipient</trans>
</entry>
<entry>
<base>DESC_WARN_USER</base>
<trans>Should the user be warned when his account is about to expire</trans>
</entry>
<entry>
<base>LABEL_WARN_USER</base>
<trans>Notify user</trans>
</entry>
<entry>
<base>LABEL_USER_ACCOUNT</base>
<trans>User account</trans>
</entry>
<entry>
<base>DESC_LOCK_ON_DATE</base>
<trans>Specify the date on which the account will automatically be locked. The date must be in YYYY-MM-DD format, eg 2018-07-25 for July the 25th 2018. Keep this field blank to disable account expiration.</trans>
</entry>
<entry>
<base>LABEL_LOCK_ON_DATE</base>
<trans>Expiration date</trans>
</entry>
<entry>
<base>DESC_FORWARD_AFTER_LOCK</base>
<trans>You can enter an email address here. If this box is filled, then all the mails to the user will be forwarded to that address from the date the account expires. The forward will only be configured after the expiry.</trans>
</entry>
<entry>
<base>LABEL_FORWARD_AFTER_LOCK</base>
<trans>After expiry, forward email to</trans>
</entry>
<entry>
<base>DESC_AUTO_REPLY</base>
<trans>You can activate an automatic response: from the day the account expires, it is locked but remains valid. If this feature is enabled, email senders to the user's attention will automatically receive a response informing them that the user is no longer active, and asking them to update their address book.</trans>
</entry>
<entry>
<base>LABEL_AUTO_REPLY</base>
<trans>Auto reply</trans>
</entry>
<entry>
<base>DESC_DELETE_AFTER_LOCK</base>
<trans>You can choose to completely delete the account after it expires. Here you select the number of days the account will remain valid (but locked). Beyond this period, the data will be archived and the account deleted. Caution: this is the number of days before the account is deleted starting from the day the account is locked, not starting from today.</trans>
</entry>
<entry>
<base>LABEL_DELETE_AFTER_LOCK</base>
<trans>Delay before deleting the account (in days)</trans>
</entry>
<entry>
<base>NO_USER_ACCOUNTS</base>
<trans>No user account</trans>
</entry>
<entry>
<base>ACTIVE_ACCOUNT</base>
<trans>Account (active)</trans>
</entry>
<entry>
<base>USER_NAME</base>
<trans>Navn</trans>
</entry>
<entry>
<base>FORWARD</base>
<trans>Adresse til videresendelse</trans>
</entry>
<entry>
<base>DAYS_BEFORE_LOCK</base>
<trans>Days left until expiration</trans>
</entry>
<entry>
<base>ACTION</base>
<trans>Action</trans>
</entry>
<entry>
<base>INACTIVE_ACCOUNT</base>
<trans>Account (inactive)</trans>
</entry>
<entry>
<base>DAYS_BEFORE_DELETE</base>
<trans>Days left until deletion</trans>
</entry>
<entry>
<base>TAINTED_USER</base>
<trans>Invalid characters in the account name</trans>
</entry>
<entry>
<base>CONFIG_MODIFIED</base>
<trans>Configuration has been modified</trans>
</entry>
<entry>
<base>NOT_A_USER_ACCOUNT</base>
<trans>This is not a user account</trans>
</entry>
<entry>
<base>USER_MODIFIED</base>
<trans>The user account has been modified</trans>
</entry>
<entry>
<base>MUST_BE_POSITIVE_NUMBER</base>
<trans>This value must be a positive integer</trans>
</entry>
<entry>
<base>DATE_FORMAT_INVALID</base>
<trans>Invalid date format. The date must of the form YYYY-MM-DD.</trans>
</entry>
<entry>
<base>DATE_IS_PASSED</base>
<trans>This date has passed. The expiration date must be in future</trans>
</entry>
<entry>
<base>BAD_SYNTAX</base>
<trans>This is not a valid email address</trans>
</entry>
<entry>
<base>never</base>
<trans>never</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,158 @@
<lexicon lang="de">
<entry>
<base>Accounts Expiration</base>
<trans>Account expiration</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Account expiration management</trans>
</entry>
<entry>
<base>DESC_FIRSTPAGE</base>
<trans>This page lets you configure user accounts expiration.</trans>
</entry>
<entry>
<base>DESC_GENERAL_CONFIG_BUTTON</base>
<trans>General configuration</trans>
</entry>
<entry>
<base>DESC_MODIFY_CONFIG_PAGE</base>
<trans>The following parameters are global: they affect all users subject to an expiration of their account.</trans>
</entry>
<entry>
<base>DESC_WARNING_DELAY</base>
<trans>This value indicates how many days before the expiry of an account a reminder email will be sent to the administrator</trans>
</entry>
<entry>
<base>LABEL_WARNING_DELAY</base>
<trans>Notification threshold (in days)</trans>
</entry>
<entry>
<base>DESC_DAYS_BETWEEN_WARNINGS</base>
<trans>Several reminders can be sent to the administrator to ensure that no account is locked without being notified. This value determines the number of days between two notifications. For example, if this value is 5, the administrator will receive an alert every five daysi until the account expire.</trans>
</entry>
<entry>
<base>LABEL_DAYS_BETWEEN_WARNINGS</base>
<trans>Delay between two notifications (in days)</trans>
</entry>
<entry>
<base>DESC_WARNING_RECIPIENT</base>
<trans>By default, notifications are sent to the administrator. You can enter an alternative address.</trans>
</entry>
<entry>
<base>LABEL_WARNING_RECIPIENT</base>
<trans>Notifications recipient</trans>
</entry>
<entry>
<base>DESC_WARN_USER</base>
<trans>Should the user be warned when his account is about to expire</trans>
</entry>
<entry>
<base>LABEL_WARN_USER</base>
<trans>Notify user</trans>
</entry>
<entry>
<base>LABEL_USER_ACCOUNT</base>
<trans>User account</trans>
</entry>
<entry>
<base>DESC_LOCK_ON_DATE</base>
<trans>Specify the date on which the account will automatically be locked. The date must be in YYYY-MM-DD format, eg 2018-07-25 for July the 25th 2018. Keep this field blank to disable account expiration.</trans>
</entry>
<entry>
<base>LABEL_LOCK_ON_DATE</base>
<trans>Expiration date</trans>
</entry>
<entry>
<base>DESC_FORWARD_AFTER_LOCK</base>
<trans>You can enter an email address here. If this box is filled, then all the mails to the user will be forwarded to that address from the date the account expires. The forward will only be configured after the expiry.</trans>
</entry>
<entry>
<base>LABEL_FORWARD_AFTER_LOCK</base>
<trans>After expiry, forward email to</trans>
</entry>
<entry>
<base>DESC_AUTO_REPLY</base>
<trans>You can activate an automatic response: from the day the account expires, it is locked but remains valid. If this feature is enabled, email senders to the user's attention will automatically receive a response informing them that the user is no longer active, and asking them to update their address book.</trans>
</entry>
<entry>
<base>LABEL_AUTO_REPLY</base>
<trans>Auto reply</trans>
</entry>
<entry>
<base>DESC_DELETE_AFTER_LOCK</base>
<trans>You can choose to completely delete the account after it expires. Here you select the number of days the account will remain valid (but locked). Beyond this period, the data will be archived and the account deleted. Caution: this is the number of days before the account is deleted starting from the day the account is locked, not starting from today.</trans>
</entry>
<entry>
<base>LABEL_DELETE_AFTER_LOCK</base>
<trans>Delay before deleting the account (in days)</trans>
</entry>
<entry>
<base>NO_USER_ACCOUNTS</base>
<trans>No user account</trans>
</entry>
<entry>
<base>ACTIVE_ACCOUNT</base>
<trans>Account (active)</trans>
</entry>
<entry>
<base>USER_NAME</base>
<trans>Name</trans>
</entry>
<entry>
<base>FORWARD</base>
<trans>Weiterleitungsadresse</trans>
</entry>
<entry>
<base>DAYS_BEFORE_LOCK</base>
<trans>Days left until expiration</trans>
</entry>
<entry>
<base>ACTION</base>
<trans>Aktion</trans>
</entry>
<entry>
<base>INACTIVE_ACCOUNT</base>
<trans>Account (inactive)</trans>
</entry>
<entry>
<base>DAYS_BEFORE_DELETE</base>
<trans>Days left until deletion</trans>
</entry>
<entry>
<base>TAINTED_USER</base>
<trans>Invalid characters in the account name</trans>
</entry>
<entry>
<base>CONFIG_MODIFIED</base>
<trans>Configuration has been modified</trans>
</entry>
<entry>
<base>NOT_A_USER_ACCOUNT</base>
<trans>This is not a user account</trans>
</entry>
<entry>
<base>USER_MODIFIED</base>
<trans>The user account has been modified</trans>
</entry>
<entry>
<base>MUST_BE_POSITIVE_NUMBER</base>
<trans>This value must be a positive integer</trans>
</entry>
<entry>
<base>DATE_FORMAT_INVALID</base>
<trans>Invalid date format. The date must of the form YYYY-MM-DD.</trans>
</entry>
<entry>
<base>DATE_IS_PASSED</base>
<trans>This date has passed. The expiration date must be in future</trans>
</entry>
<entry>
<base>BAD_SYNTAX</base>
<trans>This is not a valid email address</trans>
</entry>
<entry>
<base>never</base>
<trans>never</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,158 @@
<lexicon lang="el">
<entry>
<base>Accounts Expiration</base>
<trans>Account expiration</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Account expiration management</trans>
</entry>
<entry>
<base>DESC_FIRSTPAGE</base>
<trans>This page lets you configure user accounts expiration.</trans>
</entry>
<entry>
<base>DESC_GENERAL_CONFIG_BUTTON</base>
<trans>General configuration</trans>
</entry>
<entry>
<base>DESC_MODIFY_CONFIG_PAGE</base>
<trans>The following parameters are global: they affect all users subject to an expiration of their account.</trans>
</entry>
<entry>
<base>DESC_WARNING_DELAY</base>
<trans>This value indicates how many days before the expiry of an account a reminder email will be sent to the administrator</trans>
</entry>
<entry>
<base>LABEL_WARNING_DELAY</base>
<trans>Notification threshold (in days)</trans>
</entry>
<entry>
<base>DESC_DAYS_BETWEEN_WARNINGS</base>
<trans>Several reminders can be sent to the administrator to ensure that no account is locked without being notified. This value determines the number of days between two notifications. For example, if this value is 5, the administrator will receive an alert every five daysi until the account expire.</trans>
</entry>
<entry>
<base>LABEL_DAYS_BETWEEN_WARNINGS</base>
<trans>Delay between two notifications (in days)</trans>
</entry>
<entry>
<base>DESC_WARNING_RECIPIENT</base>
<trans>By default, notifications are sent to the administrator. You can enter an alternative address.</trans>
</entry>
<entry>
<base>LABEL_WARNING_RECIPIENT</base>
<trans>Notifications recipient</trans>
</entry>
<entry>
<base>DESC_WARN_USER</base>
<trans>Should the user be warned when his account is about to expire</trans>
</entry>
<entry>
<base>LABEL_WARN_USER</base>
<trans>Notify user</trans>
</entry>
<entry>
<base>LABEL_USER_ACCOUNT</base>
<trans>User account</trans>
</entry>
<entry>
<base>DESC_LOCK_ON_DATE</base>
<trans>Specify the date on which the account will automatically be locked. The date must be in YYYY-MM-DD format, eg 2018-07-25 for July the 25th 2018. Keep this field blank to disable account expiration.</trans>
</entry>
<entry>
<base>LABEL_LOCK_ON_DATE</base>
<trans>Expiration date</trans>
</entry>
<entry>
<base>DESC_FORWARD_AFTER_LOCK</base>
<trans>You can enter an email address here. If this box is filled, then all the mails to the user will be forwarded to that address from the date the account expires. The forward will only be configured after the expiry.</trans>
</entry>
<entry>
<base>LABEL_FORWARD_AFTER_LOCK</base>
<trans>After expiry, forward email to</trans>
</entry>
<entry>
<base>DESC_AUTO_REPLY</base>
<trans>You can activate an automatic response: from the day the account expires, it is locked but remains valid. If this feature is enabled, email senders to the user's attention will automatically receive a response informing them that the user is no longer active, and asking them to update their address book.</trans>
</entry>
<entry>
<base>LABEL_AUTO_REPLY</base>
<trans>Auto reply</trans>
</entry>
<entry>
<base>DESC_DELETE_AFTER_LOCK</base>
<trans>You can choose to completely delete the account after it expires. Here you select the number of days the account will remain valid (but locked). Beyond this period, the data will be archived and the account deleted. Caution: this is the number of days before the account is deleted starting from the day the account is locked, not starting from today.</trans>
</entry>
<entry>
<base>LABEL_DELETE_AFTER_LOCK</base>
<trans>Delay before deleting the account (in days)</trans>
</entry>
<entry>
<base>NO_USER_ACCOUNTS</base>
<trans>No user account</trans>
</entry>
<entry>
<base>ACTIVE_ACCOUNT</base>
<trans>Account (active)</trans>
</entry>
<entry>
<base>USER_NAME</base>
<trans>Όνομα</trans>
</entry>
<entry>
<base>FORWARD</base>
<trans>Διεύθυνση προώθησης</trans>
</entry>
<entry>
<base>DAYS_BEFORE_LOCK</base>
<trans>Days left until expiration</trans>
</entry>
<entry>
<base>ACTION</base>
<trans>Ενέργεια</trans>
</entry>
<entry>
<base>INACTIVE_ACCOUNT</base>
<trans>Account (inactive)</trans>
</entry>
<entry>
<base>DAYS_BEFORE_DELETE</base>
<trans>Days left until deletion</trans>
</entry>
<entry>
<base>TAINTED_USER</base>
<trans>Invalid characters in the account name</trans>
</entry>
<entry>
<base>CONFIG_MODIFIED</base>
<trans>Configuration has been modified</trans>
</entry>
<entry>
<base>NOT_A_USER_ACCOUNT</base>
<trans>This is not a user account</trans>
</entry>
<entry>
<base>USER_MODIFIED</base>
<trans>The user account has been modified</trans>
</entry>
<entry>
<base>MUST_BE_POSITIVE_NUMBER</base>
<trans>This value must be a positive integer</trans>
</entry>
<entry>
<base>DATE_FORMAT_INVALID</base>
<trans>Invalid date format. The date must of the form YYYY-MM-DD.</trans>
</entry>
<entry>
<base>DATE_IS_PASSED</base>
<trans>This date has passed. The expiration date must be in future</trans>
</entry>
<entry>
<base>BAD_SYNTAX</base>
<trans>This is not a valid email address</trans>
</entry>
<entry>
<base>never</base>
<trans>never</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,158 @@
<lexicon lang="en">
<entry>
<base>Accounts Expiration</base>
<trans>Account expiration</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Account expiration management</trans>
</entry>
<entry>
<base>DESC_FIRSTPAGE</base>
<trans>This page lets you configure user accounts expiration.</trans>
</entry>
<entry>
<base>DESC_GENERAL_CONFIG_BUTTON</base>
<trans>General configuration</trans>
</entry>
<entry>
<base>DESC_MODIFY_CONFIG_PAGE</base>
<trans>The following parameters are global: they affect all users subject to an expiration of their account.</trans>
</entry>
<entry>
<base>DESC_WARNING_DELAY</base>
<trans>This value indicates how many days before the expiry of an account a reminder email will be sent to the administrator</trans>
</entry>
<entry>
<base>LABEL_WARNING_DELAY</base>
<trans>Notification threshold (in days)</trans>
</entry>
<entry>
<base>DESC_DAYS_BETWEEN_WARNINGS</base>
<trans>Several reminders can be sent to the administrator to ensure that no account is locked without being notified. This value determines the number of days between two notifications. For example, if this value is 5, the administrator will receive an alert every five daysi until the account expire.</trans>
</entry>
<entry>
<base>LABEL_DAYS_BETWEEN_WARNINGS</base>
<trans>Delay between two notifications (in days)</trans>
</entry>
<entry>
<base>DESC_WARNING_RECIPIENT</base>
<trans>By default, notifications are sent to the administrator. You can enter an alternative address.</trans>
</entry>
<entry>
<base>LABEL_WARNING_RECIPIENT</base>
<trans>Notifications recipient</trans>
</entry>
<entry>
<base>DESC_WARN_USER</base>
<trans>Should the user be warned when his account is about to expire</trans>
</entry>
<entry>
<base>LABEL_WARN_USER</base>
<trans>Notify user</trans>
</entry>
<entry>
<base>LABEL_USER_ACCOUNT</base>
<trans>User account</trans>
</entry>
<entry>
<base>DESC_LOCK_ON_DATE</base>
<trans>Specify the date on which the account will automatically be locked. The date must be in YYYY-MM-DD format, eg 2018-07-25 for July the 25th 2018. Keep this field blank to disable account expiration.</trans>
</entry>
<entry>
<base>LABEL_LOCK_ON_DATE</base>
<trans>Expiration date</trans>
</entry>
<entry>
<base>DESC_FORWARD_AFTER_LOCK</base>
<trans>You can enter an email address here. If this box is filled, then all the mails to the user will be forwarded to that address from the date the account expires. The forward will only be configured after the expiry.</trans>
</entry>
<entry>
<base>LABEL_FORWARD_AFTER_LOCK</base>
<trans>After expiry, forward email to</trans>
</entry>
<entry>
<base>DESC_AUTO_REPLY</base>
<trans>You can activate an automatic response: from the day the account expires, it is locked but remains valid. If this feature is enabled, email senders to the user's attention will automatically receive a response informing them that the user is no longer active, and asking them to update their address book.</trans>
</entry>
<entry>
<base>LABEL_AUTO_REPLY</base>
<trans>Auto reply</trans>
</entry>
<entry>
<base>DESC_DELETE_AFTER_LOCK</base>
<trans>You can choose to completely delete the account after it expires. Here you select the number of days the account will remain valid (but locked). Beyond this period, the data will be archived and the account deleted. Caution: this is the number of days before the account is deleted starting from the day the account is locked, not starting from today.</trans>
</entry>
<entry>
<base>LABEL_DELETE_AFTER_LOCK</base>
<trans>Delay before deleting the account (in days)</trans>
</entry>
<entry>
<base>NO_USER_ACCOUNTS</base>
<trans>No user account</trans>
</entry>
<entry>
<base>ACTIVE_ACCOUNT</base>
<trans>Account (active)</trans>
</entry>
<entry>
<base>USER_NAME</base>
<trans>Name</trans>
</entry>
<entry>
<base>FORWARD</base>
<trans>Forwarding address</trans>
</entry>
<entry>
<base>DAYS_BEFORE_LOCK</base>
<trans>Days left until expiration</trans>
</entry>
<entry>
<base>ACTION</base>
<trans>Action</trans>
</entry>
<entry>
<base>INACTIVE_ACCOUNT</base>
<trans>Account (inactive)</trans>
</entry>
<entry>
<base>DAYS_BEFORE_DELETE</base>
<trans>Days left until deletion</trans>
</entry>
<entry>
<base>TAINTED_USER</base>
<trans>Invalid characters in the account name</trans>
</entry>
<entry>
<base>CONFIG_MODIFIED</base>
<trans>Configuration has been modified</trans>
</entry>
<entry>
<base>NOT_A_USER_ACCOUNT</base>
<trans>This is not a user account</trans>
</entry>
<entry>
<base>USER_MODIFIED</base>
<trans>The user account has been modified</trans>
</entry>
<entry>
<base>MUST_BE_POSITIVE_NUMBER</base>
<trans>This value must be a positive integer</trans>
</entry>
<entry>
<base>DATE_FORMAT_INVALID</base>
<trans>Invalid date format. The date must of the form YYYY-MM-DD.</trans>
</entry>
<entry>
<base>DATE_IS_PASSED</base>
<trans>This date has passed. The expiration date must be in future</trans>
</entry>
<entry>
<base>BAD_SYNTAX</base>
<trans>This is not a valid email address</trans>
</entry>
<entry>
<base>never</base>
<trans>never</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,158 @@
<lexicon lang="es">
<entry>
<base>Accounts Expiration</base>
<trans>Account expiration</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Account expiration management</trans>
</entry>
<entry>
<base>DESC_FIRSTPAGE</base>
<trans>This page lets you configure user accounts expiration.</trans>
</entry>
<entry>
<base>DESC_GENERAL_CONFIG_BUTTON</base>
<trans>General configuration</trans>
</entry>
<entry>
<base>DESC_MODIFY_CONFIG_PAGE</base>
<trans>The following parameters are global: they affect all users subject to an expiration of their account.</trans>
</entry>
<entry>
<base>DESC_WARNING_DELAY</base>
<trans>This value indicates how many days before the expiry of an account a reminder email will be sent to the administrator</trans>
</entry>
<entry>
<base>LABEL_WARNING_DELAY</base>
<trans>Notification threshold (in days)</trans>
</entry>
<entry>
<base>DESC_DAYS_BETWEEN_WARNINGS</base>
<trans>Several reminders can be sent to the administrator to ensure that no account is locked without being notified. This value determines the number of days between two notifications. For example, if this value is 5, the administrator will receive an alert every five daysi until the account expire.</trans>
</entry>
<entry>
<base>LABEL_DAYS_BETWEEN_WARNINGS</base>
<trans>Delay between two notifications (in days)</trans>
</entry>
<entry>
<base>DESC_WARNING_RECIPIENT</base>
<trans>By default, notifications are sent to the administrator. You can enter an alternative address.</trans>
</entry>
<entry>
<base>LABEL_WARNING_RECIPIENT</base>
<trans>Notifications recipient</trans>
</entry>
<entry>
<base>DESC_WARN_USER</base>
<trans>Should the user be warned when his account is about to expire</trans>
</entry>
<entry>
<base>LABEL_WARN_USER</base>
<trans>Notify user</trans>
</entry>
<entry>
<base>LABEL_USER_ACCOUNT</base>
<trans>User account</trans>
</entry>
<entry>
<base>DESC_LOCK_ON_DATE</base>
<trans>Specify the date on which the account will automatically be locked. The date must be in YYYY-MM-DD format, eg 2018-07-25 for July the 25th 2018. Keep this field blank to disable account expiration.</trans>
</entry>
<entry>
<base>LABEL_LOCK_ON_DATE</base>
<trans>Expiration date</trans>
</entry>
<entry>
<base>DESC_FORWARD_AFTER_LOCK</base>
<trans>You can enter an email address here. If this box is filled, then all the mails to the user will be forwarded to that address from the date the account expires. The forward will only be configured after the expiry.</trans>
</entry>
<entry>
<base>LABEL_FORWARD_AFTER_LOCK</base>
<trans>After expiry, forward email to</trans>
</entry>
<entry>
<base>DESC_AUTO_REPLY</base>
<trans>You can activate an automatic response: from the day the account expires, it is locked but remains valid. If this feature is enabled, email senders to the user's attention will automatically receive a response informing them that the user is no longer active, and asking them to update their address book.</trans>
</entry>
<entry>
<base>LABEL_AUTO_REPLY</base>
<trans>Auto reply</trans>
</entry>
<entry>
<base>DESC_DELETE_AFTER_LOCK</base>
<trans>You can choose to completely delete the account after it expires. Here you select the number of days the account will remain valid (but locked). Beyond this period, the data will be archived and the account deleted. Caution: this is the number of days before the account is deleted starting from the day the account is locked, not starting from today.</trans>
</entry>
<entry>
<base>LABEL_DELETE_AFTER_LOCK</base>
<trans>Delay before deleting the account (in days)</trans>
</entry>
<entry>
<base>NO_USER_ACCOUNTS</base>
<trans>No user account</trans>
</entry>
<entry>
<base>ACTIVE_ACCOUNT</base>
<trans>Account (active)</trans>
</entry>
<entry>
<base>USER_NAME</base>
<trans>Nombre</trans>
</entry>
<entry>
<base>FORWARD</base>
<trans>Dirección de reenvío</trans>
</entry>
<entry>
<base>DAYS_BEFORE_LOCK</base>
<trans>Days left until expiration</trans>
</entry>
<entry>
<base>ACTION</base>
<trans>Acción</trans>
</entry>
<entry>
<base>INACTIVE_ACCOUNT</base>
<trans>Account (inactive)</trans>
</entry>
<entry>
<base>DAYS_BEFORE_DELETE</base>
<trans>Days left until deletion</trans>
</entry>
<entry>
<base>TAINTED_USER</base>
<trans>Invalid characters in the account name</trans>
</entry>
<entry>
<base>CONFIG_MODIFIED</base>
<trans>Configuration has been modified</trans>
</entry>
<entry>
<base>NOT_A_USER_ACCOUNT</base>
<trans>This is not a user account</trans>
</entry>
<entry>
<base>USER_MODIFIED</base>
<trans>The user account has been modified</trans>
</entry>
<entry>
<base>MUST_BE_POSITIVE_NUMBER</base>
<trans>This value must be a positive integer</trans>
</entry>
<entry>
<base>DATE_FORMAT_INVALID</base>
<trans>Invalid date format. The date must of the form YYYY-MM-DD.</trans>
</entry>
<entry>
<base>DATE_IS_PASSED</base>
<trans>This date has passed. The expiration date must be in future</trans>
</entry>
<entry>
<base>BAD_SYNTAX</base>
<trans>This is not a valid email address</trans>
</entry>
<entry>
<base>never</base>
<trans>never</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,158 @@
<lexicon lang="et">
<entry>
<base>Accounts Expiration</base>
<trans>Account expiration</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Account expiration management</trans>
</entry>
<entry>
<base>DESC_FIRSTPAGE</base>
<trans>This page lets you configure user accounts expiration.</trans>
</entry>
<entry>
<base>DESC_GENERAL_CONFIG_BUTTON</base>
<trans>General configuration</trans>
</entry>
<entry>
<base>DESC_MODIFY_CONFIG_PAGE</base>
<trans>The following parameters are global: they affect all users subject to an expiration of their account.</trans>
</entry>
<entry>
<base>DESC_WARNING_DELAY</base>
<trans>This value indicates how many days before the expiry of an account a reminder email will be sent to the administrator</trans>
</entry>
<entry>
<base>LABEL_WARNING_DELAY</base>
<trans>Notification threshold (in days)</trans>
</entry>
<entry>
<base>DESC_DAYS_BETWEEN_WARNINGS</base>
<trans>Several reminders can be sent to the administrator to ensure that no account is locked without being notified. This value determines the number of days between two notifications. For example, if this value is 5, the administrator will receive an alert every five daysi until the account expire.</trans>
</entry>
<entry>
<base>LABEL_DAYS_BETWEEN_WARNINGS</base>
<trans>Delay between two notifications (in days)</trans>
</entry>
<entry>
<base>DESC_WARNING_RECIPIENT</base>
<trans>By default, notifications are sent to the administrator. You can enter an alternative address.</trans>
</entry>
<entry>
<base>LABEL_WARNING_RECIPIENT</base>
<trans>Notifications recipient</trans>
</entry>
<entry>
<base>DESC_WARN_USER</base>
<trans>Should the user be warned when his account is about to expire</trans>
</entry>
<entry>
<base>LABEL_WARN_USER</base>
<trans>Notify user</trans>
</entry>
<entry>
<base>LABEL_USER_ACCOUNT</base>
<trans>User account</trans>
</entry>
<entry>
<base>DESC_LOCK_ON_DATE</base>
<trans>Specify the date on which the account will automatically be locked. The date must be in YYYY-MM-DD format, eg 2018-07-25 for July the 25th 2018. Keep this field blank to disable account expiration.</trans>
</entry>
<entry>
<base>LABEL_LOCK_ON_DATE</base>
<trans>Expiration date</trans>
</entry>
<entry>
<base>DESC_FORWARD_AFTER_LOCK</base>
<trans>You can enter an email address here. If this box is filled, then all the mails to the user will be forwarded to that address from the date the account expires. The forward will only be configured after the expiry.</trans>
</entry>
<entry>
<base>LABEL_FORWARD_AFTER_LOCK</base>
<trans>After expiry, forward email to</trans>
</entry>
<entry>
<base>DESC_AUTO_REPLY</base>
<trans>You can activate an automatic response: from the day the account expires, it is locked but remains valid. If this feature is enabled, email senders to the user's attention will automatically receive a response informing them that the user is no longer active, and asking them to update their address book.</trans>
</entry>
<entry>
<base>LABEL_AUTO_REPLY</base>
<trans>Auto reply</trans>
</entry>
<entry>
<base>DESC_DELETE_AFTER_LOCK</base>
<trans>You can choose to completely delete the account after it expires. Here you select the number of days the account will remain valid (but locked). Beyond this period, the data will be archived and the account deleted. Caution: this is the number of days before the account is deleted starting from the day the account is locked, not starting from today.</trans>
</entry>
<entry>
<base>LABEL_DELETE_AFTER_LOCK</base>
<trans>Delay before deleting the account (in days)</trans>
</entry>
<entry>
<base>NO_USER_ACCOUNTS</base>
<trans>No user account</trans>
</entry>
<entry>
<base>ACTIVE_ACCOUNT</base>
<trans>Account (active)</trans>
</entry>
<entry>
<base>USER_NAME</base>
<trans>Nimi</trans>
</entry>
<entry>
<base>FORWARD</base>
<trans>Aadress kuhu edastada</trans>
</entry>
<entry>
<base>DAYS_BEFORE_LOCK</base>
<trans>Days left until expiration</trans>
</entry>
<entry>
<base>ACTION</base>
<trans>Tegevus</trans>
</entry>
<entry>
<base>INACTIVE_ACCOUNT</base>
<trans>Account (inactive)</trans>
</entry>
<entry>
<base>DAYS_BEFORE_DELETE</base>
<trans>Days left until deletion</trans>
</entry>
<entry>
<base>TAINTED_USER</base>
<trans>Invalid characters in the account name</trans>
</entry>
<entry>
<base>CONFIG_MODIFIED</base>
<trans>Configuration has been modified</trans>
</entry>
<entry>
<base>NOT_A_USER_ACCOUNT</base>
<trans>This is not a user account</trans>
</entry>
<entry>
<base>USER_MODIFIED</base>
<trans>The user account has been modified</trans>
</entry>
<entry>
<base>MUST_BE_POSITIVE_NUMBER</base>
<trans>This value must be a positive integer</trans>
</entry>
<entry>
<base>DATE_FORMAT_INVALID</base>
<trans>Invalid date format. The date must of the form YYYY-MM-DD.</trans>
</entry>
<entry>
<base>DATE_IS_PASSED</base>
<trans>This date has passed. The expiration date must be in future</trans>
</entry>
<entry>
<base>BAD_SYNTAX</base>
<trans>This is not a valid email address</trans>
</entry>
<entry>
<base>never</base>
<trans>never</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,158 @@
<lexicon lang="fr">
<entry>
<base>Accounts Expiration</base>
<trans>Date d'expiration</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Gestion d'expiration des comptes</trans>
</entry>
<entry>
<base>DESC_FIRSTPAGE</base>
<trans>Cette page vous permet de gérer l'expiration de comptes utilisateurs.</trans>
</entry>
<entry>
<base>DESC_GENERAL_CONFIG_BUTTON</base>
<trans>Configuration générale</trans>
</entry>
<entry>
<base>DESC_MODIFY_CONFIG_PAGE</base>
<trans>Les paramètres suivants sont globaux: ils affectent tous les utilisateurs soumis à une expiration de leur compte.</trans>
</entry>
<entry>
<base>DESC_WARNING_DELAY</base>
<trans>Cette valeur indique combien de jours avant l'expiration d'un compte un email de rappel sera envoyé à l'administrateur</trans>
</entry>
<entry>
<base>LABEL_WARNING_DELAY</base>
<trans>Seuil de notification (en jours)</trans>
</entry>
<entry>
<base>DESC_DAYS_BETWEEN_WARNINGS</base>
<trans>Plusieurs rappels peuvent être envoyés à l'administrateur pour s'assurer qu'aucun compte n'est vérouillé sans en être avertie. Cette valeur permet de définir le nombre de jours entre deux notifications. Par exemple, si cette valeur est de 5, l'administrateur recevra une alerte tous les 5 jours jusqu'à expiration du compte.</trans>
</entry>
<entry>
<base>LABEL_DAYS_BETWEEN_WARNINGS</base>
<trans>Délais entre deux notifications (en jours)</trans>
</entry>
<entry>
<base>DESC_WARNING_RECIPIENT</base>
<trans>Par défaut, les notifications sont envoyées à l'administrateur. Vous pouvez ici saisir une adresse alternative.</trans>
</entry>
<entry>
<base>LABEL_WARNING_RECIPIENT</base>
<trans>Destinataire des notifications</trans>
</entry>
<entry>
<base>DESC_WARN_USER</base>
<trans>L'utilisateur doit-il être avertie lorsque son compte est sur le point d'expirer ?</trans>
</entry>
<entry>
<base>LABEL_WARN_USER</base>
<trans>Notifier l'utilisateur</trans>
</entry>
<entry>
<base>LABEL_USER_ACCOUNT</base>
<trans>Compte d'utilisateur</trans>
</entry>
<entry>
<base>DESC_LOCK_ON_DATE</base>
<trans>Précisez ici la date à laquelle le compte sera automatiquement verrouillé. La date doit être au format AAAA-MM-JJ, par exemple 2018-07-25 pour le 25 Juillet 2018. Laissez ce champs vide pour désactiver l'expiration du compte.</trans>
</entry>
<entry>
<base>LABEL_LOCK_ON_DATE</base>
<trans>Date d'expiration</trans>
</entry>
<entry>
<base>DESC_FORWARD_AFTER_LOCK</base>
<trans>Vous pouvez saisir une adresse email ici. Si ce champs est rempli, alors tous les mails à destination de l'utilisateur seront renvoyés à cette adresse à partir du jour où le compte expire. Le renvoi ne sera mis en place qu'après l'expiration.</trans>
</entry>
<entry>
<base>LABEL_FORWARD_AFTER_LOCK</base>
<trans>Après expiration, transférer les mails vers</trans>
</entry>
<entry>
<base>DESC_AUTO_REPLY</base>
<trans>Vous pouvez activer une réponse automatique: à partir du jour où le compte expire, ce dernier est verrouillé, mais reste valide. Si cette fonction est activée, alors les expéditeurs de mails à l'attention de cet utilisateur recevront automatiquement une réponse leur signalant que l'utilisateur n'est plus actif, et leur demandant de mettre à jour leur carnet d'adresse.</trans>
</entry>
<entry>
<base>LABEL_AUTO_REPLY</base>
<trans>Envoi de réponses automatiques</trans>
</entry>
<entry>
<base>DESC_DELETE_AFTER_LOCK</base>
<trans>Vous pouvez choisir de supprimer entièrement le compte après son expiration. Sélectionnez ici le nombre de jours pendant lesquels le compte restera valide (mais verrouillé). Au delà de cette période, les données seront archivées et le compte supprimé. Attention: il s'agit du nombre de jours avant que le compte ne soit supprimé à partir du jour où le compte est verrouillé, et non pas à partir d'aujourd'hui.</trans>
</entry>
<entry>
<base>LABEL_DELETE_AFTER_LOCK</base>
<trans>Délais avant suppression du compte (en jours)</trans>
</entry>
<entry>
<base>NO_USER_ACCOUNTS</base>
<trans>Aucun compte utilisateur</trans>
</entry>
<entry>
<base>ACTIVE_ACCOUNT</base>
<trans>Compte (actif)</trans>
</entry>
<entry>
<base>USER_NAME</base>
<trans>Nom</trans>
</entry>
<entry>
<base>FORWARD</base>
<trans>Adresse de renvoi</trans>
</entry>
<entry>
<base>DAYS_BEFORE_LOCK</base>
<trans>Jours restants avant expiration</trans>
</entry>
<entry>
<base>ACTION</base>
<trans>Action</trans>
</entry>
<entry>
<base>INACTIVE_ACCOUNT</base>
<trans>Compte (inactif)</trans>
</entry>
<entry>
<base>DAYS_BEFORE_DELETE</base>
<trans>Jours restants avant suppression</trans>
</entry>
<entry>
<base>TAINTED_USER</base>
<trans>Caractères invalides dans le nom du compte</trans>
</entry>
<entry>
<base>CONFIG_MODIFIED</base>
<trans>La configuration a été modifiée</trans>
</entry>
<entry>
<base>NOT_A_USER_ACCOUNT</base>
<trans>Il ne s'agit pas d'un compte utilisateur</trans>
</entry>
<entry>
<base>USER_MODIFIED</base>
<trans>Le compte utilisateur a été modifié</trans>
</entry>
<entry>
<base>MUST_BE_POSITIVE_NUMBER</base>
<trans>Cette valeur doit être un nombre entier positif</trans>
</entry>
<entry>
<base>DATE_FORMAT_INVALID</base>
<trans>Format de date non valide. La date doit être de la forme AAAA-MM-JJ.</trans>
</entry>
<entry>
<base>DATE_IS_PASSED</base>
<trans>Cette date est passée. La date d'expiration doit être dans le futur</trans>
</entry>
<entry>
<base>BAD_SYNTAX</base>
<trans>Ceci n'est pas une adresse email valide</trans>
</entry>
<entry>
<base>never</base>
<trans>jamais</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,158 @@
<lexicon lang="he">
<entry>
<base>Accounts Expiration</base>
<trans>Account expiration</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Account expiration management</trans>
</entry>
<entry>
<base>DESC_FIRSTPAGE</base>
<trans>This page lets you configure user accounts expiration.</trans>
</entry>
<entry>
<base>DESC_GENERAL_CONFIG_BUTTON</base>
<trans>General configuration</trans>
</entry>
<entry>
<base>DESC_MODIFY_CONFIG_PAGE</base>
<trans>The following parameters are global: they affect all users subject to an expiration of their account.</trans>
</entry>
<entry>
<base>DESC_WARNING_DELAY</base>
<trans>This value indicates how many days before the expiry of an account a reminder email will be sent to the administrator</trans>
</entry>
<entry>
<base>LABEL_WARNING_DELAY</base>
<trans>Notification threshold (in days)</trans>
</entry>
<entry>
<base>DESC_DAYS_BETWEEN_WARNINGS</base>
<trans>Several reminders can be sent to the administrator to ensure that no account is locked without being notified. This value determines the number of days between two notifications. For example, if this value is 5, the administrator will receive an alert every five daysi until the account expire.</trans>
</entry>
<entry>
<base>LABEL_DAYS_BETWEEN_WARNINGS</base>
<trans>Delay between two notifications (in days)</trans>
</entry>
<entry>
<base>DESC_WARNING_RECIPIENT</base>
<trans>By default, notifications are sent to the administrator. You can enter an alternative address.</trans>
</entry>
<entry>
<base>LABEL_WARNING_RECIPIENT</base>
<trans>Notifications recipient</trans>
</entry>
<entry>
<base>DESC_WARN_USER</base>
<trans>Should the user be warned when his account is about to expire</trans>
</entry>
<entry>
<base>LABEL_WARN_USER</base>
<trans>Notify user</trans>
</entry>
<entry>
<base>LABEL_USER_ACCOUNT</base>
<trans>User account</trans>
</entry>
<entry>
<base>DESC_LOCK_ON_DATE</base>
<trans>Specify the date on which the account will automatically be locked. The date must be in YYYY-MM-DD format, eg 2018-07-25 for July the 25th 2018. Keep this field blank to disable account expiration.</trans>
</entry>
<entry>
<base>LABEL_LOCK_ON_DATE</base>
<trans>Expiration date</trans>
</entry>
<entry>
<base>DESC_FORWARD_AFTER_LOCK</base>
<trans>You can enter an email address here. If this box is filled, then all the mails to the user will be forwarded to that address from the date the account expires. The forward will only be configured after the expiry.</trans>
</entry>
<entry>
<base>LABEL_FORWARD_AFTER_LOCK</base>
<trans>After expiry, forward email to</trans>
</entry>
<entry>
<base>DESC_AUTO_REPLY</base>
<trans>You can activate an automatic response: from the day the account expires, it is locked but remains valid. If this feature is enabled, email senders to the user's attention will automatically receive a response informing them that the user is no longer active, and asking them to update their address book.</trans>
</entry>
<entry>
<base>LABEL_AUTO_REPLY</base>
<trans>Auto reply</trans>
</entry>
<entry>
<base>DESC_DELETE_AFTER_LOCK</base>
<trans>You can choose to completely delete the account after it expires. Here you select the number of days the account will remain valid (but locked). Beyond this period, the data will be archived and the account deleted. Caution: this is the number of days before the account is deleted starting from the day the account is locked, not starting from today.</trans>
</entry>
<entry>
<base>LABEL_DELETE_AFTER_LOCK</base>
<trans>Delay before deleting the account (in days)</trans>
</entry>
<entry>
<base>NO_USER_ACCOUNTS</base>
<trans>No user account</trans>
</entry>
<entry>
<base>ACTIVE_ACCOUNT</base>
<trans>Account (active)</trans>
</entry>
<entry>
<base>USER_NAME</base>
<trans>שם</trans>
</entry>
<entry>
<base>FORWARD</base>
<trans>כתובת להעברה</trans>
</entry>
<entry>
<base>DAYS_BEFORE_LOCK</base>
<trans>Days left until expiration</trans>
</entry>
<entry>
<base>ACTION</base>
<trans>פעולה</trans>
</entry>
<entry>
<base>INACTIVE_ACCOUNT</base>
<trans>Account (inactive)</trans>
</entry>
<entry>
<base>DAYS_BEFORE_DELETE</base>
<trans>Days left until deletion</trans>
</entry>
<entry>
<base>TAINTED_USER</base>
<trans>Invalid characters in the account name</trans>
</entry>
<entry>
<base>CONFIG_MODIFIED</base>
<trans>Configuration has been modified</trans>
</entry>
<entry>
<base>NOT_A_USER_ACCOUNT</base>
<trans>This is not a user account</trans>
</entry>
<entry>
<base>USER_MODIFIED</base>
<trans>The user account has been modified</trans>
</entry>
<entry>
<base>MUST_BE_POSITIVE_NUMBER</base>
<trans>This value must be a positive integer</trans>
</entry>
<entry>
<base>DATE_FORMAT_INVALID</base>
<trans>Invalid date format. The date must of the form YYYY-MM-DD.</trans>
</entry>
<entry>
<base>DATE_IS_PASSED</base>
<trans>This date has passed. The expiration date must be in future</trans>
</entry>
<entry>
<base>BAD_SYNTAX</base>
<trans>This is not a valid email address</trans>
</entry>
<entry>
<base>never</base>
<trans>never</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,158 @@
<lexicon lang="hu">
<entry>
<base>Accounts Expiration</base>
<trans>Account expiration</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Account expiration management</trans>
</entry>
<entry>
<base>DESC_FIRSTPAGE</base>
<trans>This page lets you configure user accounts expiration.</trans>
</entry>
<entry>
<base>DESC_GENERAL_CONFIG_BUTTON</base>
<trans>General configuration</trans>
</entry>
<entry>
<base>DESC_MODIFY_CONFIG_PAGE</base>
<trans>The following parameters are global: they affect all users subject to an expiration of their account.</trans>
</entry>
<entry>
<base>DESC_WARNING_DELAY</base>
<trans>This value indicates how many days before the expiry of an account a reminder email will be sent to the administrator</trans>
</entry>
<entry>
<base>LABEL_WARNING_DELAY</base>
<trans>Notification threshold (in days)</trans>
</entry>
<entry>
<base>DESC_DAYS_BETWEEN_WARNINGS</base>
<trans>Several reminders can be sent to the administrator to ensure that no account is locked without being notified. This value determines the number of days between two notifications. For example, if this value is 5, the administrator will receive an alert every five daysi until the account expire.</trans>
</entry>
<entry>
<base>LABEL_DAYS_BETWEEN_WARNINGS</base>
<trans>Delay between two notifications (in days)</trans>
</entry>
<entry>
<base>DESC_WARNING_RECIPIENT</base>
<trans>By default, notifications are sent to the administrator. You can enter an alternative address.</trans>
</entry>
<entry>
<base>LABEL_WARNING_RECIPIENT</base>
<trans>Notifications recipient</trans>
</entry>
<entry>
<base>DESC_WARN_USER</base>
<trans>Should the user be warned when his account is about to expire</trans>
</entry>
<entry>
<base>LABEL_WARN_USER</base>
<trans>Notify user</trans>
</entry>
<entry>
<base>LABEL_USER_ACCOUNT</base>
<trans>User account</trans>
</entry>
<entry>
<base>DESC_LOCK_ON_DATE</base>
<trans>Specify the date on which the account will automatically be locked. The date must be in YYYY-MM-DD format, eg 2018-07-25 for July the 25th 2018. Keep this field blank to disable account expiration.</trans>
</entry>
<entry>
<base>LABEL_LOCK_ON_DATE</base>
<trans>Expiration date</trans>
</entry>
<entry>
<base>DESC_FORWARD_AFTER_LOCK</base>
<trans>You can enter an email address here. If this box is filled, then all the mails to the user will be forwarded to that address from the date the account expires. The forward will only be configured after the expiry.</trans>
</entry>
<entry>
<base>LABEL_FORWARD_AFTER_LOCK</base>
<trans>After expiry, forward email to</trans>
</entry>
<entry>
<base>DESC_AUTO_REPLY</base>
<trans>You can activate an automatic response: from the day the account expires, it is locked but remains valid. If this feature is enabled, email senders to the user's attention will automatically receive a response informing them that the user is no longer active, and asking them to update their address book.</trans>
</entry>
<entry>
<base>LABEL_AUTO_REPLY</base>
<trans>Auto reply</trans>
</entry>
<entry>
<base>DESC_DELETE_AFTER_LOCK</base>
<trans>You can choose to completely delete the account after it expires. Here you select the number of days the account will remain valid (but locked). Beyond this period, the data will be archived and the account deleted. Caution: this is the number of days before the account is deleted starting from the day the account is locked, not starting from today.</trans>
</entry>
<entry>
<base>LABEL_DELETE_AFTER_LOCK</base>
<trans>Delay before deleting the account (in days)</trans>
</entry>
<entry>
<base>NO_USER_ACCOUNTS</base>
<trans>No user account</trans>
</entry>
<entry>
<base>ACTIVE_ACCOUNT</base>
<trans>Account (active)</trans>
</entry>
<entry>
<base>USER_NAME</base>
<trans>Név</trans>
</entry>
<entry>
<base>FORWARD</base>
<trans>Továbbítás erre</trans>
</entry>
<entry>
<base>DAYS_BEFORE_LOCK</base>
<trans>Days left until expiration</trans>
</entry>
<entry>
<base>ACTION</base>
<trans>Művelet</trans>
</entry>
<entry>
<base>INACTIVE_ACCOUNT</base>
<trans>Account (inactive)</trans>
</entry>
<entry>
<base>DAYS_BEFORE_DELETE</base>
<trans>Days left until deletion</trans>
</entry>
<entry>
<base>TAINTED_USER</base>
<trans>Invalid characters in the account name</trans>
</entry>
<entry>
<base>CONFIG_MODIFIED</base>
<trans>Configuration has been modified</trans>
</entry>
<entry>
<base>NOT_A_USER_ACCOUNT</base>
<trans>This is not a user account</trans>
</entry>
<entry>
<base>USER_MODIFIED</base>
<trans>The user account has been modified</trans>
</entry>
<entry>
<base>MUST_BE_POSITIVE_NUMBER</base>
<trans>This value must be a positive integer</trans>
</entry>
<entry>
<base>DATE_FORMAT_INVALID</base>
<trans>Invalid date format. The date must of the form YYYY-MM-DD.</trans>
</entry>
<entry>
<base>DATE_IS_PASSED</base>
<trans>This date has passed. The expiration date must be in future</trans>
</entry>
<entry>
<base>BAD_SYNTAX</base>
<trans>This is not a valid email address</trans>
</entry>
<entry>
<base>never</base>
<trans>never</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,158 @@
<lexicon lang="id">
<entry>
<base>Accounts Expiration</base>
<trans>Account expiration</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Account expiration management</trans>
</entry>
<entry>
<base>DESC_FIRSTPAGE</base>
<trans>This page lets you configure user accounts expiration.</trans>
</entry>
<entry>
<base>DESC_GENERAL_CONFIG_BUTTON</base>
<trans>General configuration</trans>
</entry>
<entry>
<base>DESC_MODIFY_CONFIG_PAGE</base>
<trans>The following parameters are global: they affect all users subject to an expiration of their account.</trans>
</entry>
<entry>
<base>DESC_WARNING_DELAY</base>
<trans>This value indicates how many days before the expiry of an account a reminder email will be sent to the administrator</trans>
</entry>
<entry>
<base>LABEL_WARNING_DELAY</base>
<trans>Notification threshold (in days)</trans>
</entry>
<entry>
<base>DESC_DAYS_BETWEEN_WARNINGS</base>
<trans>Several reminders can be sent to the administrator to ensure that no account is locked without being notified. This value determines the number of days between two notifications. For example, if this value is 5, the administrator will receive an alert every five daysi until the account expire.</trans>
</entry>
<entry>
<base>LABEL_DAYS_BETWEEN_WARNINGS</base>
<trans>Delay between two notifications (in days)</trans>
</entry>
<entry>
<base>DESC_WARNING_RECIPIENT</base>
<trans>By default, notifications are sent to the administrator. You can enter an alternative address.</trans>
</entry>
<entry>
<base>LABEL_WARNING_RECIPIENT</base>
<trans>Notifications recipient</trans>
</entry>
<entry>
<base>DESC_WARN_USER</base>
<trans>Should the user be warned when his account is about to expire</trans>
</entry>
<entry>
<base>LABEL_WARN_USER</base>
<trans>Notify user</trans>
</entry>
<entry>
<base>LABEL_USER_ACCOUNT</base>
<trans>User account</trans>
</entry>
<entry>
<base>DESC_LOCK_ON_DATE</base>
<trans>Specify the date on which the account will automatically be locked. The date must be in YYYY-MM-DD format, eg 2018-07-25 for July the 25th 2018. Keep this field blank to disable account expiration.</trans>
</entry>
<entry>
<base>LABEL_LOCK_ON_DATE</base>
<trans>Expiration date</trans>
</entry>
<entry>
<base>DESC_FORWARD_AFTER_LOCK</base>
<trans>You can enter an email address here. If this box is filled, then all the mails to the user will be forwarded to that address from the date the account expires. The forward will only be configured after the expiry.</trans>
</entry>
<entry>
<base>LABEL_FORWARD_AFTER_LOCK</base>
<trans>After expiry, forward email to</trans>
</entry>
<entry>
<base>DESC_AUTO_REPLY</base>
<trans>You can activate an automatic response: from the day the account expires, it is locked but remains valid. If this feature is enabled, email senders to the user's attention will automatically receive a response informing them that the user is no longer active, and asking them to update their address book.</trans>
</entry>
<entry>
<base>LABEL_AUTO_REPLY</base>
<trans>Auto reply</trans>
</entry>
<entry>
<base>DESC_DELETE_AFTER_LOCK</base>
<trans>You can choose to completely delete the account after it expires. Here you select the number of days the account will remain valid (but locked). Beyond this period, the data will be archived and the account deleted. Caution: this is the number of days before the account is deleted starting from the day the account is locked, not starting from today.</trans>
</entry>
<entry>
<base>LABEL_DELETE_AFTER_LOCK</base>
<trans>Delay before deleting the account (in days)</trans>
</entry>
<entry>
<base>NO_USER_ACCOUNTS</base>
<trans>No user account</trans>
</entry>
<entry>
<base>ACTIVE_ACCOUNT</base>
<trans>Account (active)</trans>
</entry>
<entry>
<base>USER_NAME</base>
<trans>Nama</trans>
</entry>
<entry>
<base>FORWARD</base>
<trans>Alamat penerusan</trans>
</entry>
<entry>
<base>DAYS_BEFORE_LOCK</base>
<trans>Days left until expiration</trans>
</entry>
<entry>
<base>ACTION</base>
<trans>Aksi</trans>
</entry>
<entry>
<base>INACTIVE_ACCOUNT</base>
<trans>Account (inactive)</trans>
</entry>
<entry>
<base>DAYS_BEFORE_DELETE</base>
<trans>Days left until deletion</trans>
</entry>
<entry>
<base>TAINTED_USER</base>
<trans>Invalid characters in the account name</trans>
</entry>
<entry>
<base>CONFIG_MODIFIED</base>
<trans>Configuration has been modified</trans>
</entry>
<entry>
<base>NOT_A_USER_ACCOUNT</base>
<trans>This is not a user account</trans>
</entry>
<entry>
<base>USER_MODIFIED</base>
<trans>The user account has been modified</trans>
</entry>
<entry>
<base>MUST_BE_POSITIVE_NUMBER</base>
<trans>This value must be a positive integer</trans>
</entry>
<entry>
<base>DATE_FORMAT_INVALID</base>
<trans>Invalid date format. The date must of the form YYYY-MM-DD.</trans>
</entry>
<entry>
<base>DATE_IS_PASSED</base>
<trans>This date has passed. The expiration date must be in future</trans>
</entry>
<entry>
<base>BAD_SYNTAX</base>
<trans>This is not a valid email address</trans>
</entry>
<entry>
<base>never</base>
<trans>never</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,158 @@
<lexicon lang="it">
<entry>
<base>Accounts Expiration</base>
<trans>Account expiration</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Account expiration management</trans>
</entry>
<entry>
<base>DESC_FIRSTPAGE</base>
<trans>This page lets you configure user accounts expiration.</trans>
</entry>
<entry>
<base>DESC_GENERAL_CONFIG_BUTTON</base>
<trans>General configuration</trans>
</entry>
<entry>
<base>DESC_MODIFY_CONFIG_PAGE</base>
<trans>The following parameters are global: they affect all users subject to an expiration of their account.</trans>
</entry>
<entry>
<base>DESC_WARNING_DELAY</base>
<trans>This value indicates how many days before the expiry of an account a reminder email will be sent to the administrator</trans>
</entry>
<entry>
<base>LABEL_WARNING_DELAY</base>
<trans>Notification threshold (in days)</trans>
</entry>
<entry>
<base>DESC_DAYS_BETWEEN_WARNINGS</base>
<trans>Several reminders can be sent to the administrator to ensure that no account is locked without being notified. This value determines the number of days between two notifications. For example, if this value is 5, the administrator will receive an alert every five daysi until the account expire.</trans>
</entry>
<entry>
<base>LABEL_DAYS_BETWEEN_WARNINGS</base>
<trans>Delay between two notifications (in days)</trans>
</entry>
<entry>
<base>DESC_WARNING_RECIPIENT</base>
<trans>By default, notifications are sent to the administrator. You can enter an alternative address.</trans>
</entry>
<entry>
<base>LABEL_WARNING_RECIPIENT</base>
<trans>Notifications recipient</trans>
</entry>
<entry>
<base>DESC_WARN_USER</base>
<trans>Should the user be warned when his account is about to expire</trans>
</entry>
<entry>
<base>LABEL_WARN_USER</base>
<trans>Notify user</trans>
</entry>
<entry>
<base>LABEL_USER_ACCOUNT</base>
<trans>User account</trans>
</entry>
<entry>
<base>DESC_LOCK_ON_DATE</base>
<trans>Specify the date on which the account will automatically be locked. The date must be in YYYY-MM-DD format, eg 2018-07-25 for July the 25th 2018. Keep this field blank to disable account expiration.</trans>
</entry>
<entry>
<base>LABEL_LOCK_ON_DATE</base>
<trans>Expiration date</trans>
</entry>
<entry>
<base>DESC_FORWARD_AFTER_LOCK</base>
<trans>You can enter an email address here. If this box is filled, then all the mails to the user will be forwarded to that address from the date the account expires. The forward will only be configured after the expiry.</trans>
</entry>
<entry>
<base>LABEL_FORWARD_AFTER_LOCK</base>
<trans>After expiry, forward email to</trans>
</entry>
<entry>
<base>DESC_AUTO_REPLY</base>
<trans>You can activate an automatic response: from the day the account expires, it is locked but remains valid. If this feature is enabled, email senders to the user's attention will automatically receive a response informing them that the user is no longer active, and asking them to update their address book.</trans>
</entry>
<entry>
<base>LABEL_AUTO_REPLY</base>
<trans>Auto reply</trans>
</entry>
<entry>
<base>DESC_DELETE_AFTER_LOCK</base>
<trans>You can choose to completely delete the account after it expires. Here you select the number of days the account will remain valid (but locked). Beyond this period, the data will be archived and the account deleted. Caution: this is the number of days before the account is deleted starting from the day the account is locked, not starting from today.</trans>
</entry>
<entry>
<base>LABEL_DELETE_AFTER_LOCK</base>
<trans>Delay before deleting the account (in days)</trans>
</entry>
<entry>
<base>NO_USER_ACCOUNTS</base>
<trans>No user account</trans>
</entry>
<entry>
<base>ACTIVE_ACCOUNT</base>
<trans>Account (active)</trans>
</entry>
<entry>
<base>USER_NAME</base>
<trans>Nome</trans>
</entry>
<entry>
<base>FORWARD</base>
<trans>Indirizzo d'inoltro</trans>
</entry>
<entry>
<base>DAYS_BEFORE_LOCK</base>
<trans>Days left until expiration</trans>
</entry>
<entry>
<base>ACTION</base>
<trans>Azione</trans>
</entry>
<entry>
<base>INACTIVE_ACCOUNT</base>
<trans>Account (inactive)</trans>
</entry>
<entry>
<base>DAYS_BEFORE_DELETE</base>
<trans>Days left until deletion</trans>
</entry>
<entry>
<base>TAINTED_USER</base>
<trans>Invalid characters in the account name</trans>
</entry>
<entry>
<base>CONFIG_MODIFIED</base>
<trans>Configuration has been modified</trans>
</entry>
<entry>
<base>NOT_A_USER_ACCOUNT</base>
<trans>This is not a user account</trans>
</entry>
<entry>
<base>USER_MODIFIED</base>
<trans>The user account has been modified</trans>
</entry>
<entry>
<base>MUST_BE_POSITIVE_NUMBER</base>
<trans>This value must be a positive integer</trans>
</entry>
<entry>
<base>DATE_FORMAT_INVALID</base>
<trans>Invalid date format. The date must of the form YYYY-MM-DD.</trans>
</entry>
<entry>
<base>DATE_IS_PASSED</base>
<trans>This date has passed. The expiration date must be in future</trans>
</entry>
<entry>
<base>BAD_SYNTAX</base>
<trans>This is not a valid email address</trans>
</entry>
<entry>
<base>never</base>
<trans>never</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,158 @@
<lexicon lang="ja">
<entry>
<base>Accounts Expiration</base>
<trans>Account expiration</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Account expiration management</trans>
</entry>
<entry>
<base>DESC_FIRSTPAGE</base>
<trans>This page lets you configure user accounts expiration.</trans>
</entry>
<entry>
<base>DESC_GENERAL_CONFIG_BUTTON</base>
<trans>General configuration</trans>
</entry>
<entry>
<base>DESC_MODIFY_CONFIG_PAGE</base>
<trans>The following parameters are global: they affect all users subject to an expiration of their account.</trans>
</entry>
<entry>
<base>DESC_WARNING_DELAY</base>
<trans>This value indicates how many days before the expiry of an account a reminder email will be sent to the administrator</trans>
</entry>
<entry>
<base>LABEL_WARNING_DELAY</base>
<trans>Notification threshold (in days)</trans>
</entry>
<entry>
<base>DESC_DAYS_BETWEEN_WARNINGS</base>
<trans>Several reminders can be sent to the administrator to ensure that no account is locked without being notified. This value determines the number of days between two notifications. For example, if this value is 5, the administrator will receive an alert every five daysi until the account expire.</trans>
</entry>
<entry>
<base>LABEL_DAYS_BETWEEN_WARNINGS</base>
<trans>Delay between two notifications (in days)</trans>
</entry>
<entry>
<base>DESC_WARNING_RECIPIENT</base>
<trans>By default, notifications are sent to the administrator. You can enter an alternative address.</trans>
</entry>
<entry>
<base>LABEL_WARNING_RECIPIENT</base>
<trans>Notifications recipient</trans>
</entry>
<entry>
<base>DESC_WARN_USER</base>
<trans>Should the user be warned when his account is about to expire</trans>
</entry>
<entry>
<base>LABEL_WARN_USER</base>
<trans>Notify user</trans>
</entry>
<entry>
<base>LABEL_USER_ACCOUNT</base>
<trans>User account</trans>
</entry>
<entry>
<base>DESC_LOCK_ON_DATE</base>
<trans>Specify the date on which the account will automatically be locked. The date must be in YYYY-MM-DD format, eg 2018-07-25 for July the 25th 2018. Keep this field blank to disable account expiration.</trans>
</entry>
<entry>
<base>LABEL_LOCK_ON_DATE</base>
<trans>Expiration date</trans>
</entry>
<entry>
<base>DESC_FORWARD_AFTER_LOCK</base>
<trans>You can enter an email address here. If this box is filled, then all the mails to the user will be forwarded to that address from the date the account expires. The forward will only be configured after the expiry.</trans>
</entry>
<entry>
<base>LABEL_FORWARD_AFTER_LOCK</base>
<trans>After expiry, forward email to</trans>
</entry>
<entry>
<base>DESC_AUTO_REPLY</base>
<trans>You can activate an automatic response: from the day the account expires, it is locked but remains valid. If this feature is enabled, email senders to the user's attention will automatically receive a response informing them that the user is no longer active, and asking them to update their address book.</trans>
</entry>
<entry>
<base>LABEL_AUTO_REPLY</base>
<trans>Auto reply</trans>
</entry>
<entry>
<base>DESC_DELETE_AFTER_LOCK</base>
<trans>You can choose to completely delete the account after it expires. Here you select the number of days the account will remain valid (but locked). Beyond this period, the data will be archived and the account deleted. Caution: this is the number of days before the account is deleted starting from the day the account is locked, not starting from today.</trans>
</entry>
<entry>
<base>LABEL_DELETE_AFTER_LOCK</base>
<trans>Delay before deleting the account (in days)</trans>
</entry>
<entry>
<base>NO_USER_ACCOUNTS</base>
<trans>No user account</trans>
</entry>
<entry>
<base>ACTIVE_ACCOUNT</base>
<trans>Account (active)</trans>
</entry>
<entry>
<base>USER_NAME</base>
<trans>氏名</trans>
</entry>
<entry>
<base>FORWARD</base>
<trans>Forwarding address</trans>
</entry>
<entry>
<base>DAYS_BEFORE_LOCK</base>
<trans>Days left until expiration</trans>
</entry>
<entry>
<base>ACTION</base>
<trans>Action</trans>
</entry>
<entry>
<base>INACTIVE_ACCOUNT</base>
<trans>Account (inactive)</trans>
</entry>
<entry>
<base>DAYS_BEFORE_DELETE</base>
<trans>Days left until deletion</trans>
</entry>
<entry>
<base>TAINTED_USER</base>
<trans>Invalid characters in the account name</trans>
</entry>
<entry>
<base>CONFIG_MODIFIED</base>
<trans>Configuration has been modified</trans>
</entry>
<entry>
<base>NOT_A_USER_ACCOUNT</base>
<trans>This is not a user account</trans>
</entry>
<entry>
<base>USER_MODIFIED</base>
<trans>The user account has been modified</trans>
</entry>
<entry>
<base>MUST_BE_POSITIVE_NUMBER</base>
<trans>This value must be a positive integer</trans>
</entry>
<entry>
<base>DATE_FORMAT_INVALID</base>
<trans>Invalid date format. The date must of the form YYYY-MM-DD.</trans>
</entry>
<entry>
<base>DATE_IS_PASSED</base>
<trans>This date has passed. The expiration date must be in future</trans>
</entry>
<entry>
<base>BAD_SYNTAX</base>
<trans>This is not a valid email address</trans>
</entry>
<entry>
<base>never</base>
<trans>never</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,158 @@
<lexicon lang="nb">
<entry>
<base>Accounts Expiration</base>
<trans>Account expiration</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Account expiration management</trans>
</entry>
<entry>
<base>DESC_FIRSTPAGE</base>
<trans>This page lets you configure user accounts expiration.</trans>
</entry>
<entry>
<base>DESC_GENERAL_CONFIG_BUTTON</base>
<trans>General configuration</trans>
</entry>
<entry>
<base>DESC_MODIFY_CONFIG_PAGE</base>
<trans>The following parameters are global: they affect all users subject to an expiration of their account.</trans>
</entry>
<entry>
<base>DESC_WARNING_DELAY</base>
<trans>This value indicates how many days before the expiry of an account a reminder email will be sent to the administrator</trans>
</entry>
<entry>
<base>LABEL_WARNING_DELAY</base>
<trans>Notification threshold (in days)</trans>
</entry>
<entry>
<base>DESC_DAYS_BETWEEN_WARNINGS</base>
<trans>Several reminders can be sent to the administrator to ensure that no account is locked without being notified. This value determines the number of days between two notifications. For example, if this value is 5, the administrator will receive an alert every five daysi until the account expire.</trans>
</entry>
<entry>
<base>LABEL_DAYS_BETWEEN_WARNINGS</base>
<trans>Delay between two notifications (in days)</trans>
</entry>
<entry>
<base>DESC_WARNING_RECIPIENT</base>
<trans>By default, notifications are sent to the administrator. You can enter an alternative address.</trans>
</entry>
<entry>
<base>LABEL_WARNING_RECIPIENT</base>
<trans>Notifications recipient</trans>
</entry>
<entry>
<base>DESC_WARN_USER</base>
<trans>Should the user be warned when his account is about to expire</trans>
</entry>
<entry>
<base>LABEL_WARN_USER</base>
<trans>Notify user</trans>
</entry>
<entry>
<base>LABEL_USER_ACCOUNT</base>
<trans>User account</trans>
</entry>
<entry>
<base>DESC_LOCK_ON_DATE</base>
<trans>Specify the date on which the account will automatically be locked. The date must be in YYYY-MM-DD format, eg 2018-07-25 for July the 25th 2018. Keep this field blank to disable account expiration.</trans>
</entry>
<entry>
<base>LABEL_LOCK_ON_DATE</base>
<trans>Expiration date</trans>
</entry>
<entry>
<base>DESC_FORWARD_AFTER_LOCK</base>
<trans>You can enter an email address here. If this box is filled, then all the mails to the user will be forwarded to that address from the date the account expires. The forward will only be configured after the expiry.</trans>
</entry>
<entry>
<base>LABEL_FORWARD_AFTER_LOCK</base>
<trans>After expiry, forward email to</trans>
</entry>
<entry>
<base>DESC_AUTO_REPLY</base>
<trans>You can activate an automatic response: from the day the account expires, it is locked but remains valid. If this feature is enabled, email senders to the user's attention will automatically receive a response informing them that the user is no longer active, and asking them to update their address book.</trans>
</entry>
<entry>
<base>LABEL_AUTO_REPLY</base>
<trans>Auto reply</trans>
</entry>
<entry>
<base>DESC_DELETE_AFTER_LOCK</base>
<trans>You can choose to completely delete the account after it expires. Here you select the number of days the account will remain valid (but locked). Beyond this period, the data will be archived and the account deleted. Caution: this is the number of days before the account is deleted starting from the day the account is locked, not starting from today.</trans>
</entry>
<entry>
<base>LABEL_DELETE_AFTER_LOCK</base>
<trans>Delay before deleting the account (in days)</trans>
</entry>
<entry>
<base>NO_USER_ACCOUNTS</base>
<trans>No user account</trans>
</entry>
<entry>
<base>ACTIVE_ACCOUNT</base>
<trans>Account (active)</trans>
</entry>
<entry>
<base>USER_NAME</base>
<trans>Navn</trans>
</entry>
<entry>
<base>FORWARD</base>
<trans>Videresendingsadresse</trans>
</entry>
<entry>
<base>DAYS_BEFORE_LOCK</base>
<trans>Days left until expiration</trans>
</entry>
<entry>
<base>ACTION</base>
<trans>Handling</trans>
</entry>
<entry>
<base>INACTIVE_ACCOUNT</base>
<trans>Account (inactive)</trans>
</entry>
<entry>
<base>DAYS_BEFORE_DELETE</base>
<trans>Days left until deletion</trans>
</entry>
<entry>
<base>TAINTED_USER</base>
<trans>Invalid characters in the account name</trans>
</entry>
<entry>
<base>CONFIG_MODIFIED</base>
<trans>Configuration has been modified</trans>
</entry>
<entry>
<base>NOT_A_USER_ACCOUNT</base>
<trans>This is not a user account</trans>
</entry>
<entry>
<base>USER_MODIFIED</base>
<trans>The user account has been modified</trans>
</entry>
<entry>
<base>MUST_BE_POSITIVE_NUMBER</base>
<trans>This value must be a positive integer</trans>
</entry>
<entry>
<base>DATE_FORMAT_INVALID</base>
<trans>Invalid date format. The date must of the form YYYY-MM-DD.</trans>
</entry>
<entry>
<base>DATE_IS_PASSED</base>
<trans>This date has passed. The expiration date must be in future</trans>
</entry>
<entry>
<base>BAD_SYNTAX</base>
<trans>This is not a valid email address</trans>
</entry>
<entry>
<base>never</base>
<trans>never</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,158 @@
<lexicon lang="nl">
<entry>
<base>Accounts Expiration</base>
<trans>Account expiration</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Account expiration management</trans>
</entry>
<entry>
<base>DESC_FIRSTPAGE</base>
<trans>This page lets you configure user accounts expiration.</trans>
</entry>
<entry>
<base>DESC_GENERAL_CONFIG_BUTTON</base>
<trans>General configuration</trans>
</entry>
<entry>
<base>DESC_MODIFY_CONFIG_PAGE</base>
<trans>The following parameters are global: they affect all users subject to an expiration of their account.</trans>
</entry>
<entry>
<base>DESC_WARNING_DELAY</base>
<trans>This value indicates how many days before the expiry of an account a reminder email will be sent to the administrator</trans>
</entry>
<entry>
<base>LABEL_WARNING_DELAY</base>
<trans>Notification threshold (in days)</trans>
</entry>
<entry>
<base>DESC_DAYS_BETWEEN_WARNINGS</base>
<trans>Several reminders can be sent to the administrator to ensure that no account is locked without being notified. This value determines the number of days between two notifications. For example, if this value is 5, the administrator will receive an alert every five daysi until the account expire.</trans>
</entry>
<entry>
<base>LABEL_DAYS_BETWEEN_WARNINGS</base>
<trans>Delay between two notifications (in days)</trans>
</entry>
<entry>
<base>DESC_WARNING_RECIPIENT</base>
<trans>By default, notifications are sent to the administrator. You can enter an alternative address.</trans>
</entry>
<entry>
<base>LABEL_WARNING_RECIPIENT</base>
<trans>Notifications recipient</trans>
</entry>
<entry>
<base>DESC_WARN_USER</base>
<trans>Should the user be warned when his account is about to expire</trans>
</entry>
<entry>
<base>LABEL_WARN_USER</base>
<trans>Notify user</trans>
</entry>
<entry>
<base>LABEL_USER_ACCOUNT</base>
<trans>User account</trans>
</entry>
<entry>
<base>DESC_LOCK_ON_DATE</base>
<trans>Specify the date on which the account will automatically be locked. The date must be in YYYY-MM-DD format, eg 2018-07-25 for July the 25th 2018. Keep this field blank to disable account expiration.</trans>
</entry>
<entry>
<base>LABEL_LOCK_ON_DATE</base>
<trans>Expiration date</trans>
</entry>
<entry>
<base>DESC_FORWARD_AFTER_LOCK</base>
<trans>You can enter an email address here. If this box is filled, then all the mails to the user will be forwarded to that address from the date the account expires. The forward will only be configured after the expiry.</trans>
</entry>
<entry>
<base>LABEL_FORWARD_AFTER_LOCK</base>
<trans>After expiry, forward email to</trans>
</entry>
<entry>
<base>DESC_AUTO_REPLY</base>
<trans>You can activate an automatic response: from the day the account expires, it is locked but remains valid. If this feature is enabled, email senders to the user's attention will automatically receive a response informing them that the user is no longer active, and asking them to update their address book.</trans>
</entry>
<entry>
<base>LABEL_AUTO_REPLY</base>
<trans>Auto reply</trans>
</entry>
<entry>
<base>DESC_DELETE_AFTER_LOCK</base>
<trans>You can choose to completely delete the account after it expires. Here you select the number of days the account will remain valid (but locked). Beyond this period, the data will be archived and the account deleted. Caution: this is the number of days before the account is deleted starting from the day the account is locked, not starting from today.</trans>
</entry>
<entry>
<base>LABEL_DELETE_AFTER_LOCK</base>
<trans>Delay before deleting the account (in days)</trans>
</entry>
<entry>
<base>NO_USER_ACCOUNTS</base>
<trans>No user account</trans>
</entry>
<entry>
<base>ACTIVE_ACCOUNT</base>
<trans>Account (active)</trans>
</entry>
<entry>
<base>USER_NAME</base>
<trans>Naam</trans>
</entry>
<entry>
<base>FORWARD</base>
<trans>Doorstuur adres</trans>
</entry>
<entry>
<base>DAYS_BEFORE_LOCK</base>
<trans>Days left until expiration</trans>
</entry>
<entry>
<base>ACTION</base>
<trans>Actie</trans>
</entry>
<entry>
<base>INACTIVE_ACCOUNT</base>
<trans>Account (inactive)</trans>
</entry>
<entry>
<base>DAYS_BEFORE_DELETE</base>
<trans>Days left until deletion</trans>
</entry>
<entry>
<base>TAINTED_USER</base>
<trans>Invalid characters in the account name</trans>
</entry>
<entry>
<base>CONFIG_MODIFIED</base>
<trans>Configuration has been modified</trans>
</entry>
<entry>
<base>NOT_A_USER_ACCOUNT</base>
<trans>This is not a user account</trans>
</entry>
<entry>
<base>USER_MODIFIED</base>
<trans>The user account has been modified</trans>
</entry>
<entry>
<base>MUST_BE_POSITIVE_NUMBER</base>
<trans>This value must be a positive integer</trans>
</entry>
<entry>
<base>DATE_FORMAT_INVALID</base>
<trans>Invalid date format. The date must of the form YYYY-MM-DD.</trans>
</entry>
<entry>
<base>DATE_IS_PASSED</base>
<trans>This date has passed. The expiration date must be in future</trans>
</entry>
<entry>
<base>BAD_SYNTAX</base>
<trans>This is not a valid email address</trans>
</entry>
<entry>
<base>never</base>
<trans>never</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,158 @@
<lexicon lang="pl">
<entry>
<base>Accounts Expiration</base>
<trans>Account expiration</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Account expiration management</trans>
</entry>
<entry>
<base>DESC_FIRSTPAGE</base>
<trans>This page lets you configure user accounts expiration.</trans>
</entry>
<entry>
<base>DESC_GENERAL_CONFIG_BUTTON</base>
<trans>General configuration</trans>
</entry>
<entry>
<base>DESC_MODIFY_CONFIG_PAGE</base>
<trans>The following parameters are global: they affect all users subject to an expiration of their account.</trans>
</entry>
<entry>
<base>DESC_WARNING_DELAY</base>
<trans>This value indicates how many days before the expiry of an account a reminder email will be sent to the administrator</trans>
</entry>
<entry>
<base>LABEL_WARNING_DELAY</base>
<trans>Notification threshold (in days)</trans>
</entry>
<entry>
<base>DESC_DAYS_BETWEEN_WARNINGS</base>
<trans>Several reminders can be sent to the administrator to ensure that no account is locked without being notified. This value determines the number of days between two notifications. For example, if this value is 5, the administrator will receive an alert every five daysi until the account expire.</trans>
</entry>
<entry>
<base>LABEL_DAYS_BETWEEN_WARNINGS</base>
<trans>Delay between two notifications (in days)</trans>
</entry>
<entry>
<base>DESC_WARNING_RECIPIENT</base>
<trans>By default, notifications are sent to the administrator. You can enter an alternative address.</trans>
</entry>
<entry>
<base>LABEL_WARNING_RECIPIENT</base>
<trans>Notifications recipient</trans>
</entry>
<entry>
<base>DESC_WARN_USER</base>
<trans>Should the user be warned when his account is about to expire</trans>
</entry>
<entry>
<base>LABEL_WARN_USER</base>
<trans>Notify user</trans>
</entry>
<entry>
<base>LABEL_USER_ACCOUNT</base>
<trans>User account</trans>
</entry>
<entry>
<base>DESC_LOCK_ON_DATE</base>
<trans>Specify the date on which the account will automatically be locked. The date must be in YYYY-MM-DD format, eg 2018-07-25 for July the 25th 2018. Keep this field blank to disable account expiration.</trans>
</entry>
<entry>
<base>LABEL_LOCK_ON_DATE</base>
<trans>Expiration date</trans>
</entry>
<entry>
<base>DESC_FORWARD_AFTER_LOCK</base>
<trans>You can enter an email address here. If this box is filled, then all the mails to the user will be forwarded to that address from the date the account expires. The forward will only be configured after the expiry.</trans>
</entry>
<entry>
<base>LABEL_FORWARD_AFTER_LOCK</base>
<trans>After expiry, forward email to</trans>
</entry>
<entry>
<base>DESC_AUTO_REPLY</base>
<trans>You can activate an automatic response: from the day the account expires, it is locked but remains valid. If this feature is enabled, email senders to the user's attention will automatically receive a response informing them that the user is no longer active, and asking them to update their address book.</trans>
</entry>
<entry>
<base>LABEL_AUTO_REPLY</base>
<trans>Auto reply</trans>
</entry>
<entry>
<base>DESC_DELETE_AFTER_LOCK</base>
<trans>You can choose to completely delete the account after it expires. Here you select the number of days the account will remain valid (but locked). Beyond this period, the data will be archived and the account deleted. Caution: this is the number of days before the account is deleted starting from the day the account is locked, not starting from today.</trans>
</entry>
<entry>
<base>LABEL_DELETE_AFTER_LOCK</base>
<trans>Delay before deleting the account (in days)</trans>
</entry>
<entry>
<base>NO_USER_ACCOUNTS</base>
<trans>No user account</trans>
</entry>
<entry>
<base>ACTIVE_ACCOUNT</base>
<trans>Account (active)</trans>
</entry>
<entry>
<base>USER_NAME</base>
<trans>Nazwa</trans>
</entry>
<entry>
<base>FORWARD</base>
<trans>Forwarding address</trans>
</entry>
<entry>
<base>DAYS_BEFORE_LOCK</base>
<trans>Days left until expiration</trans>
</entry>
<entry>
<base>ACTION</base>
<trans>Action</trans>
</entry>
<entry>
<base>INACTIVE_ACCOUNT</base>
<trans>Account (inactive)</trans>
</entry>
<entry>
<base>DAYS_BEFORE_DELETE</base>
<trans>Days left until deletion</trans>
</entry>
<entry>
<base>TAINTED_USER</base>
<trans>Invalid characters in the account name</trans>
</entry>
<entry>
<base>CONFIG_MODIFIED</base>
<trans>Configuration has been modified</trans>
</entry>
<entry>
<base>NOT_A_USER_ACCOUNT</base>
<trans>This is not a user account</trans>
</entry>
<entry>
<base>USER_MODIFIED</base>
<trans>The user account has been modified</trans>
</entry>
<entry>
<base>MUST_BE_POSITIVE_NUMBER</base>
<trans>This value must be a positive integer</trans>
</entry>
<entry>
<base>DATE_FORMAT_INVALID</base>
<trans>Invalid date format. The date must of the form YYYY-MM-DD.</trans>
</entry>
<entry>
<base>DATE_IS_PASSED</base>
<trans>This date has passed. The expiration date must be in future</trans>
</entry>
<entry>
<base>BAD_SYNTAX</base>
<trans>This is not a valid email address</trans>
</entry>
<entry>
<base>never</base>
<trans>never</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,158 @@
<lexicon lang="pt-br">
<entry>
<base>Accounts Expiration</base>
<trans>Account expiration</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Account expiration management</trans>
</entry>
<entry>
<base>DESC_FIRSTPAGE</base>
<trans>This page lets you configure user accounts expiration.</trans>
</entry>
<entry>
<base>DESC_GENERAL_CONFIG_BUTTON</base>
<trans>General configuration</trans>
</entry>
<entry>
<base>DESC_MODIFY_CONFIG_PAGE</base>
<trans>The following parameters are global: they affect all users subject to an expiration of their account.</trans>
</entry>
<entry>
<base>DESC_WARNING_DELAY</base>
<trans>This value indicates how many days before the expiry of an account a reminder email will be sent to the administrator</trans>
</entry>
<entry>
<base>LABEL_WARNING_DELAY</base>
<trans>Notification threshold (in days)</trans>
</entry>
<entry>
<base>DESC_DAYS_BETWEEN_WARNINGS</base>
<trans>Several reminders can be sent to the administrator to ensure that no account is locked without being notified. This value determines the number of days between two notifications. For example, if this value is 5, the administrator will receive an alert every five daysi until the account expire.</trans>
</entry>
<entry>
<base>LABEL_DAYS_BETWEEN_WARNINGS</base>
<trans>Delay between two notifications (in days)</trans>
</entry>
<entry>
<base>DESC_WARNING_RECIPIENT</base>
<trans>By default, notifications are sent to the administrator. You can enter an alternative address.</trans>
</entry>
<entry>
<base>LABEL_WARNING_RECIPIENT</base>
<trans>Notifications recipient</trans>
</entry>
<entry>
<base>DESC_WARN_USER</base>
<trans>Should the user be warned when his account is about to expire</trans>
</entry>
<entry>
<base>LABEL_WARN_USER</base>
<trans>Notify user</trans>
</entry>
<entry>
<base>LABEL_USER_ACCOUNT</base>
<trans>User account</trans>
</entry>
<entry>
<base>DESC_LOCK_ON_DATE</base>
<trans>Specify the date on which the account will automatically be locked. The date must be in YYYY-MM-DD format, eg 2018-07-25 for July the 25th 2018. Keep this field blank to disable account expiration.</trans>
</entry>
<entry>
<base>LABEL_LOCK_ON_DATE</base>
<trans>Expiration date</trans>
</entry>
<entry>
<base>DESC_FORWARD_AFTER_LOCK</base>
<trans>You can enter an email address here. If this box is filled, then all the mails to the user will be forwarded to that address from the date the account expires. The forward will only be configured after the expiry.</trans>
</entry>
<entry>
<base>LABEL_FORWARD_AFTER_LOCK</base>
<trans>After expiry, forward email to</trans>
</entry>
<entry>
<base>DESC_AUTO_REPLY</base>
<trans>You can activate an automatic response: from the day the account expires, it is locked but remains valid. If this feature is enabled, email senders to the user's attention will automatically receive a response informing them that the user is no longer active, and asking them to update their address book.</trans>
</entry>
<entry>
<base>LABEL_AUTO_REPLY</base>
<trans>Auto reply</trans>
</entry>
<entry>
<base>DESC_DELETE_AFTER_LOCK</base>
<trans>You can choose to completely delete the account after it expires. Here you select the number of days the account will remain valid (but locked). Beyond this period, the data will be archived and the account deleted. Caution: this is the number of days before the account is deleted starting from the day the account is locked, not starting from today.</trans>
</entry>
<entry>
<base>LABEL_DELETE_AFTER_LOCK</base>
<trans>Delay before deleting the account (in days)</trans>
</entry>
<entry>
<base>NO_USER_ACCOUNTS</base>
<trans>No user account</trans>
</entry>
<entry>
<base>ACTIVE_ACCOUNT</base>
<trans>Account (active)</trans>
</entry>
<entry>
<base>USER_NAME</base>
<trans>Nome</trans>
</entry>
<entry>
<base>FORWARD</base>
<trans>Endereço de encaminhamento</trans>
</entry>
<entry>
<base>DAYS_BEFORE_LOCK</base>
<trans>Days left until expiration</trans>
</entry>
<entry>
<base>ACTION</base>
<trans>Ação</trans>
</entry>
<entry>
<base>INACTIVE_ACCOUNT</base>
<trans>Account (inactive)</trans>
</entry>
<entry>
<base>DAYS_BEFORE_DELETE</base>
<trans>Days left until deletion</trans>
</entry>
<entry>
<base>TAINTED_USER</base>
<trans>Invalid characters in the account name</trans>
</entry>
<entry>
<base>CONFIG_MODIFIED</base>
<trans>Configuration has been modified</trans>
</entry>
<entry>
<base>NOT_A_USER_ACCOUNT</base>
<trans>This is not a user account</trans>
</entry>
<entry>
<base>USER_MODIFIED</base>
<trans>The user account has been modified</trans>
</entry>
<entry>
<base>MUST_BE_POSITIVE_NUMBER</base>
<trans>This value must be a positive integer</trans>
</entry>
<entry>
<base>DATE_FORMAT_INVALID</base>
<trans>Invalid date format. The date must of the form YYYY-MM-DD.</trans>
</entry>
<entry>
<base>DATE_IS_PASSED</base>
<trans>This date has passed. The expiration date must be in future</trans>
</entry>
<entry>
<base>BAD_SYNTAX</base>
<trans>This is not a valid email address</trans>
</entry>
<entry>
<base>never</base>
<trans>never</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,158 @@
<lexicon lang="pt">
<entry>
<base>Accounts Expiration</base>
<trans>Account expiration</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Account expiration management</trans>
</entry>
<entry>
<base>DESC_FIRSTPAGE</base>
<trans>This page lets you configure user accounts expiration.</trans>
</entry>
<entry>
<base>DESC_GENERAL_CONFIG_BUTTON</base>
<trans>General configuration</trans>
</entry>
<entry>
<base>DESC_MODIFY_CONFIG_PAGE</base>
<trans>The following parameters are global: they affect all users subject to an expiration of their account.</trans>
</entry>
<entry>
<base>DESC_WARNING_DELAY</base>
<trans>This value indicates how many days before the expiry of an account a reminder email will be sent to the administrator</trans>
</entry>
<entry>
<base>LABEL_WARNING_DELAY</base>
<trans>Notification threshold (in days)</trans>
</entry>
<entry>
<base>DESC_DAYS_BETWEEN_WARNINGS</base>
<trans>Several reminders can be sent to the administrator to ensure that no account is locked without being notified. This value determines the number of days between two notifications. For example, if this value is 5, the administrator will receive an alert every five daysi until the account expire.</trans>
</entry>
<entry>
<base>LABEL_DAYS_BETWEEN_WARNINGS</base>
<trans>Delay between two notifications (in days)</trans>
</entry>
<entry>
<base>DESC_WARNING_RECIPIENT</base>
<trans>By default, notifications are sent to the administrator. You can enter an alternative address.</trans>
</entry>
<entry>
<base>LABEL_WARNING_RECIPIENT</base>
<trans>Notifications recipient</trans>
</entry>
<entry>
<base>DESC_WARN_USER</base>
<trans>Should the user be warned when his account is about to expire</trans>
</entry>
<entry>
<base>LABEL_WARN_USER</base>
<trans>Notify user</trans>
</entry>
<entry>
<base>LABEL_USER_ACCOUNT</base>
<trans>User account</trans>
</entry>
<entry>
<base>DESC_LOCK_ON_DATE</base>
<trans>Specify the date on which the account will automatically be locked. The date must be in YYYY-MM-DD format, eg 2018-07-25 for July the 25th 2018. Keep this field blank to disable account expiration.</trans>
</entry>
<entry>
<base>LABEL_LOCK_ON_DATE</base>
<trans>Expiration date</trans>
</entry>
<entry>
<base>DESC_FORWARD_AFTER_LOCK</base>
<trans>You can enter an email address here. If this box is filled, then all the mails to the user will be forwarded to that address from the date the account expires. The forward will only be configured after the expiry.</trans>
</entry>
<entry>
<base>LABEL_FORWARD_AFTER_LOCK</base>
<trans>After expiry, forward email to</trans>
</entry>
<entry>
<base>DESC_AUTO_REPLY</base>
<trans>You can activate an automatic response: from the day the account expires, it is locked but remains valid. If this feature is enabled, email senders to the user's attention will automatically receive a response informing them that the user is no longer active, and asking them to update their address book.</trans>
</entry>
<entry>
<base>LABEL_AUTO_REPLY</base>
<trans>Auto reply</trans>
</entry>
<entry>
<base>DESC_DELETE_AFTER_LOCK</base>
<trans>You can choose to completely delete the account after it expires. Here you select the number of days the account will remain valid (but locked). Beyond this period, the data will be archived and the account deleted. Caution: this is the number of days before the account is deleted starting from the day the account is locked, not starting from today.</trans>
</entry>
<entry>
<base>LABEL_DELETE_AFTER_LOCK</base>
<trans>Delay before deleting the account (in days)</trans>
</entry>
<entry>
<base>NO_USER_ACCOUNTS</base>
<trans>No user account</trans>
</entry>
<entry>
<base>ACTIVE_ACCOUNT</base>
<trans>Account (active)</trans>
</entry>
<entry>
<base>USER_NAME</base>
<trans>Nome</trans>
</entry>
<entry>
<base>FORWARD</base>
<trans>Endereço de encaminhamento</trans>
</entry>
<entry>
<base>DAYS_BEFORE_LOCK</base>
<trans>Days left until expiration</trans>
</entry>
<entry>
<base>ACTION</base>
<trans>Ação</trans>
</entry>
<entry>
<base>INACTIVE_ACCOUNT</base>
<trans>Account (inactive)</trans>
</entry>
<entry>
<base>DAYS_BEFORE_DELETE</base>
<trans>Days left until deletion</trans>
</entry>
<entry>
<base>TAINTED_USER</base>
<trans>Invalid characters in the account name</trans>
</entry>
<entry>
<base>CONFIG_MODIFIED</base>
<trans>Configuration has been modified</trans>
</entry>
<entry>
<base>NOT_A_USER_ACCOUNT</base>
<trans>This is not a user account</trans>
</entry>
<entry>
<base>USER_MODIFIED</base>
<trans>The user account has been modified</trans>
</entry>
<entry>
<base>MUST_BE_POSITIVE_NUMBER</base>
<trans>This value must be a positive integer</trans>
</entry>
<entry>
<base>DATE_FORMAT_INVALID</base>
<trans>Invalid date format. The date must of the form YYYY-MM-DD.</trans>
</entry>
<entry>
<base>DATE_IS_PASSED</base>
<trans>This date has passed. The expiration date must be in future</trans>
</entry>
<entry>
<base>BAD_SYNTAX</base>
<trans>This is not a valid email address</trans>
</entry>
<entry>
<base>never</base>
<trans>never</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,158 @@
<lexicon lang="ro">
<entry>
<base>Accounts Expiration</base>
<trans>Account expiration</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Account expiration management</trans>
</entry>
<entry>
<base>DESC_FIRSTPAGE</base>
<trans>This page lets you configure user accounts expiration.</trans>
</entry>
<entry>
<base>DESC_GENERAL_CONFIG_BUTTON</base>
<trans>General configuration</trans>
</entry>
<entry>
<base>DESC_MODIFY_CONFIG_PAGE</base>
<trans>The following parameters are global: they affect all users subject to an expiration of their account.</trans>
</entry>
<entry>
<base>DESC_WARNING_DELAY</base>
<trans>This value indicates how many days before the expiry of an account a reminder email will be sent to the administrator</trans>
</entry>
<entry>
<base>LABEL_WARNING_DELAY</base>
<trans>Notification threshold (in days)</trans>
</entry>
<entry>
<base>DESC_DAYS_BETWEEN_WARNINGS</base>
<trans>Several reminders can be sent to the administrator to ensure that no account is locked without being notified. This value determines the number of days between two notifications. For example, if this value is 5, the administrator will receive an alert every five daysi until the account expire.</trans>
</entry>
<entry>
<base>LABEL_DAYS_BETWEEN_WARNINGS</base>
<trans>Delay between two notifications (in days)</trans>
</entry>
<entry>
<base>DESC_WARNING_RECIPIENT</base>
<trans>By default, notifications are sent to the administrator. You can enter an alternative address.</trans>
</entry>
<entry>
<base>LABEL_WARNING_RECIPIENT</base>
<trans>Notifications recipient</trans>
</entry>
<entry>
<base>DESC_WARN_USER</base>
<trans>Should the user be warned when his account is about to expire</trans>
</entry>
<entry>
<base>LABEL_WARN_USER</base>
<trans>Notify user</trans>
</entry>
<entry>
<base>LABEL_USER_ACCOUNT</base>
<trans>User account</trans>
</entry>
<entry>
<base>DESC_LOCK_ON_DATE</base>
<trans>Specify the date on which the account will automatically be locked. The date must be in YYYY-MM-DD format, eg 2018-07-25 for July the 25th 2018. Keep this field blank to disable account expiration.</trans>
</entry>
<entry>
<base>LABEL_LOCK_ON_DATE</base>
<trans>Expiration date</trans>
</entry>
<entry>
<base>DESC_FORWARD_AFTER_LOCK</base>
<trans>You can enter an email address here. If this box is filled, then all the mails to the user will be forwarded to that address from the date the account expires. The forward will only be configured after the expiry.</trans>
</entry>
<entry>
<base>LABEL_FORWARD_AFTER_LOCK</base>
<trans>After expiry, forward email to</trans>
</entry>
<entry>
<base>DESC_AUTO_REPLY</base>
<trans>You can activate an automatic response: from the day the account expires, it is locked but remains valid. If this feature is enabled, email senders to the user's attention will automatically receive a response informing them that the user is no longer active, and asking them to update their address book.</trans>
</entry>
<entry>
<base>LABEL_AUTO_REPLY</base>
<trans>Auto reply</trans>
</entry>
<entry>
<base>DESC_DELETE_AFTER_LOCK</base>
<trans>You can choose to completely delete the account after it expires. Here you select the number of days the account will remain valid (but locked). Beyond this period, the data will be archived and the account deleted. Caution: this is the number of days before the account is deleted starting from the day the account is locked, not starting from today.</trans>
</entry>
<entry>
<base>LABEL_DELETE_AFTER_LOCK</base>
<trans>Delay before deleting the account (in days)</trans>
</entry>
<entry>
<base>NO_USER_ACCOUNTS</base>
<trans>No user account</trans>
</entry>
<entry>
<base>ACTIVE_ACCOUNT</base>
<trans>Account (active)</trans>
</entry>
<entry>
<base>USER_NAME</base>
<trans>Nume</trans>
</entry>
<entry>
<base>FORWARD</base>
<trans>Forwarding address</trans>
</entry>
<entry>
<base>DAYS_BEFORE_LOCK</base>
<trans>Days left until expiration</trans>
</entry>
<entry>
<base>ACTION</base>
<trans>Acțiune</trans>
</entry>
<entry>
<base>INACTIVE_ACCOUNT</base>
<trans>Account (inactive)</trans>
</entry>
<entry>
<base>DAYS_BEFORE_DELETE</base>
<trans>Days left until deletion</trans>
</entry>
<entry>
<base>TAINTED_USER</base>
<trans>Invalid characters in the account name</trans>
</entry>
<entry>
<base>CONFIG_MODIFIED</base>
<trans>Configuration has been modified</trans>
</entry>
<entry>
<base>NOT_A_USER_ACCOUNT</base>
<trans>This is not a user account</trans>
</entry>
<entry>
<base>USER_MODIFIED</base>
<trans>The user account has been modified</trans>
</entry>
<entry>
<base>MUST_BE_POSITIVE_NUMBER</base>
<trans>This value must be a positive integer</trans>
</entry>
<entry>
<base>DATE_FORMAT_INVALID</base>
<trans>Invalid date format. The date must of the form YYYY-MM-DD.</trans>
</entry>
<entry>
<base>DATE_IS_PASSED</base>
<trans>This date has passed. The expiration date must be in future</trans>
</entry>
<entry>
<base>BAD_SYNTAX</base>
<trans>This is not a valid email address</trans>
</entry>
<entry>
<base>never</base>
<trans>never</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,158 @@
<lexicon lang="ru">
<entry>
<base>Accounts Expiration</base>
<trans>Account expiration</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Account expiration management</trans>
</entry>
<entry>
<base>DESC_FIRSTPAGE</base>
<trans>This page lets you configure user accounts expiration.</trans>
</entry>
<entry>
<base>DESC_GENERAL_CONFIG_BUTTON</base>
<trans>General configuration</trans>
</entry>
<entry>
<base>DESC_MODIFY_CONFIG_PAGE</base>
<trans>The following parameters are global: they affect all users subject to an expiration of their account.</trans>
</entry>
<entry>
<base>DESC_WARNING_DELAY</base>
<trans>This value indicates how many days before the expiry of an account a reminder email will be sent to the administrator</trans>
</entry>
<entry>
<base>LABEL_WARNING_DELAY</base>
<trans>Notification threshold (in days)</trans>
</entry>
<entry>
<base>DESC_DAYS_BETWEEN_WARNINGS</base>
<trans>Several reminders can be sent to the administrator to ensure that no account is locked without being notified. This value determines the number of days between two notifications. For example, if this value is 5, the administrator will receive an alert every five daysi until the account expire.</trans>
</entry>
<entry>
<base>LABEL_DAYS_BETWEEN_WARNINGS</base>
<trans>Delay between two notifications (in days)</trans>
</entry>
<entry>
<base>DESC_WARNING_RECIPIENT</base>
<trans>By default, notifications are sent to the administrator. You can enter an alternative address.</trans>
</entry>
<entry>
<base>LABEL_WARNING_RECIPIENT</base>
<trans>Notifications recipient</trans>
</entry>
<entry>
<base>DESC_WARN_USER</base>
<trans>Should the user be warned when his account is about to expire</trans>
</entry>
<entry>
<base>LABEL_WARN_USER</base>
<trans>Notify user</trans>
</entry>
<entry>
<base>LABEL_USER_ACCOUNT</base>
<trans>User account</trans>
</entry>
<entry>
<base>DESC_LOCK_ON_DATE</base>
<trans>Specify the date on which the account will automatically be locked. The date must be in YYYY-MM-DD format, eg 2018-07-25 for July the 25th 2018. Keep this field blank to disable account expiration.</trans>
</entry>
<entry>
<base>LABEL_LOCK_ON_DATE</base>
<trans>Expiration date</trans>
</entry>
<entry>
<base>DESC_FORWARD_AFTER_LOCK</base>
<trans>You can enter an email address here. If this box is filled, then all the mails to the user will be forwarded to that address from the date the account expires. The forward will only be configured after the expiry.</trans>
</entry>
<entry>
<base>LABEL_FORWARD_AFTER_LOCK</base>
<trans>After expiry, forward email to</trans>
</entry>
<entry>
<base>DESC_AUTO_REPLY</base>
<trans>You can activate an automatic response: from the day the account expires, it is locked but remains valid. If this feature is enabled, email senders to the user's attention will automatically receive a response informing them that the user is no longer active, and asking them to update their address book.</trans>
</entry>
<entry>
<base>LABEL_AUTO_REPLY</base>
<trans>Auto reply</trans>
</entry>
<entry>
<base>DESC_DELETE_AFTER_LOCK</base>
<trans>You can choose to completely delete the account after it expires. Here you select the number of days the account will remain valid (but locked). Beyond this period, the data will be archived and the account deleted. Caution: this is the number of days before the account is deleted starting from the day the account is locked, not starting from today.</trans>
</entry>
<entry>
<base>LABEL_DELETE_AFTER_LOCK</base>
<trans>Delay before deleting the account (in days)</trans>
</entry>
<entry>
<base>NO_USER_ACCOUNTS</base>
<trans>No user account</trans>
</entry>
<entry>
<base>ACTIVE_ACCOUNT</base>
<trans>Account (active)</trans>
</entry>
<entry>
<base>USER_NAME</base>
<trans>Название</trans>
</entry>
<entry>
<base>FORWARD</base>
<trans>Адрес перенаправления</trans>
</entry>
<entry>
<base>DAYS_BEFORE_LOCK</base>
<trans>Days left until expiration</trans>
</entry>
<entry>
<base>ACTION</base>
<trans>Действие</trans>
</entry>
<entry>
<base>INACTIVE_ACCOUNT</base>
<trans>Account (inactive)</trans>
</entry>
<entry>
<base>DAYS_BEFORE_DELETE</base>
<trans>Days left until deletion</trans>
</entry>
<entry>
<base>TAINTED_USER</base>
<trans>Invalid characters in the account name</trans>
</entry>
<entry>
<base>CONFIG_MODIFIED</base>
<trans>Configuration has been modified</trans>
</entry>
<entry>
<base>NOT_A_USER_ACCOUNT</base>
<trans>This is not a user account</trans>
</entry>
<entry>
<base>USER_MODIFIED</base>
<trans>The user account has been modified</trans>
</entry>
<entry>
<base>MUST_BE_POSITIVE_NUMBER</base>
<trans>This value must be a positive integer</trans>
</entry>
<entry>
<base>DATE_FORMAT_INVALID</base>
<trans>Invalid date format. The date must of the form YYYY-MM-DD.</trans>
</entry>
<entry>
<base>DATE_IS_PASSED</base>
<trans>This date has passed. The expiration date must be in future</trans>
</entry>
<entry>
<base>BAD_SYNTAX</base>
<trans>This is not a valid email address</trans>
</entry>
<entry>
<base>never</base>
<trans>never</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,158 @@
<lexicon lang="sl">
<entry>
<base>Accounts Expiration</base>
<trans>Account expiration</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Account expiration management</trans>
</entry>
<entry>
<base>DESC_FIRSTPAGE</base>
<trans>This page lets you configure user accounts expiration.</trans>
</entry>
<entry>
<base>DESC_GENERAL_CONFIG_BUTTON</base>
<trans>General configuration</trans>
</entry>
<entry>
<base>DESC_MODIFY_CONFIG_PAGE</base>
<trans>The following parameters are global: they affect all users subject to an expiration of their account.</trans>
</entry>
<entry>
<base>DESC_WARNING_DELAY</base>
<trans>This value indicates how many days before the expiry of an account a reminder email will be sent to the administrator</trans>
</entry>
<entry>
<base>LABEL_WARNING_DELAY</base>
<trans>Notification threshold (in days)</trans>
</entry>
<entry>
<base>DESC_DAYS_BETWEEN_WARNINGS</base>
<trans>Several reminders can be sent to the administrator to ensure that no account is locked without being notified. This value determines the number of days between two notifications. For example, if this value is 5, the administrator will receive an alert every five daysi until the account expire.</trans>
</entry>
<entry>
<base>LABEL_DAYS_BETWEEN_WARNINGS</base>
<trans>Delay between two notifications (in days)</trans>
</entry>
<entry>
<base>DESC_WARNING_RECIPIENT</base>
<trans>By default, notifications are sent to the administrator. You can enter an alternative address.</trans>
</entry>
<entry>
<base>LABEL_WARNING_RECIPIENT</base>
<trans>Notifications recipient</trans>
</entry>
<entry>
<base>DESC_WARN_USER</base>
<trans>Should the user be warned when his account is about to expire</trans>
</entry>
<entry>
<base>LABEL_WARN_USER</base>
<trans>Notify user</trans>
</entry>
<entry>
<base>LABEL_USER_ACCOUNT</base>
<trans>User account</trans>
</entry>
<entry>
<base>DESC_LOCK_ON_DATE</base>
<trans>Specify the date on which the account will automatically be locked. The date must be in YYYY-MM-DD format, eg 2018-07-25 for July the 25th 2018. Keep this field blank to disable account expiration.</trans>
</entry>
<entry>
<base>LABEL_LOCK_ON_DATE</base>
<trans>Expiration date</trans>
</entry>
<entry>
<base>DESC_FORWARD_AFTER_LOCK</base>
<trans>You can enter an email address here. If this box is filled, then all the mails to the user will be forwarded to that address from the date the account expires. The forward will only be configured after the expiry.</trans>
</entry>
<entry>
<base>LABEL_FORWARD_AFTER_LOCK</base>
<trans>After expiry, forward email to</trans>
</entry>
<entry>
<base>DESC_AUTO_REPLY</base>
<trans>You can activate an automatic response: from the day the account expires, it is locked but remains valid. If this feature is enabled, email senders to the user's attention will automatically receive a response informing them that the user is no longer active, and asking them to update their address book.</trans>
</entry>
<entry>
<base>LABEL_AUTO_REPLY</base>
<trans>Auto reply</trans>
</entry>
<entry>
<base>DESC_DELETE_AFTER_LOCK</base>
<trans>You can choose to completely delete the account after it expires. Here you select the number of days the account will remain valid (but locked). Beyond this period, the data will be archived and the account deleted. Caution: this is the number of days before the account is deleted starting from the day the account is locked, not starting from today.</trans>
</entry>
<entry>
<base>LABEL_DELETE_AFTER_LOCK</base>
<trans>Delay before deleting the account (in days)</trans>
</entry>
<entry>
<base>NO_USER_ACCOUNTS</base>
<trans>No user account</trans>
</entry>
<entry>
<base>ACTIVE_ACCOUNT</base>
<trans>Account (active)</trans>
</entry>
<entry>
<base>USER_NAME</base>
<trans>Ime</trans>
</entry>
<entry>
<base>FORWARD</base>
<trans>Posto posreduj na</trans>
</entry>
<entry>
<base>DAYS_BEFORE_LOCK</base>
<trans>Days left until expiration</trans>
</entry>
<entry>
<base>ACTION</base>
<trans>Izvedi</trans>
</entry>
<entry>
<base>INACTIVE_ACCOUNT</base>
<trans>Account (inactive)</trans>
</entry>
<entry>
<base>DAYS_BEFORE_DELETE</base>
<trans>Days left until deletion</trans>
</entry>
<entry>
<base>TAINTED_USER</base>
<trans>Invalid characters in the account name</trans>
</entry>
<entry>
<base>CONFIG_MODIFIED</base>
<trans>Configuration has been modified</trans>
</entry>
<entry>
<base>NOT_A_USER_ACCOUNT</base>
<trans>This is not a user account</trans>
</entry>
<entry>
<base>USER_MODIFIED</base>
<trans>The user account has been modified</trans>
</entry>
<entry>
<base>MUST_BE_POSITIVE_NUMBER</base>
<trans>This value must be a positive integer</trans>
</entry>
<entry>
<base>DATE_FORMAT_INVALID</base>
<trans>Invalid date format. The date must of the form YYYY-MM-DD.</trans>
</entry>
<entry>
<base>DATE_IS_PASSED</base>
<trans>This date has passed. The expiration date must be in future</trans>
</entry>
<entry>
<base>BAD_SYNTAX</base>
<trans>This is not a valid email address</trans>
</entry>
<entry>
<base>never</base>
<trans>never</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,158 @@
<lexicon lang="sv">
<entry>
<base>Accounts Expiration</base>
<trans>Account expiration</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Account expiration management</trans>
</entry>
<entry>
<base>DESC_FIRSTPAGE</base>
<trans>This page lets you configure user accounts expiration.</trans>
</entry>
<entry>
<base>DESC_GENERAL_CONFIG_BUTTON</base>
<trans>General configuration</trans>
</entry>
<entry>
<base>DESC_MODIFY_CONFIG_PAGE</base>
<trans>The following parameters are global: they affect all users subject to an expiration of their account.</trans>
</entry>
<entry>
<base>DESC_WARNING_DELAY</base>
<trans>This value indicates how many days before the expiry of an account a reminder email will be sent to the administrator</trans>
</entry>
<entry>
<base>LABEL_WARNING_DELAY</base>
<trans>Notification threshold (in days)</trans>
</entry>
<entry>
<base>DESC_DAYS_BETWEEN_WARNINGS</base>
<trans>Several reminders can be sent to the administrator to ensure that no account is locked without being notified. This value determines the number of days between two notifications. For example, if this value is 5, the administrator will receive an alert every five daysi until the account expire.</trans>
</entry>
<entry>
<base>LABEL_DAYS_BETWEEN_WARNINGS</base>
<trans>Delay between two notifications (in days)</trans>
</entry>
<entry>
<base>DESC_WARNING_RECIPIENT</base>
<trans>By default, notifications are sent to the administrator. You can enter an alternative address.</trans>
</entry>
<entry>
<base>LABEL_WARNING_RECIPIENT</base>
<trans>Notifications recipient</trans>
</entry>
<entry>
<base>DESC_WARN_USER</base>
<trans>Should the user be warned when his account is about to expire</trans>
</entry>
<entry>
<base>LABEL_WARN_USER</base>
<trans>Notify user</trans>
</entry>
<entry>
<base>LABEL_USER_ACCOUNT</base>
<trans>User account</trans>
</entry>
<entry>
<base>DESC_LOCK_ON_DATE</base>
<trans>Specify the date on which the account will automatically be locked. The date must be in YYYY-MM-DD format, eg 2018-07-25 for July the 25th 2018. Keep this field blank to disable account expiration.</trans>
</entry>
<entry>
<base>LABEL_LOCK_ON_DATE</base>
<trans>Expiration date</trans>
</entry>
<entry>
<base>DESC_FORWARD_AFTER_LOCK</base>
<trans>You can enter an email address here. If this box is filled, then all the mails to the user will be forwarded to that address from the date the account expires. The forward will only be configured after the expiry.</trans>
</entry>
<entry>
<base>LABEL_FORWARD_AFTER_LOCK</base>
<trans>After expiry, forward email to</trans>
</entry>
<entry>
<base>DESC_AUTO_REPLY</base>
<trans>You can activate an automatic response: from the day the account expires, it is locked but remains valid. If this feature is enabled, email senders to the user's attention will automatically receive a response informing them that the user is no longer active, and asking them to update their address book.</trans>
</entry>
<entry>
<base>LABEL_AUTO_REPLY</base>
<trans>Auto reply</trans>
</entry>
<entry>
<base>DESC_DELETE_AFTER_LOCK</base>
<trans>You can choose to completely delete the account after it expires. Here you select the number of days the account will remain valid (but locked). Beyond this period, the data will be archived and the account deleted. Caution: this is the number of days before the account is deleted starting from the day the account is locked, not starting from today.</trans>
</entry>
<entry>
<base>LABEL_DELETE_AFTER_LOCK</base>
<trans>Delay before deleting the account (in days)</trans>
</entry>
<entry>
<base>NO_USER_ACCOUNTS</base>
<trans>No user account</trans>
</entry>
<entry>
<base>ACTIVE_ACCOUNT</base>
<trans>Account (active)</trans>
</entry>
<entry>
<base>USER_NAME</base>
<trans>Namn</trans>
</entry>
<entry>
<base>FORWARD</base>
<trans>Adress för vidarebefordran</trans>
</entry>
<entry>
<base>DAYS_BEFORE_LOCK</base>
<trans>Days left until expiration</trans>
</entry>
<entry>
<base>ACTION</base>
<trans>Verkställ</trans>
</entry>
<entry>
<base>INACTIVE_ACCOUNT</base>
<trans>Account (inactive)</trans>
</entry>
<entry>
<base>DAYS_BEFORE_DELETE</base>
<trans>Days left until deletion</trans>
</entry>
<entry>
<base>TAINTED_USER</base>
<trans>Invalid characters in the account name</trans>
</entry>
<entry>
<base>CONFIG_MODIFIED</base>
<trans>Configuration has been modified</trans>
</entry>
<entry>
<base>NOT_A_USER_ACCOUNT</base>
<trans>This is not a user account</trans>
</entry>
<entry>
<base>USER_MODIFIED</base>
<trans>The user account has been modified</trans>
</entry>
<entry>
<base>MUST_BE_POSITIVE_NUMBER</base>
<trans>This value must be a positive integer</trans>
</entry>
<entry>
<base>DATE_FORMAT_INVALID</base>
<trans>Invalid date format. The date must of the form YYYY-MM-DD.</trans>
</entry>
<entry>
<base>DATE_IS_PASSED</base>
<trans>This date has passed. The expiration date must be in future</trans>
</entry>
<entry>
<base>BAD_SYNTAX</base>
<trans>This is not a valid email address</trans>
</entry>
<entry>
<base>never</base>
<trans>never</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,158 @@
<lexicon lang="th">
<entry>
<base>Accounts Expiration</base>
<trans>Account expiration</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Account expiration management</trans>
</entry>
<entry>
<base>DESC_FIRSTPAGE</base>
<trans>This page lets you configure user accounts expiration.</trans>
</entry>
<entry>
<base>DESC_GENERAL_CONFIG_BUTTON</base>
<trans>General configuration</trans>
</entry>
<entry>
<base>DESC_MODIFY_CONFIG_PAGE</base>
<trans>The following parameters are global: they affect all users subject to an expiration of their account.</trans>
</entry>
<entry>
<base>DESC_WARNING_DELAY</base>
<trans>This value indicates how many days before the expiry of an account a reminder email will be sent to the administrator</trans>
</entry>
<entry>
<base>LABEL_WARNING_DELAY</base>
<trans>Notification threshold (in days)</trans>
</entry>
<entry>
<base>DESC_DAYS_BETWEEN_WARNINGS</base>
<trans>Several reminders can be sent to the administrator to ensure that no account is locked without being notified. This value determines the number of days between two notifications. For example, if this value is 5, the administrator will receive an alert every five daysi until the account expire.</trans>
</entry>
<entry>
<base>LABEL_DAYS_BETWEEN_WARNINGS</base>
<trans>Delay between two notifications (in days)</trans>
</entry>
<entry>
<base>DESC_WARNING_RECIPIENT</base>
<trans>By default, notifications are sent to the administrator. You can enter an alternative address.</trans>
</entry>
<entry>
<base>LABEL_WARNING_RECIPIENT</base>
<trans>Notifications recipient</trans>
</entry>
<entry>
<base>DESC_WARN_USER</base>
<trans>Should the user be warned when his account is about to expire</trans>
</entry>
<entry>
<base>LABEL_WARN_USER</base>
<trans>Notify user</trans>
</entry>
<entry>
<base>LABEL_USER_ACCOUNT</base>
<trans>User account</trans>
</entry>
<entry>
<base>DESC_LOCK_ON_DATE</base>
<trans>Specify the date on which the account will automatically be locked. The date must be in YYYY-MM-DD format, eg 2018-07-25 for July the 25th 2018. Keep this field blank to disable account expiration.</trans>
</entry>
<entry>
<base>LABEL_LOCK_ON_DATE</base>
<trans>Expiration date</trans>
</entry>
<entry>
<base>DESC_FORWARD_AFTER_LOCK</base>
<trans>You can enter an email address here. If this box is filled, then all the mails to the user will be forwarded to that address from the date the account expires. The forward will only be configured after the expiry.</trans>
</entry>
<entry>
<base>LABEL_FORWARD_AFTER_LOCK</base>
<trans>After expiry, forward email to</trans>
</entry>
<entry>
<base>DESC_AUTO_REPLY</base>
<trans>You can activate an automatic response: from the day the account expires, it is locked but remains valid. If this feature is enabled, email senders to the user's attention will automatically receive a response informing them that the user is no longer active, and asking them to update their address book.</trans>
</entry>
<entry>
<base>LABEL_AUTO_REPLY</base>
<trans>Auto reply</trans>
</entry>
<entry>
<base>DESC_DELETE_AFTER_LOCK</base>
<trans>You can choose to completely delete the account after it expires. Here you select the number of days the account will remain valid (but locked). Beyond this period, the data will be archived and the account deleted. Caution: this is the number of days before the account is deleted starting from the day the account is locked, not starting from today.</trans>
</entry>
<entry>
<base>LABEL_DELETE_AFTER_LOCK</base>
<trans>Delay before deleting the account (in days)</trans>
</entry>
<entry>
<base>NO_USER_ACCOUNTS</base>
<trans>No user account</trans>
</entry>
<entry>
<base>ACTIVE_ACCOUNT</base>
<trans>Account (active)</trans>
</entry>
<entry>
<base>USER_NAME</base>
<trans>ชื่อ</trans>
</entry>
<entry>
<base>FORWARD</base>
<trans>ที่อยู่ส่งต่อ</trans>
</entry>
<entry>
<base>DAYS_BEFORE_LOCK</base>
<trans>Days left until expiration</trans>
</entry>
<entry>
<base>ACTION</base>
<trans>การดำเนินการ</trans>
</entry>
<entry>
<base>INACTIVE_ACCOUNT</base>
<trans>Account (inactive)</trans>
</entry>
<entry>
<base>DAYS_BEFORE_DELETE</base>
<trans>Days left until deletion</trans>
</entry>
<entry>
<base>TAINTED_USER</base>
<trans>Invalid characters in the account name</trans>
</entry>
<entry>
<base>CONFIG_MODIFIED</base>
<trans>Configuration has been modified</trans>
</entry>
<entry>
<base>NOT_A_USER_ACCOUNT</base>
<trans>This is not a user account</trans>
</entry>
<entry>
<base>USER_MODIFIED</base>
<trans>The user account has been modified</trans>
</entry>
<entry>
<base>MUST_BE_POSITIVE_NUMBER</base>
<trans>This value must be a positive integer</trans>
</entry>
<entry>
<base>DATE_FORMAT_INVALID</base>
<trans>Invalid date format. The date must of the form YYYY-MM-DD.</trans>
</entry>
<entry>
<base>DATE_IS_PASSED</base>
<trans>This date has passed. The expiration date must be in future</trans>
</entry>
<entry>
<base>BAD_SYNTAX</base>
<trans>This is not a valid email address</trans>
</entry>
<entry>
<base>never</base>
<trans>never</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,158 @@
<lexicon lang="tr">
<entry>
<base>Accounts Expiration</base>
<trans>Account expiration</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Account expiration management</trans>
</entry>
<entry>
<base>DESC_FIRSTPAGE</base>
<trans>This page lets you configure user accounts expiration.</trans>
</entry>
<entry>
<base>DESC_GENERAL_CONFIG_BUTTON</base>
<trans>General configuration</trans>
</entry>
<entry>
<base>DESC_MODIFY_CONFIG_PAGE</base>
<trans>The following parameters are global: they affect all users subject to an expiration of their account.</trans>
</entry>
<entry>
<base>DESC_WARNING_DELAY</base>
<trans>This value indicates how many days before the expiry of an account a reminder email will be sent to the administrator</trans>
</entry>
<entry>
<base>LABEL_WARNING_DELAY</base>
<trans>Notification threshold (in days)</trans>
</entry>
<entry>
<base>DESC_DAYS_BETWEEN_WARNINGS</base>
<trans>Several reminders can be sent to the administrator to ensure that no account is locked without being notified. This value determines the number of days between two notifications. For example, if this value is 5, the administrator will receive an alert every five daysi until the account expire.</trans>
</entry>
<entry>
<base>LABEL_DAYS_BETWEEN_WARNINGS</base>
<trans>Delay between two notifications (in days)</trans>
</entry>
<entry>
<base>DESC_WARNING_RECIPIENT</base>
<trans>By default, notifications are sent to the administrator. You can enter an alternative address.</trans>
</entry>
<entry>
<base>LABEL_WARNING_RECIPIENT</base>
<trans>Notifications recipient</trans>
</entry>
<entry>
<base>DESC_WARN_USER</base>
<trans>Should the user be warned when his account is about to expire</trans>
</entry>
<entry>
<base>LABEL_WARN_USER</base>
<trans>Notify user</trans>
</entry>
<entry>
<base>LABEL_USER_ACCOUNT</base>
<trans>User account</trans>
</entry>
<entry>
<base>DESC_LOCK_ON_DATE</base>
<trans>Specify the date on which the account will automatically be locked. The date must be in YYYY-MM-DD format, eg 2018-07-25 for July the 25th 2018. Keep this field blank to disable account expiration.</trans>
</entry>
<entry>
<base>LABEL_LOCK_ON_DATE</base>
<trans>Expiration date</trans>
</entry>
<entry>
<base>DESC_FORWARD_AFTER_LOCK</base>
<trans>You can enter an email address here. If this box is filled, then all the mails to the user will be forwarded to that address from the date the account expires. The forward will only be configured after the expiry.</trans>
</entry>
<entry>
<base>LABEL_FORWARD_AFTER_LOCK</base>
<trans>After expiry, forward email to</trans>
</entry>
<entry>
<base>DESC_AUTO_REPLY</base>
<trans>You can activate an automatic response: from the day the account expires, it is locked but remains valid. If this feature is enabled, email senders to the user's attention will automatically receive a response informing them that the user is no longer active, and asking them to update their address book.</trans>
</entry>
<entry>
<base>LABEL_AUTO_REPLY</base>
<trans>Auto reply</trans>
</entry>
<entry>
<base>DESC_DELETE_AFTER_LOCK</base>
<trans>You can choose to completely delete the account after it expires. Here you select the number of days the account will remain valid (but locked). Beyond this period, the data will be archived and the account deleted. Caution: this is the number of days before the account is deleted starting from the day the account is locked, not starting from today.</trans>
</entry>
<entry>
<base>LABEL_DELETE_AFTER_LOCK</base>
<trans>Delay before deleting the account (in days)</trans>
</entry>
<entry>
<base>NO_USER_ACCOUNTS</base>
<trans>No user account</trans>
</entry>
<entry>
<base>ACTIVE_ACCOUNT</base>
<trans>Account (active)</trans>
</entry>
<entry>
<base>USER_NAME</base>
<trans>İsim</trans>
</entry>
<entry>
<base>FORWARD</base>
<trans>Varış adresi</trans>
</entry>
<entry>
<base>DAYS_BEFORE_LOCK</base>
<trans>Days left until expiration</trans>
</entry>
<entry>
<base>ACTION</base>
<trans>Eylem</trans>
</entry>
<entry>
<base>INACTIVE_ACCOUNT</base>
<trans>Account (inactive)</trans>
</entry>
<entry>
<base>DAYS_BEFORE_DELETE</base>
<trans>Days left until deletion</trans>
</entry>
<entry>
<base>TAINTED_USER</base>
<trans>Invalid characters in the account name</trans>
</entry>
<entry>
<base>CONFIG_MODIFIED</base>
<trans>Configuration has been modified</trans>
</entry>
<entry>
<base>NOT_A_USER_ACCOUNT</base>
<trans>This is not a user account</trans>
</entry>
<entry>
<base>USER_MODIFIED</base>
<trans>The user account has been modified</trans>
</entry>
<entry>
<base>MUST_BE_POSITIVE_NUMBER</base>
<trans>This value must be a positive integer</trans>
</entry>
<entry>
<base>DATE_FORMAT_INVALID</base>
<trans>Invalid date format. The date must of the form YYYY-MM-DD.</trans>
</entry>
<entry>
<base>DATE_IS_PASSED</base>
<trans>This date has passed. The expiration date must be in future</trans>
</entry>
<entry>
<base>BAD_SYNTAX</base>
<trans>This is not a valid email address</trans>
</entry>
<entry>
<base>never</base>
<trans>never</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,158 @@
<lexicon lang="zh-cn">
<entry>
<base>Accounts Expiration</base>
<trans>Account expiration</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Account expiration management</trans>
</entry>
<entry>
<base>DESC_FIRSTPAGE</base>
<trans>This page lets you configure user accounts expiration.</trans>
</entry>
<entry>
<base>DESC_GENERAL_CONFIG_BUTTON</base>
<trans>General configuration</trans>
</entry>
<entry>
<base>DESC_MODIFY_CONFIG_PAGE</base>
<trans>The following parameters are global: they affect all users subject to an expiration of their account.</trans>
</entry>
<entry>
<base>DESC_WARNING_DELAY</base>
<trans>This value indicates how many days before the expiry of an account a reminder email will be sent to the administrator</trans>
</entry>
<entry>
<base>LABEL_WARNING_DELAY</base>
<trans>Notification threshold (in days)</trans>
</entry>
<entry>
<base>DESC_DAYS_BETWEEN_WARNINGS</base>
<trans>Several reminders can be sent to the administrator to ensure that no account is locked without being notified. This value determines the number of days between two notifications. For example, if this value is 5, the administrator will receive an alert every five daysi until the account expire.</trans>
</entry>
<entry>
<base>LABEL_DAYS_BETWEEN_WARNINGS</base>
<trans>Delay between two notifications (in days)</trans>
</entry>
<entry>
<base>DESC_WARNING_RECIPIENT</base>
<trans>By default, notifications are sent to the administrator. You can enter an alternative address.</trans>
</entry>
<entry>
<base>LABEL_WARNING_RECIPIENT</base>
<trans>Notifications recipient</trans>
</entry>
<entry>
<base>DESC_WARN_USER</base>
<trans>Should the user be warned when his account is about to expire</trans>
</entry>
<entry>
<base>LABEL_WARN_USER</base>
<trans>Notify user</trans>
</entry>
<entry>
<base>LABEL_USER_ACCOUNT</base>
<trans>账号</trans>
</entry>
<entry>
<base>DESC_LOCK_ON_DATE</base>
<trans>Specify the date on which the account will automatically be locked. The date must be in YYYY-MM-DD format, eg 2018-07-25 for July the 25th 2018. Keep this field blank to disable account expiration.</trans>
</entry>
<entry>
<base>LABEL_LOCK_ON_DATE</base>
<trans>Expiration date</trans>
</entry>
<entry>
<base>DESC_FORWARD_AFTER_LOCK</base>
<trans>You can enter an email address here. If this box is filled, then all the mails to the user will be forwarded to that address from the date the account expires. The forward will only be configured after the expiry.</trans>
</entry>
<entry>
<base>LABEL_FORWARD_AFTER_LOCK</base>
<trans>After expiry, forward email to</trans>
</entry>
<entry>
<base>DESC_AUTO_REPLY</base>
<trans>You can activate an automatic response: from the day the account expires, it is locked but remains valid. If this feature is enabled, email senders to the user's attention will automatically receive a response informing them that the user is no longer active, and asking them to update their address book.</trans>
</entry>
<entry>
<base>LABEL_AUTO_REPLY</base>
<trans>Auto reply</trans>
</entry>
<entry>
<base>DESC_DELETE_AFTER_LOCK</base>
<trans>You can choose to completely delete the account after it expires. Here you select the number of days the account will remain valid (but locked). Beyond this period, the data will be archived and the account deleted. Caution: this is the number of days before the account is deleted starting from the day the account is locked, not starting from today.</trans>
</entry>
<entry>
<base>LABEL_DELETE_AFTER_LOCK</base>
<trans>Delay before deleting the account (in days)</trans>
</entry>
<entry>
<base>NO_USER_ACCOUNTS</base>
<trans>No user account</trans>
</entry>
<entry>
<base>ACTIVE_ACCOUNT</base>
<trans>Account (active)</trans>
</entry>
<entry>
<base>USER_NAME</base>
<trans>姓名</trans>
</entry>
<entry>
<base>FORWARD</base>
<trans>转发地址</trans>
</entry>
<entry>
<base>DAYS_BEFORE_LOCK</base>
<trans>Days left until expiration</trans>
</entry>
<entry>
<base>ACTION</base>
<trans>动作</trans>
</entry>
<entry>
<base>INACTIVE_ACCOUNT</base>
<trans>Account (inactive)</trans>
</entry>
<entry>
<base>DAYS_BEFORE_DELETE</base>
<trans>Days left until deletion</trans>
</entry>
<entry>
<base>TAINTED_USER</base>
<trans>Invalid characters in the account name</trans>
</entry>
<entry>
<base>CONFIG_MODIFIED</base>
<trans>Configuration has been modified</trans>
</entry>
<entry>
<base>NOT_A_USER_ACCOUNT</base>
<trans>This is not a user account</trans>
</entry>
<entry>
<base>USER_MODIFIED</base>
<trans>The user account has been modified</trans>
</entry>
<entry>
<base>MUST_BE_POSITIVE_NUMBER</base>
<trans>This value must be a positive integer</trans>
</entry>
<entry>
<base>DATE_FORMAT_INVALID</base>
<trans>Invalid date format. The date must of the form YYYY-MM-DD.</trans>
</entry>
<entry>
<base>DATE_IS_PASSED</base>
<trans>This date has passed. The expiration date must be in future</trans>
</entry>
<entry>
<base>BAD_SYNTAX</base>
<trans>This is not a valid email address</trans>
</entry>
<entry>
<base>never</base>
<trans>never</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,158 @@
<lexicon lang="zh-tw">
<entry>
<base>Accounts Expiration</base>
<trans>Account expiration</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Account expiration management</trans>
</entry>
<entry>
<base>DESC_FIRSTPAGE</base>
<trans>This page lets you configure user accounts expiration.</trans>
</entry>
<entry>
<base>DESC_GENERAL_CONFIG_BUTTON</base>
<trans>General configuration</trans>
</entry>
<entry>
<base>DESC_MODIFY_CONFIG_PAGE</base>
<trans>The following parameters are global: they affect all users subject to an expiration of their account.</trans>
</entry>
<entry>
<base>DESC_WARNING_DELAY</base>
<trans>This value indicates how many days before the expiry of an account a reminder email will be sent to the administrator</trans>
</entry>
<entry>
<base>LABEL_WARNING_DELAY</base>
<trans>Notification threshold (in days)</trans>
</entry>
<entry>
<base>DESC_DAYS_BETWEEN_WARNINGS</base>
<trans>Several reminders can be sent to the administrator to ensure that no account is locked without being notified. This value determines the number of days between two notifications. For example, if this value is 5, the administrator will receive an alert every five daysi until the account expire.</trans>
</entry>
<entry>
<base>LABEL_DAYS_BETWEEN_WARNINGS</base>
<trans>Delay between two notifications (in days)</trans>
</entry>
<entry>
<base>DESC_WARNING_RECIPIENT</base>
<trans>By default, notifications are sent to the administrator. You can enter an alternative address.</trans>
</entry>
<entry>
<base>LABEL_WARNING_RECIPIENT</base>
<trans>Notifications recipient</trans>
</entry>
<entry>
<base>DESC_WARN_USER</base>
<trans>Should the user be warned when his account is about to expire</trans>
</entry>
<entry>
<base>LABEL_WARN_USER</base>
<trans>Notify user</trans>
</entry>
<entry>
<base>LABEL_USER_ACCOUNT</base>
<trans>User account</trans>
</entry>
<entry>
<base>DESC_LOCK_ON_DATE</base>
<trans>Specify the date on which the account will automatically be locked. The date must be in YYYY-MM-DD format, eg 2018-07-25 for July the 25th 2018. Keep this field blank to disable account expiration.</trans>
</entry>
<entry>
<base>LABEL_LOCK_ON_DATE</base>
<trans>Expiration date</trans>
</entry>
<entry>
<base>DESC_FORWARD_AFTER_LOCK</base>
<trans>You can enter an email address here. If this box is filled, then all the mails to the user will be forwarded to that address from the date the account expires. The forward will only be configured after the expiry.</trans>
</entry>
<entry>
<base>LABEL_FORWARD_AFTER_LOCK</base>
<trans>After expiry, forward email to</trans>
</entry>
<entry>
<base>DESC_AUTO_REPLY</base>
<trans>You can activate an automatic response: from the day the account expires, it is locked but remains valid. If this feature is enabled, email senders to the user's attention will automatically receive a response informing them that the user is no longer active, and asking them to update their address book.</trans>
</entry>
<entry>
<base>LABEL_AUTO_REPLY</base>
<trans>Auto reply</trans>
</entry>
<entry>
<base>DESC_DELETE_AFTER_LOCK</base>
<trans>You can choose to completely delete the account after it expires. Here you select the number of days the account will remain valid (but locked). Beyond this period, the data will be archived and the account deleted. Caution: this is the number of days before the account is deleted starting from the day the account is locked, not starting from today.</trans>
</entry>
<entry>
<base>LABEL_DELETE_AFTER_LOCK</base>
<trans>Delay before deleting the account (in days)</trans>
</entry>
<entry>
<base>NO_USER_ACCOUNTS</base>
<trans>No user account</trans>
</entry>
<entry>
<base>ACTIVE_ACCOUNT</base>
<trans>Account (active)</trans>
</entry>
<entry>
<base>USER_NAME</base>
<trans>名稱</trans>
</entry>
<entry>
<base>FORWARD</base>
<trans>轉遞位址</trans>
</entry>
<entry>
<base>DAYS_BEFORE_LOCK</base>
<trans>Days left until expiration</trans>
</entry>
<entry>
<base>ACTION</base>
<trans>動作</trans>
</entry>
<entry>
<base>INACTIVE_ACCOUNT</base>
<trans>Account (inactive)</trans>
</entry>
<entry>
<base>DAYS_BEFORE_DELETE</base>
<trans>Days left until deletion</trans>
</entry>
<entry>
<base>TAINTED_USER</base>
<trans>Invalid characters in the account name</trans>
</entry>
<entry>
<base>CONFIG_MODIFIED</base>
<trans>Configuration has been modified</trans>
</entry>
<entry>
<base>NOT_A_USER_ACCOUNT</base>
<trans>This is not a user account</trans>
</entry>
<entry>
<base>USER_MODIFIED</base>
<trans>The user account has been modified</trans>
</entry>
<entry>
<base>MUST_BE_POSITIVE_NUMBER</base>
<trans>This value must be a positive integer</trans>
</entry>
<entry>
<base>DATE_FORMAT_INVALID</base>
<trans>Invalid date format. The date must of the form YYYY-MM-DD.</trans>
</entry>
<entry>
<base>DATE_IS_PASSED</base>
<trans>This date has passed. The expiration date must be in future</trans>
</entry>
<entry>
<base>BAD_SYNTAX</base>
<trans>This is not a valid email address</trans>
</entry>
<entry>
<base>never</base>
<trans>never</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,38 @@
{
use esmith::AccountsDB;
use esmith::I18N;
use Locale::gettext;
use MIME::Lite;
my $i18n = new esmith::I18N;
$i18n->setLocale('lockAutoReply.tmpl');
die "USERNAME not set" unless defined ($USERNAME);
$a = esmith::AccountsDB->open_ro or die "Couldn't open AccountsDB";
$user = $a->get($USERNAME) or die "No user $USERNAME in AccountsDB";
%props = $user->props;
$props{EmailForward} ||= 'local';
my $fwd = ($props{EmailForward} =~ /^(forward|both)$/) ?
sprintf(gettext("Your mail has been forwarded to %s"), ($props{ForwardAddress} || 'devnull@' . $DomainName)) . ".\n" .
gettext("This forward is only temporary, you should update your addressbook.") : "";
my $msg = MIME::Lite->new(
Subject => gettext("This account is no longer valid"),
From => 'no-reply@' . $DomainName,
Data => gettext("This is an automatic message in reply to your email with the following subject:") . "\n\n" .
'%S' . "\n\n" .
gettext("I'm sorry to inform you that this email address is no longer valid.") . "\n" . $fwd . "\n\n\n\n" .
gettext("Please note that this is an automatic email. Do not respond, it won't be treated")
);
$msg->scrub([ 'Date', 'X-Mailer' ]);
$msg->attr("content-type" => "text/plain");
$msg->attr("content-type.charset" => "utf-8");
$OUT = $msg->as_string;
}

View File

@@ -0,0 +1,15 @@
{
use User::pwent;
my $pwd = $props{'PasswordSet'} || 'no';
my $locked = $props{'ExpireLockedOn'} || '';
my $reply = $props{'ExpireAutoReply'} || 'enabled';
if ($pwd eq 'yes' || $locked !~ m/^\d{4}\-\d{1,2}\-\d{1,2}$/ || $reply !~ m/^enabled|yes|on|1$/){
return ""
}
$OUT .= "| /usr/bin/qmail-autoresponder " . getpwnam($USERNAME)->dir . "/.lock-auto-reply\n";
}

View File

@@ -0,0 +1,8 @@
{
if (($ExpireAccounts{'status'} || 'disabled') ne 'enabled'){
$OUT .= "# Account expiration is disabled\n";
}
else{
$OUT .= "1 0 * * * root /sbin/e-smith/expire-accounts\n";
}
}

View File

@@ -0,0 +1,26 @@
{
use esmith::I18N;
use Locale::gettext;
my $i18n = new esmith::I18N;
$i18n->setLocale('adminNotifNextExpirations.tmpl');
my $domain = $conf->get_value("DomainName") || "localhost";
my $systemName = $conf->get_value("SystemName") || "SME Server";
$OUT .= "To: ".gettext("System Administrator")." <admin\@${domain}>\n";
$OUT .= "From: \"".
gettext("Account Expiration Notifier").
"\" <do-not-reply\@${domain}>\n";
$OUT .= "Subject: ".
gettext("One or more user accounts will expire soon").
"\n";
$OUT .= "Content-Type: text/plain; charset='utf-8'\n";
$OUT .= "Content-Transfer-Encoding: 8bit\n";
$OUT .= gettext("The following user accounts will expire soon:\n\n");
foreach my $u (sort keys %$users){
$OUT .= " * " . sprintf(gettext("%s will expire in %d days"), "$users->{$u}->{name} ($u)", $users->{$u}->{remaining}) . "\n";
}
}

View File

@@ -0,0 +1,23 @@
{
use esmith::I18N;
use Locale::gettext;
my $i18n = new esmith::I18N;
$i18n->setLocale('userNotifAccountExpiration.tmpl');
my $domain = $conf->get_value("DomainName") || "localhost";
my $systemName = $conf->get_value("SystemName") || "SME Server";
$OUT .= "To: <${user}\@${domain}>\n";
$OUT .= "From: \"".
gettext("Account Expiration Notifier").
"\" <do-not-reply\@${domain}>\n";
$OUT .= "Subject: ".
gettext("Your user account will expire soon").
"\n";
$OUT .= "Content-Type: text/plain; charset='utf-8'\n";
$OUT .= "Content-Transfer-Encoding: 8bit\n";
$OUT .= sprintf gettext("Your user account will expire in %d days, after what it will be locked"), $days;
$OUT .= "\n\n" . gettext("Please contact your network administrator for more details.");
}

View File

@@ -0,0 +1,104 @@
#!/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>