diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3aa8108 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.rpm +*.log +*spec-20* +*.tgz diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5d576f8 --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +# Makefile for source rpm: smeserver-mailalias +# $Id: Makefile,v 1.1 2020/12/20 05:37:17 brianr Exp $ +NAME := smeserver-mailalias +SPECFILE = $(firstword $(wildcard *.spec)) + +define find-makefile-common +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +endef + +MAKEFILE_COMMON := $(shell $(find-makefile-common)) + +ifeq ($(MAKEFILE_COMMON),) +# attept a checkout +define checkout-makefile-common +test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 +endef + +MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) +endif + +include $(MAKEFILE_COMMON) diff --git a/README.md b/README.md index 25b7ef7..14b3d66 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,15 @@ -# smeserver-mailalias +# smeserver-mailalias -SMEServer Koozali developed git repo for smeserver-mailalias smecontribs \ No newline at end of file +SMEServer Koozali developed git repo for smeserver-mailalias smecontribs + +## Wiki +
https://wiki.koozali.org/Mailalias + +## Bugzilla +Show list of outstanding bugs: [here](https://bugs.koozali.org/buglist.cgi?component=smeserver-mailalias&product=SME%20Contribs&query_format=advanced&limit=0&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=CONFIRMED) + +## Description + +
*This description has been generated by an LLM AI system and cannot be relied on to be fully correct.* +*Once it has been checked, then this comment will be deleted* +
diff --git a/contriborbase b/contriborbase new file mode 100644 index 0000000..9b7fd51 --- /dev/null +++ b/contriborbase @@ -0,0 +1 @@ +contribs10 diff --git a/createlinks b/createlinks new file mode 100755 index 0000000..6266e9f --- /dev/null +++ b/createlinks @@ -0,0 +1,17 @@ +#!/usr/bin/perl -w + +use esmith::Build::CreateLinks qw(:all); + +panel_link("mailalias", "manager"); + +#service_link_enhanced("mailalias", "S01", "7"); + +#safe_symlink('restart', "root/etc/e-smith/events/conf-denyhosts/services2adjust/mailalias"); + +foreach $file ( + qw(/var/qmail/alias/.qmail-mailalias /var/service/qpsmtpd/config/goodrcptto)) +{ + templates2events($file, qw(bootstrap-console-save mailalias-modify)); +} + +exit 0; diff --git a/root/etc/e-smith/events/actions/qmail-delete-mailalias b/root/etc/e-smith/events/actions/qmail-delete-mailalias new file mode 100755 index 0000000..8e10196 --- /dev/null +++ b/root/etc/e-smith/events/actions/qmail-delete-mailalias @@ -0,0 +1,50 @@ +#!/usr/bin/perl -w + +#---------------------------------------------------------------------- +# copyright (C) 1999-2005 Mitel Networks Corporation +# +# 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 +# +#---------------------------------------------------------------------- + +package esmith; + +use strict; +use Errno; +use esmith::AccountsDB; +use esmith::DB; + +my $a = esmith::AccountsDB->open_ro || die "Couldn't open accounts db\n"; + +my $event = $ARGV [0]; +my $mailaliasName = $ARGV [1]; + +die "Mailalias name argument missing." unless defined ($mailaliasName); + +my $g = $a->get($mailaliasName) || + die "Mailalias $mailaliasName not found in account db"; +my $type = $g->prop('type'); +if ($type =~/^mailalias/) + +{ +$mailaliasName =~ s/\./:/g; +unlink "/var/qmail/alias/.qmail-$mailaliasName"; +unlink "/var/qmail/alias/.qmail-$mailaliasName-default"; +} +else +{ +die "Expected a mailalias. Got $type"; +} +exit (0); diff --git a/root/etc/e-smith/events/actions/qmail-update-mailalias b/root/etc/e-smith/events/actions/qmail-update-mailalias new file mode 100755 index 0000000..dfc0a4c --- /dev/null +++ b/root/etc/e-smith/events/actions/qmail-update-mailalias @@ -0,0 +1,97 @@ +#!/usr/bin/perl -w + +#---------------------------------------------------------------------- +# copyright (C) 2002-2006 Mitel Networks Corporation +# +# 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 +# +#---------------------------------------------------------------------- + +package esmith; + +use strict; +use Errno; +use esmith::ConfigDB; +use esmith::AccountsDB; +use esmith::util; +use esmith::DB + +my $c = esmith::ConfigDB->open_ro || die "Couldn't open config db\n"; +my $a = esmith::AccountsDB->open_ro || die "Couldn't open accounts db\n"; + +my $event = $ARGV [0] || die "Event name arg missing\n";; +my @mailaliases; + +if ($ARGV[1]) +{ + my $mailalias = $ARGV [1]; + my $g = $a->get($mailalias) || + die "Mailalias $mailalias not found in accounts db\n"; + + my $type = $g->prop('type'); + if ($type =~ /^mailalias/) + { + @mailaliases = ($g); + + } + else + { + die "Expected a mailalias. Got: $type\n"; + } +} + +# Regenerate all the groups if the previous block failed in some way. +unless (@mailaliases) +{ + #@mailaliases = $a->mailalias; # a faire ? + @mailaliases = $a->get_all_by_prop('type'=>'mailalias'); # a faire ? +} + +foreach my $mailalias (@mailaliases) +{ + my $mailaliasName = $mailalias->key; + unless ($mailalias->prop('type') eq 'mailalias') + { + warn "Account $mailaliasName is not a mailalias account.\n"; + next; + } + my %properties = $mailalias->props; + $mailaliasName =~ s/\./:/g; + #my $group = "/var/qmail/alias/.qmail-$groupName"; + my $members = $properties{email}; + + esmith::util::processTemplate( + { + CONFREF => + { + Members => $members, + }, + + TEMPLATE_PATH => + "/var/qmail/alias/.qmail-mailalias", + + OUTPUT_FILENAME => "/var/qmail/alias/.qmail-$mailaliasName", + } + ); + + unless (-f "/var/qmail/alias/.qmail-$mailaliasName-default") + { + symlink "/var/qmail/alias/.qmail-$mailaliasName", + "/var/qmail/alias/.qmail-$mailaliasName-default"; + } + +} + +exit (0); diff --git a/root/etc/e-smith/events/mailalias-create/S50qmail-update-mailalias b/root/etc/e-smith/events/mailalias-create/S50qmail-update-mailalias new file mode 120000 index 0000000..fb32866 --- /dev/null +++ b/root/etc/e-smith/events/mailalias-create/S50qmail-update-mailalias @@ -0,0 +1 @@ +/etc/e-smith/events/actions/qmail-update-mailalias \ No newline at end of file diff --git a/root/etc/e-smith/events/mailalias-create/S55email-assign b/root/etc/e-smith/events/mailalias-create/S55email-assign new file mode 120000 index 0000000..e8d44b8 --- /dev/null +++ b/root/etc/e-smith/events/mailalias-create/S55email-assign @@ -0,0 +1 @@ +/var/qmail/bin/qmail-newu \ No newline at end of file diff --git a/root/etc/e-smith/events/mailalias-create/services2adjust/qmail b/root/etc/e-smith/events/mailalias-create/services2adjust/qmail new file mode 120000 index 0000000..a53dc64 --- /dev/null +++ b/root/etc/e-smith/events/mailalias-create/services2adjust/qmail @@ -0,0 +1 @@ +sighup \ No newline at end of file diff --git a/root/etc/e-smith/events/mailalias-create/templates2expand/var/qmail/control/badrcptto b/root/etc/e-smith/events/mailalias-create/templates2expand/var/qmail/control/badrcptto new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/e-smith/events/mailalias-create/templates2expand/var/qmail/control/virtualdomains b/root/etc/e-smith/events/mailalias-create/templates2expand/var/qmail/control/virtualdomains new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/e-smith/events/mailalias-create/templates2expand/var/qmail/users/assign b/root/etc/e-smith/events/mailalias-create/templates2expand/var/qmail/users/assign new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/e-smith/events/mailalias-create/templates2expand/var/service/qpsmtpd/config/goodrcptto b/root/etc/e-smith/events/mailalias-create/templates2expand/var/service/qpsmtpd/config/goodrcptto new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/e-smith/events/mailalias-delete/S50qmail-delete-mailalias b/root/etc/e-smith/events/mailalias-delete/S50qmail-delete-mailalias new file mode 120000 index 0000000..31d8765 --- /dev/null +++ b/root/etc/e-smith/events/mailalias-delete/S50qmail-delete-mailalias @@ -0,0 +1 @@ +/etc/e-smith/events/actions/qmail-delete-mailalias \ No newline at end of file diff --git a/root/etc/e-smith/events/mailalias-delete/S55email-assign b/root/etc/e-smith/events/mailalias-delete/S55email-assign new file mode 120000 index 0000000..e8d44b8 --- /dev/null +++ b/root/etc/e-smith/events/mailalias-delete/S55email-assign @@ -0,0 +1 @@ +/var/qmail/bin/qmail-newu \ No newline at end of file diff --git a/root/etc/e-smith/events/mailalias-delete/services2adjust/qmail b/root/etc/e-smith/events/mailalias-delete/services2adjust/qmail new file mode 120000 index 0000000..a53dc64 --- /dev/null +++ b/root/etc/e-smith/events/mailalias-delete/services2adjust/qmail @@ -0,0 +1 @@ +sighup \ No newline at end of file diff --git a/root/etc/e-smith/events/mailalias-delete/templates2expand/var/qmail/control/badrcptto b/root/etc/e-smith/events/mailalias-delete/templates2expand/var/qmail/control/badrcptto new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/e-smith/events/mailalias-delete/templates2expand/var/qmail/control/virtualdomains b/root/etc/e-smith/events/mailalias-delete/templates2expand/var/qmail/control/virtualdomains new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/e-smith/events/mailalias-delete/templates2expand/var/qmail/users/assign b/root/etc/e-smith/events/mailalias-delete/templates2expand/var/qmail/users/assign new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/e-smith/events/mailalias-delete/templates2expand/var/service/qpsmtpd/config/goodrcptto b/root/etc/e-smith/events/mailalias-delete/templates2expand/var/service/qpsmtpd/config/goodrcptto new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/e-smith/events/mailalias-modify/S50qmail-update-mailalias b/root/etc/e-smith/events/mailalias-modify/S50qmail-update-mailalias new file mode 120000 index 0000000..fb32866 --- /dev/null +++ b/root/etc/e-smith/events/mailalias-modify/S50qmail-update-mailalias @@ -0,0 +1 @@ +/etc/e-smith/events/actions/qmail-update-mailalias \ No newline at end of file diff --git a/root/etc/e-smith/events/mailalias-modify/S55email-assign b/root/etc/e-smith/events/mailalias-modify/S55email-assign new file mode 120000 index 0000000..e8d44b8 --- /dev/null +++ b/root/etc/e-smith/events/mailalias-modify/S55email-assign @@ -0,0 +1 @@ +/var/qmail/bin/qmail-newu \ No newline at end of file diff --git a/root/etc/e-smith/events/mailalias-modify/services2adjust/qmail b/root/etc/e-smith/events/mailalias-modify/services2adjust/qmail new file mode 120000 index 0000000..a53dc64 --- /dev/null +++ b/root/etc/e-smith/events/mailalias-modify/services2adjust/qmail @@ -0,0 +1 @@ +sighup \ No newline at end of file diff --git a/root/etc/e-smith/events/mailalias-modify/templates2expand/var/qmail/control/badrcptto b/root/etc/e-smith/events/mailalias-modify/templates2expand/var/qmail/control/badrcptto new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/e-smith/events/mailalias-modify/templates2expand/var/qmail/control/virtualdomains b/root/etc/e-smith/events/mailalias-modify/templates2expand/var/qmail/control/virtualdomains new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/e-smith/events/mailalias-modify/templates2expand/var/qmail/users/assign b/root/etc/e-smith/events/mailalias-modify/templates2expand/var/qmail/users/assign new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/e-smith/events/mailalias-modify/templates2expand/var/service/qpsmtpd/config/goodrcptto b/root/etc/e-smith/events/mailalias-modify/templates2expand/var/service/qpsmtpd/config/goodrcptto new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/e-smith/events/smeserver-mailalias-update/.gitignore b/root/etc/e-smith/events/smeserver-mailalias-update/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/e-smith/locale/bg/etc/e-smith/web/functions/mailalias b/root/etc/e-smith/locale/bg/etc/e-smith/web/functions/mailalias new file mode 100644 index 0000000..46da21a --- /dev/null +++ b/root/etc/e-smith/locale/bg/etc/e-smith/web/functions/mailalias @@ -0,0 +1,135 @@ + + + CLICK_TO_CREATE + Добави Mailalias + + + FORM_TITLE + Mailalias: начин за извършване на препращане на поща без създаване на потребител + + + CURRENT_MAILALIASES + Списък с текущите Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Име на домейна + + + EMAIL_DEST + Препрати до + + + SELECT_ACCOUNT + Съобщение(я) за препращане до + + + SELECT_INTERNAL + Само локалната мрежа + + + SELECT_DOMAIN + Изберете домейн + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Съобщение(я) за препращане до + + + USER_OR_GROUP + Потребител или група + + + MAILALIAS_DESCRIPTION + Можете да определите препращане на поща към външен валиден пощенски акаунт без да създавате потребителски акаунт на този сървър. Това би могло да е полезно когато сте загрижени за сигурността и искате само да предоставите услуга за пренасочите съобщенията.

Внимавайте за това сървъра да не бъде нарочен за доставчик на спам от някои доставчици ако не го конфигурирате правилно да отхвърля повечето от спам съобщенията, вместо да ги маркирате като спам и да ги препращате. Като резултат Вашия сървър може да бъде блокиран от тези сървъри и няма да можете повече да пращате или препращате съобщения.

]]>
+
+ + TITLE_CREATE + Създаване на Mailalias + + + DESC_MAILALIAS_NAME + Моля въведете валиден получател за mailalias + + + MODIFY_MAILALIAS + Промяна на Mailalias + + + VALID_MAILALIAS_NAMES + Можете също да създадете псевдоними за ел. поща за акаунти и (виртуални) домейни, валидни за този сървър. Например, "fred@virtualdomain.com" може да бъде препратен към "mary" (или към друг валиден потребителски акаунт).

Можете да препращате до няколко получателя като ги разделите със запетая (,).

]]>
+
+ + NAME_IN_USE + Грешка: Това име се използва. Не можете да създавате mailalias с това име. + + + NOT_A_MAILALIAS + Този акаунт не е mailalias + + + + MAILALIAS_INVALID_DOMAIN + Този домейн не се държи от този сървър + + + + MAILALIAS_INVALID_NOACCT + Този акаунт не се държи от този сървър + + + + MAILALIAS_INVALID_SAMEACCT + Mailalias не може да сочи към същия акаунт + + + CREATE_SUCCEEDED + Успешно създаден mailalias + + + MODIFY_SUCCEEDED + Успешно променен mailalias + + + REMOVE_SUCCEEDED + Успешно премахнат mailalias + + + REMOVE_MAILALIAS + Премахни Mailalias + + + ABOUT_TO_REMOVE + Ще бъде премахнат + + + EVERYONE + Всеки + + + ALL + Всички домейни + + + Mailalias + Mailalias + + + mailalias + mailalias + + + NO_MAILALIASES + Няма mailalias все още! + + + +
diff --git a/root/etc/e-smith/locale/bg/etc/e-smith/web/functions/mailalias2 b/root/etc/e-smith/locale/bg/etc/e-smith/web/functions/mailalias2 new file mode 100644 index 0000000..20d7031 --- /dev/null +++ b/root/etc/e-smith/locale/bg/etc/e-smith/web/functions/mailalias2 @@ -0,0 +1,123 @@ + + + CLICK_TO_CREATE + Добави mailalias + + + FORM_TITLE + Mailalias: начин за препращане на поща без създаване на потребител + + + CURRENT_MAILALIASES + Дефинирани mailalias в момента + + + MAILALIAS + Mailalias + + + DOMAINNAME + Име на домейна + + + EMAIL_DEST + Препращане към + + + SELECT_ACCOUNT + Съобщение(я) за препращане към + + + SELECT_INTERNAL + Само в локалната мрежа + + + SELECT_DOMAIN + Изберете домейн + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Съобщение(я) за препращане към + + + USER_OR_GROUP + Потребител или група + + + CURRENT_PSEUDONYMS + Текущ списък на псевдонимите]]> + + + TITLE_CREATE + Създаване на mailalias + + + DESC_MAILALIAS_NAME + Моля, въведете валиден получател за mailalias + + + MODIFY_PSEUDONYM + Промяна на псевдоним + + VALID_MAILALIAS_NAMES + Можете също да създадете псевдоними за електронна поща за акаунти и (виртуални) домейни които са валидни в рамките на сървъра. Например, "fred@virtualdomain.com" може да бъде препратено към "mary" (или до друг валиден акаунт на потребител).

Можете да препращате до няколко получателя, като ги разделите със запетая (,).

]]>
+
+ + NAME_IN_USE + Грешка: Това име се ползва. Не можете да създавате mailalias с това име. + + + NOT_A_MAILALIAS + Този акаунт не е mailalias + + + + MAILALIAS_INVALID_DOMAIN + Този домейн не се управлява от този сървър + + + + MAILALIAS_INVALID_NOACCT + Този акаунт не се управлява от сървъра + + + + MAILALIAS_INVALID_SAMEACCT + mailalias не може да сочи към същия акаунт + + + CREATE_SUCCEEDED + Успешно създаден mailalias + + + MODIFY_SUCCEEDED + Успешно променен mailalias + + + REMOVE_SUCCEEDED + Успешно премахнат mailalias + + + EVERYONE + Всеки + + + ALL + Всички домейни + + + Mailalias + Mailalias + + + mailalias + mailalias + + + + +
diff --git a/root/etc/e-smith/locale/da/etc/e-smith/web/functions/mailalias b/root/etc/e-smith/locale/da/etc/e-smith/web/functions/mailalias new file mode 100644 index 0000000..e360b94 --- /dev/null +++ b/root/etc/e-smith/locale/da/etc/e-smith/web/functions/mailalias @@ -0,0 +1,135 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + List of current Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domænenavn + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Kun lokalnet + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + Bruger eller gruppe + + + MAILALIAS_DESCRIPTION + You can define mail forward to external valid email account without creating a user account on your server. This might be interesting when you are cocnerned about security and only want to provide a mail forward service.

Be aware that your server may be considered as a spam relay by some providers if you do not configure properly your server to reject most of spams instead of just marking them as spam and forward them. As a result your server might be banned from theses servers and you would not be able any more to send them email nor forward email.

]]>
+
+ + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_MAILALIAS + Modify Mailalias + + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + Dette domæne findes ikke på serveren + + + + MAILALIAS_INVALID_NOACCT + Denne konto findes ikke på serveren + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + REMOVE_MAILALIAS + Remove Mailalias + + + ABOUT_TO_REMOVE + About to remove + + + EVERYONE + Alle + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + NO_MAILALIASES + No mail alias yet ! + + + +
diff --git a/root/etc/e-smith/locale/da/etc/e-smith/web/functions/mailalias2 b/root/etc/e-smith/locale/da/etc/e-smith/web/functions/mailalias2 new file mode 100644 index 0000000..66f6061 --- /dev/null +++ b/root/etc/e-smith/locale/da/etc/e-smith/web/functions/mailalias2 @@ -0,0 +1,123 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + Current defined Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domænenavn + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Kun lokalnet + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + Bruger eller gruppe + + + CURRENT_PSEUDONYMS + Current List of Pseudonyms]]> + + + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_PSEUDONYM + Ændre pseudonym + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + Dette domæne findes ikke på serveren + + + + MAILALIAS_INVALID_NOACCT + Denne konto findes ikke på serveren + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + EVERYONE + Alle + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + + +
diff --git a/root/etc/e-smith/locale/de/etc/e-smith/web/functions/mailalias b/root/etc/e-smith/locale/de/etc/e-smith/web/functions/mailalias new file mode 100644 index 0000000..77b2863 --- /dev/null +++ b/root/etc/e-smith/locale/de/etc/e-smith/web/functions/mailalias @@ -0,0 +1,135 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + List of current Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domänen-Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Nur lokales Netzwerk + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + Benutzer oder Gruppe + + + MAILALIAS_DESCRIPTION + You can define mail forward to external valid email account without creating a user account on your server. This might be interesting when you are cocnerned about security and only want to provide a mail forward service.

Be aware that your server may be considered as a spam relay by some providers if you do not configure properly your server to reject most of spams instead of just marking them as spam and forward them. As a result your server might be banned from theses servers and you would not be able any more to send them email nor forward email.

]]>
+
+ + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_MAILALIAS + Modify Mailalias + + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + Diese Domäne wird nicht auf diesem Server gehostet + + + + MAILALIAS_INVALID_NOACCT + Dieses Konto wird nicht auf diesem Server gehostet + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + REMOVE_MAILALIAS + Remove Mailalias + + + ABOUT_TO_REMOVE + About to remove + + + EVERYONE + Jeder + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + NO_MAILALIASES + No mail alias yet ! + + + +
diff --git a/root/etc/e-smith/locale/de/etc/e-smith/web/functions/mailalias2 b/root/etc/e-smith/locale/de/etc/e-smith/web/functions/mailalias2 new file mode 100644 index 0000000..b08f56e --- /dev/null +++ b/root/etc/e-smith/locale/de/etc/e-smith/web/functions/mailalias2 @@ -0,0 +1,123 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + Current defined Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domänen-Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Nur lokales Netzwerk + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + Benutzer oder Gruppe + + + CURRENT_PSEUDONYMS + Current List of Pseudonyms]]> + + + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_PSEUDONYM + Pseudonym ändern + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + Diese Domäne wird nicht auf diesem Server gehostet + + + + MAILALIAS_INVALID_NOACCT + Dieses Konto wird nicht auf diesem Server gehostet + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + EVERYONE + Jeder + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + + +
diff --git a/root/etc/e-smith/locale/el/etc/e-smith/web/functions/mailalias b/root/etc/e-smith/locale/el/etc/e-smith/web/functions/mailalias new file mode 100644 index 0000000..36e37fe --- /dev/null +++ b/root/etc/e-smith/locale/el/etc/e-smith/web/functions/mailalias @@ -0,0 +1,135 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + List of current Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Τοπικό δίκτυο μόνο + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + Χρήστης ή ομάδα + + + MAILALIAS_DESCRIPTION + You can define mail forward to external valid email account without creating a user account on your server. This might be interesting when you are cocnerned about security and only want to provide a mail forward service.

Be aware that your server may be considered as a spam relay by some providers if you do not configure properly your server to reject most of spams instead of just marking them as spam and forward them. As a result your server might be banned from theses servers and you would not be able any more to send them email nor forward email.

]]>
+
+ + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_MAILALIAS + Modify Mailalias + + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + Αυτός ο τομέας δεν φιλοξενείται σε αυτό το διακομιστή + + + + MAILALIAS_INVALID_NOACCT + Αυτός ο λογαριασμός δεν φιλοξενείται σε αυτό το διακομιστή + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + REMOVE_MAILALIAS + Remove Mailalias + + + ABOUT_TO_REMOVE + About to remove + + + EVERYONE + Όλοι + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + NO_MAILALIASES + No mail alias yet ! + + + +
diff --git a/root/etc/e-smith/locale/el/etc/e-smith/web/functions/mailalias2 b/root/etc/e-smith/locale/el/etc/e-smith/web/functions/mailalias2 new file mode 100644 index 0000000..e40cd70 --- /dev/null +++ b/root/etc/e-smith/locale/el/etc/e-smith/web/functions/mailalias2 @@ -0,0 +1,123 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + Current defined Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Τοπικό δίκτυο μόνο + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + Χρήστης ή ομάδα + + + CURRENT_PSEUDONYMS + Current List of Pseudonyms]]> + + + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_PSEUDONYM + Τροποποίηση Ψευδωνύμου + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + Αυτός ο τομέας δεν φιλοξενείται σε αυτό το διακομιστή + + + + MAILALIAS_INVALID_NOACCT + Αυτός ο λογαριασμός δεν φιλοξενείται σε αυτό το διακομιστή + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + EVERYONE + Όλοι + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + + +
diff --git a/root/etc/e-smith/locale/en-us/etc/e-smith/web/functions/mailalias b/root/etc/e-smith/locale/en-us/etc/e-smith/web/functions/mailalias new file mode 100644 index 0000000..7c9d15d --- /dev/null +++ b/root/etc/e-smith/locale/en-us/etc/e-smith/web/functions/mailalias @@ -0,0 +1,156 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + List of current Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Local network only + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + User or group + + + MAILALIAS_DESCRIPTION + You can define mail forward to external valid email account without creating a user account on your server. This might be interesting when you are cocnerned about security + and only want to provide a mail forward service.

+

Be aware that your server may be considered as a spam relay by some providers if you do not configure properly your server to reject most of spams instead of just marking them as spam and forward them. + As a result your server might be banned from theses servers and you would not be able any more to send them email nor forward email.

]]>
+
+ + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_MAILALIAS + Modify Mailalias + + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) + domains that are valid on this server. For example + "fred@virtualdomain.com" can be forwarded to "mary" + (or to another valid user account).

+ +

You can forward to multiple recipients by separating them with a coma (,). +

+ ]]> +
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + That domain is not hosted on this server + + + + MAILALIAS_INVALID_NOACCT + That account is not hosted on this server + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + REMOVE_MAILALIAS + Remove Mailalias + + + ABOUT_TO_REMOVE + About to remove + + + EVERYONE + Everyone + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + NO_MAILALIASES + No mail alias yet ! + + + +
+ diff --git a/root/etc/e-smith/locale/en-us/etc/e-smith/web/functions/mailalias2 b/root/etc/e-smith/locale/en-us/etc/e-smith/web/functions/mailalias2 new file mode 100644 index 0000000..29f48f9 --- /dev/null +++ b/root/etc/e-smith/locale/en-us/etc/e-smith/web/functions/mailalias2 @@ -0,0 +1,139 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + Current defined Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Local network only + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + User or group + + + CURRENT_PSEUDONYMS + Current List of Pseudonyms]]> + + + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_PSEUDONYM + Modify Pseudonym + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) + domains that are valid on this server. For example + "fred@virtualdomain.com" can be forwarded to "mary" + (or to another valid user account).

+ +

You can forward to multiple recipients by separating them with a coma (,). +

+ ]]> +
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + That domain is not hosted on this server + + + + MAILALIAS_INVALID_NOACCT + That account is not hosted on this server + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + EVERYONE + Everyone + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + +
+ diff --git a/root/etc/e-smith/locale/es/etc/e-smith/web/functions/mailalias b/root/etc/e-smith/locale/es/etc/e-smith/web/functions/mailalias new file mode 100644 index 0000000..8499ff7 --- /dev/null +++ b/root/etc/e-smith/locale/es/etc/e-smith/web/functions/mailalias @@ -0,0 +1,135 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + List of current Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Sólo red local + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + Usuario o grupo + + + MAILALIAS_DESCRIPTION + You can define mail forward to external valid email account without creating a user account on your server. This might be interesting when you are cocnerned about security and only want to provide a mail forward service.

Be aware that your server may be considered as a spam relay by some providers if you do not configure properly your server to reject most of spams instead of just marking them as spam and forward them. As a result your server might be banned from theses servers and you would not be able any more to send them email nor forward email.

]]>
+
+ + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_MAILALIAS + Modify Mailalias + + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + Ese dominio no está alojado en este servidor + + + + MAILALIAS_INVALID_NOACCT + Esa cuenta no está alojada en este servidor + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + REMOVE_MAILALIAS + Remove Mailalias + + + ABOUT_TO_REMOVE + About to remove + + + EVERYONE + Todos + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + NO_MAILALIASES + No mail alias yet ! + + + +
diff --git a/root/etc/e-smith/locale/es/etc/e-smith/web/functions/mailalias2 b/root/etc/e-smith/locale/es/etc/e-smith/web/functions/mailalias2 new file mode 100644 index 0000000..9fa7760 --- /dev/null +++ b/root/etc/e-smith/locale/es/etc/e-smith/web/functions/mailalias2 @@ -0,0 +1,123 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + Current defined Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Sólo red local + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + Usuario o grupo + + + CURRENT_PSEUDONYMS + Current List of Pseudonyms]]> + + + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_PSEUDONYM + Modificar Seudónimo + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + Ese dominio no está alojado en este servidor + + + + MAILALIAS_INVALID_NOACCT + Esa cuenta no está alojada en este servidor + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + EVERYONE + Todos + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + + +
diff --git a/root/etc/e-smith/locale/et/etc/e-smith/web/functions/mailalias b/root/etc/e-smith/locale/et/etc/e-smith/web/functions/mailalias new file mode 100644 index 0000000..8666372 --- /dev/null +++ b/root/etc/e-smith/locale/et/etc/e-smith/web/functions/mailalias @@ -0,0 +1,135 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + List of current Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Local network only + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + Kasutaja või grupp + + + MAILALIAS_DESCRIPTION + You can define mail forward to external valid email account without creating a user account on your server. This might be interesting when you are cocnerned about security and only want to provide a mail forward service.

Be aware that your server may be considered as a spam relay by some providers if you do not configure properly your server to reject most of spams instead of just marking them as spam and forward them. As a result your server might be banned from theses servers and you would not be able any more to send them email nor forward email.

]]>
+
+ + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_MAILALIAS + Modify Mailalias + + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + Server ei halda sellist domeeni + + + + MAILALIAS_INVALID_NOACCT + Sellist kontot pole siin serveris + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + REMOVE_MAILALIAS + Remove Mailalias + + + ABOUT_TO_REMOVE + About to remove + + + EVERYONE + Everyone + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + NO_MAILALIASES + No mail alias yet ! + + + +
diff --git a/root/etc/e-smith/locale/et/etc/e-smith/web/functions/mailalias2 b/root/etc/e-smith/locale/et/etc/e-smith/web/functions/mailalias2 new file mode 100644 index 0000000..a4c7e3e --- /dev/null +++ b/root/etc/e-smith/locale/et/etc/e-smith/web/functions/mailalias2 @@ -0,0 +1,123 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + Current defined Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Local network only + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + Kasutaja või grupp + + + CURRENT_PSEUDONYMS + Current List of Pseudonyms]]> + + + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_PSEUDONYM + Muuda aliast + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + Server ei halda sellist domeeni + + + + MAILALIAS_INVALID_NOACCT + Sellist kontot pole siin serveris + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + EVERYONE + Everyone + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + + +
diff --git a/root/etc/e-smith/locale/fr/etc/e-smith/web/functions/mailalias b/root/etc/e-smith/locale/fr/etc/e-smith/web/functions/mailalias new file mode 100644 index 0000000..cf10ac5 --- /dev/null +++ b/root/etc/e-smith/locale/fr/etc/e-smith/web/functions/mailalias @@ -0,0 +1,135 @@ + + + CLICK_TO_CREATE + Ajouter un alias de courriel + + + FORM_TITLE + Alias de courriel : une façon de transférer des courriels sans créer d'utilisateur. + + + CURRENT_MAILALIASES + Liste actuelle des pseudonymes + + + MAILALIAS + Alias de courriel + + + DOMAINNAME + Nom de Domaine + + + EMAIL_DEST + Transférer vers + + + SELECT_ACCOUNT + Courriel(s) à transférer vers + + + SELECT_INTERNAL + Réseau local seulement + + + SELECT_DOMAIN + Choisir un domaine + + + MAILALIAS_NAME + Alias de courriel + + + EMAIL + Courriel(s) à transférer vers + + + USER_OR_GROUP + Utilisateur ou groupe + + + MAILALIAS_DESCRIPTION + Vous pouvez définir un transfert de courriel vers un compte courriel valide externe sans créer un compte sur votre serveur. Ceci peut être utile si vous être préoccupé par la sécurité en devant ouvrir un compte et devez seulement transférer des courriels.

Sachez que votre serveur peut être considéré comme un relais de pourriel si vous ne le configurez pas proprement afin d'éviter de transférer du pourriel simplement marqué comme tel au lieu de le rejeter. Ceci peut résulter en l'ajout de votre serveur dans une liste noir par les serveur de courriel de vos destinataires, vous empêchant de transférer ou d'envoyer vos courriel vers ces serveurs ou même d'autres serveurs utilisant les même listes noires.

]]>
+
+ + TITLE_CREATE + Créer un alias de courriel + + + DESC_MAILALIAS_NAME + Merci de saisir un destinataire valide pour l'alias de courriel + + + MODIFY_MAILALIAS + Modifier l'alias de courriel + + + VALID_MAILALIAS_NAMES + Vous pouvez aussi créer des alias pour des comptes valides sur ce serveur. Par exemple "fred@virtualdomain.com" peut être transféré vers "mary" ( ou un autre compte valide).

Vous pouvez envoyer vers plusieurs destinataire en les séparant par une virgule (,).

]]>
+
+ + NAME_IN_USE + Erreur : Ce nom est utilisé. Vous ne pouvez pas créer un alias de courriel avec ce nom. + + + NOT_A_MAILALIAS + Ce compte n'est pas un alias de courriel + + + + MAILALIAS_INVALID_DOMAIN + Ce domaine n'est pas géré par votre serveur. + + + + MAILALIAS_INVALID_NOACCT + Ce compte n'est pas géré par votre serveur. + + + + MAILALIAS_INVALID_SAMEACCT + Un alias courriel ne peut pas pointer vers le même compte + + + CREATE_SUCCEEDED + Alias de courriel créé avec succès + + + MODIFY_SUCCEEDED + Alias de courriel modifié avec succès + + + REMOVE_SUCCEEDED + Alias de courriel supprimé avec succès + + + REMOVE_MAILALIAS + Enlever l'alias de courriel + + + ABOUT_TO_REMOVE + Sur le point de supprimer + + + EVERYONE + Tout le monde + + + ALL + Tous les domaines + + + Mailalias + Alias de courriel + + + mailalias + alias de courriel + + + NO_MAILALIASES + Pas encore d'alias de courriel + + + +
diff --git a/root/etc/e-smith/locale/fr/etc/e-smith/web/functions/mailalias2 b/root/etc/e-smith/locale/fr/etc/e-smith/web/functions/mailalias2 new file mode 100644 index 0000000..b74907c --- /dev/null +++ b/root/etc/e-smith/locale/fr/etc/e-smith/web/functions/mailalias2 @@ -0,0 +1,123 @@ + + + CLICK_TO_CREATE + Ajouter un alias de courriel + + + FORM_TITLE + Alias de courriel : une façon de transférer des courriels sans créer d'utilisateur. + + + CURRENT_MAILALIASES + Alias de courriel défini actuellement + + + MAILALIAS + Alias de courriel + + + DOMAINNAME + Nom de Domaine + + + EMAIL_DEST + Transférer vers + + + SELECT_ACCOUNT + Courriel(s) à transférer vers + + + SELECT_INTERNAL + Réseau local seulement + + + SELECT_DOMAIN + Choisir un domaine + + + MAILALIAS_NAME + Alias de courriel + + + EMAIL + Courriel(s) à transférer vers + + + USER_OR_GROUP + Utilisateur ou groupe + + + CURRENT_PSEUDONYMS + Liste actuelle des pseudonymes ]]> + + + TITLE_CREATE + Créer un alias de courriel + + + DESC_MAILALIAS_NAME + Merci de saisir un destinataire valide pour l'alias de courriel + + + MODIFY_PSEUDONYM + Modifier le pseudonyme + + VALID_MAILALIAS_NAMES + Vous pouvez aussi créer des alias pour des comptes valides sur ce serveur. Par exemple "fred@virtualdomain.com" peut être transféré vers "mary" ( ou un autre compte valide).

Vous pouvez envoyer vers plusieurs destinataire en les séparant par une virgule (,).

]]>
+
+ + NAME_IN_USE + Erreur : ce nom est utilisé. Vous ne pouvez pas créer un alias de courriel avec ce nom. + + + NOT_A_MAILALIAS + Ce compte n'est pas un alias de courriel + + + + MAILALIAS_INVALID_DOMAIN + Ce domaine n'est pas géré par votre serveur. + + + + MAILALIAS_INVALID_NOACCT + Ce compte n'est pas géré par votre serveur. + + + + MAILALIAS_INVALID_SAMEACCT + Un alias courriel ne peut pas pointer vers le même compte + + + CREATE_SUCCEEDED + Alias de courriel créé avec succès + + + MODIFY_SUCCEEDED + Alias de courriel modifié avec succès + + + REMOVE_SUCCEEDED + Alias de courriel supprimé avec succès + + + EVERYONE + Tout le monde + + + ALL + Tous les domaines + + + Mailalias + Alias de courriel + + + mailalias + alias de courriel + + + + +
diff --git a/root/etc/e-smith/locale/he/etc/e-smith/web/functions/mailalias b/root/etc/e-smith/locale/he/etc/e-smith/web/functions/mailalias new file mode 100644 index 0000000..5b04942 --- /dev/null +++ b/root/etc/e-smith/locale/he/etc/e-smith/web/functions/mailalias @@ -0,0 +1,135 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + List of current Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Local network only + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + User or group + + + MAILALIAS_DESCRIPTION + You can define mail forward to external valid email account without creating a user account on your server. This might be interesting when you are cocnerned about security and only want to provide a mail forward service.

Be aware that your server may be considered as a spam relay by some providers if you do not configure properly your server to reject most of spams instead of just marking them as spam and forward them. As a result your server might be banned from theses servers and you would not be able any more to send them email nor forward email.

]]>
+
+ + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_MAILALIAS + Modify Mailalias + + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + That domain is not hosted on this server + + + + MAILALIAS_INVALID_NOACCT + That account is not hosted on this server + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + REMOVE_MAILALIAS + Remove Mailalias + + + ABOUT_TO_REMOVE + About to remove + + + EVERYONE + Everyone + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + NO_MAILALIASES + No mail alias yet ! + + + +
diff --git a/root/etc/e-smith/locale/he/etc/e-smith/web/functions/mailalias2 b/root/etc/e-smith/locale/he/etc/e-smith/web/functions/mailalias2 new file mode 100644 index 0000000..95171d2 --- /dev/null +++ b/root/etc/e-smith/locale/he/etc/e-smith/web/functions/mailalias2 @@ -0,0 +1,123 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + Current defined Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Local network only + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + User or group + + + CURRENT_PSEUDONYMS + Current List of Pseudonyms]]> + + + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_PSEUDONYM + Modify Pseudonym + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + That domain is not hosted on this server + + + + MAILALIAS_INVALID_NOACCT + That account is not hosted on this server + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + EVERYONE + Everyone + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + + +
diff --git a/root/etc/e-smith/locale/hu/etc/e-smith/web/functions/mailalias b/root/etc/e-smith/locale/hu/etc/e-smith/web/functions/mailalias new file mode 100644 index 0000000..862654e --- /dev/null +++ b/root/etc/e-smith/locale/hu/etc/e-smith/web/functions/mailalias @@ -0,0 +1,135 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + List of current Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Csak helyi hálózat + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + Felhasználó vagy csoport + + + MAILALIAS_DESCRIPTION + You can define mail forward to external valid email account without creating a user account on your server. This might be interesting when you are cocnerned about security and only want to provide a mail forward service.

Be aware that your server may be considered as a spam relay by some providers if you do not configure properly your server to reject most of spams instead of just marking them as spam and forward them. As a result your server might be banned from theses servers and you would not be able any more to send them email nor forward email.

]]>
+
+ + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_MAILALIAS + Modify Mailalias + + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + Az a domén nem ezen a szerveren van + + + + MAILALIAS_INVALID_NOACCT + Az a fiók nem ezen a szerveren található + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + REMOVE_MAILALIAS + Remove Mailalias + + + ABOUT_TO_REMOVE + About to remove + + + EVERYONE + Mindenki + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + NO_MAILALIASES + No mail alias yet ! + + + +
diff --git a/root/etc/e-smith/locale/hu/etc/e-smith/web/functions/mailalias2 b/root/etc/e-smith/locale/hu/etc/e-smith/web/functions/mailalias2 new file mode 100644 index 0000000..4fe7269 --- /dev/null +++ b/root/etc/e-smith/locale/hu/etc/e-smith/web/functions/mailalias2 @@ -0,0 +1,123 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + Current defined Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Csak helyi hálózat + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + Felhasználó vagy csoport + + + CURRENT_PSEUDONYMS + Current List of Pseudonyms]]> + + + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_PSEUDONYM + Fedőnév módosítása + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + Az a domén nem ezen a szerveren van + + + + MAILALIAS_INVALID_NOACCT + Az a fiók nem ezen a szerveren található + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + EVERYONE + Mindenki + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + + +
diff --git a/root/etc/e-smith/locale/id/etc/e-smith/web/functions/mailalias b/root/etc/e-smith/locale/id/etc/e-smith/web/functions/mailalias new file mode 100644 index 0000000..9f0bfad --- /dev/null +++ b/root/etc/e-smith/locale/id/etc/e-smith/web/functions/mailalias @@ -0,0 +1,135 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + List of current Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Jaringan lokal saja + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + Pengguna atau grup + + + MAILALIAS_DESCRIPTION + You can define mail forward to external valid email account without creating a user account on your server. This might be interesting when you are cocnerned about security and only want to provide a mail forward service.

Be aware that your server may be considered as a spam relay by some providers if you do not configure properly your server to reject most of spams instead of just marking them as spam and forward them. As a result your server might be banned from theses servers and you would not be able any more to send them email nor forward email.

]]>
+
+ + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_MAILALIAS + Modify Mailalias + + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + Domain tersebut tidak berada dalam server ini + + + + MAILALIAS_INVALID_NOACCT + Akun tersebut tidak berada dalam server ini + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + REMOVE_MAILALIAS + Remove Mailalias + + + ABOUT_TO_REMOVE + About to remove + + + EVERYONE + Semua user + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + NO_MAILALIASES + No mail alias yet ! + + + +
diff --git a/root/etc/e-smith/locale/id/etc/e-smith/web/functions/mailalias2 b/root/etc/e-smith/locale/id/etc/e-smith/web/functions/mailalias2 new file mode 100644 index 0000000..815635d --- /dev/null +++ b/root/etc/e-smith/locale/id/etc/e-smith/web/functions/mailalias2 @@ -0,0 +1,123 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + Current defined Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Jaringan lokal saja + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + Pengguna atau grup + + + CURRENT_PSEUDONYMS + Current List of Pseudonyms]]> + + + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_PSEUDONYM + Ubah pseudonym + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + Domain tersebut tidak berada dalam server ini + + + + MAILALIAS_INVALID_NOACCT + Akun tersebut tidak berada dalam server ini + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + EVERYONE + Semua user + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + + +
diff --git a/root/etc/e-smith/locale/it/etc/e-smith/web/functions/mailalias b/root/etc/e-smith/locale/it/etc/e-smith/web/functions/mailalias new file mode 100644 index 0000000..d0c7aad --- /dev/null +++ b/root/etc/e-smith/locale/it/etc/e-smith/web/functions/mailalias @@ -0,0 +1,135 @@ + + + CLICK_TO_CREATE + Aggiungere un mailalias + + + FORM_TITLE + Mailalias: un modo per inoltrare i messaggi senza creare un utente + + + CURRENT_MAILALIASES + Lista dei mailalias correnti + + + MAILALIAS + Mailalias + + + DOMAINNAME + Nome dominio + + + EMAIL_DEST + Inoltra a + + + SELECT_ACCOUNT + Indirizzo(i) a cui inoltrare + + + SELECT_INTERNAL + (solo rete locale) + + + SELECT_DOMAIN + Selezionare un dominio + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Indirizzo(i) a cui inoltrare + + + USER_OR_GROUP + Utente o gruppo + + + MAILALIAS_DESCRIPTION + Si può definire l'inoltro ad un indirizzo di posta valido esterno senza creare un account sul server. Può essere utile quando si hanno preoccupazioni di sicurezza e si vuol fornire unicamente un servizio di inoltro della posta.

Tenete presente che il vostra server potrà essere "marcato" come uno spam relay da alcuni providers se non configurerete il server in modo da respingere lo spam anzichè semplicemnete marcarlo come spam e inoltrarlo. In questo caso il vostro server potrebbe essere inserito in ban-list e non sarebbe più in grado né di spedire né di inoltare posta.

]]>
+
+ + TITLE_CREATE + Creare un mailalias + + + DESC_MAILALIAS_NAME + Inserire un destinatario valido per il mailalias + + + MODIFY_MAILALIAS + Modificare il mailalias + + + VALID_MAILALIAS_NAMES + Si possono anche creare dei mailalias per account e domini (virtuali) validi su questo server. Per esempio "fred@virtualdomain.com" può essere inoltrato a "mary" (o ad un altro utente valido).

E' possibile l'inoltro a indirizzi multipli separandoli con la virgola (,).

]]>
+
+ + NAME_IN_USE + Errore: il nome prescelto è già in uso. Non si può creare un mailalias con quel nome. + + + NOT_A_MAILALIAS + L'account non è un mailalias + + + + MAILALIAS_INVALID_DOMAIN + Il dominio non è configurato su questo server + + + + MAILALIAS_INVALID_NOACCT + L'utente non è configurato su questo server + + + + MAILALIAS_INVALID_SAMEACCT + Un mailalias non può puntare al medesimo account. + + + CREATE_SUCCEEDED + Mailalias creato con successo. + + + MODIFY_SUCCEEDED + Mailalias modificato con successo. + + + REMOVE_SUCCEEDED + Mailalias eliminato con successo. + + + REMOVE_MAILALIAS + Elimina mailalias. + + + ABOUT_TO_REMOVE + Eliminare + + + EVERYONE + Tutti + + + ALL + Tutti i domini + + + Mailalias + Mailalias + + + mailalias + mailalias + + + NO_MAILALIASES + Nessun mailalias definito! + + + +
diff --git a/root/etc/e-smith/locale/it/etc/e-smith/web/functions/mailalias2 b/root/etc/e-smith/locale/it/etc/e-smith/web/functions/mailalias2 new file mode 100644 index 0000000..b2473b9 --- /dev/null +++ b/root/etc/e-smith/locale/it/etc/e-smith/web/functions/mailalias2 @@ -0,0 +1,123 @@ + + + CLICK_TO_CREATE + Aggiungere un mailalias + + + FORM_TITLE + Mailalias: un modo per inoltrare i messaggi senza creare un utente + + + CURRENT_MAILALIASES + Mailalias correntemente definiti + + + MAILALIAS + Mailalias + + + DOMAINNAME + Nome dominio + + + EMAIL_DEST + Inoltra a + + + SELECT_ACCOUNT + Indirizzo(i) a cui inoltrare + + + SELECT_INTERNAL + (solo rete locale) + + + SELECT_DOMAIN + Selezionare un dominio + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Indirizzo(i) a cui inoltrare + + + USER_OR_GROUP + Utente o gruppo + + + CURRENT_PSEUDONYMS + Lista degli pseudonimi]]> + + + TITLE_CREATE + Crea un mailalias + + + DESC_MAILALIAS_NAME + Introdurre un destinatario valido per il mailalias + + + MODIFY_PSEUDONYM + Modifica pseudonimo + + VALID_MAILALIAS_NAMES + Si possono anche creare dei mailalias per account e domini (virtuali) validi su questo server. Per esempio "fred@virtualdomain.com" può essere inoltrato a "mary" (o ad un altro utente valido).

E' possibile l'inoltro a indirizzi multipli separandoli con la virgola (,).

]]>
+
+ + NAME_IN_USE + Errore: il nome prescelto è già in uso. Non si può creare un mailalias con quel nome. + + + NOT_A_MAILALIAS + L'account non è un mailalias + + + + MAILALIAS_INVALID_DOMAIN + Il dominio non è configurato su questo server + + + + MAILALIAS_INVALID_NOACCT + L'utente non è configurato su questo server + + + + MAILALIAS_INVALID_SAMEACCT + Un mailalias non può puntare al medesimo account. + + + CREATE_SUCCEEDED + Mailalias creato con successo. + + + MODIFY_SUCCEEDED + Mailalias modificato con successo. + + + REMOVE_SUCCEEDED + Mailalias eliminato con successo. + + + EVERYONE + Tutti + + + ALL + Tutti i domini + + + Mailalias + Mailalias + + + mailalias + mailalias + + + + +
diff --git a/root/etc/e-smith/locale/ja/etc/e-smith/web/functions/mailalias b/root/etc/e-smith/locale/ja/etc/e-smith/web/functions/mailalias new file mode 100644 index 0000000..582215f --- /dev/null +++ b/root/etc/e-smith/locale/ja/etc/e-smith/web/functions/mailalias @@ -0,0 +1,135 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + List of current Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Local network only + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + User or group + + + MAILALIAS_DESCRIPTION + You can define mail forward to external valid email account without creating a user account on your server. This might be interesting when you are cocnerned about security and only want to provide a mail forward service.

Be aware that your server may be considered as a spam relay by some providers if you do not configure properly your server to reject most of spams instead of just marking them as spam and forward them. As a result your server might be banned from theses servers and you would not be able any more to send them email nor forward email.

]]>
+
+ + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_MAILALIAS + Modify Mailalias + + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + That domain is not hosted on this server + + + + MAILALIAS_INVALID_NOACCT + That account is not hosted on this server + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + REMOVE_MAILALIAS + Remove Mailalias + + + ABOUT_TO_REMOVE + About to remove + + + EVERYONE + Everyone + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + NO_MAILALIASES + No mail alias yet ! + + + +
diff --git a/root/etc/e-smith/locale/ja/etc/e-smith/web/functions/mailalias2 b/root/etc/e-smith/locale/ja/etc/e-smith/web/functions/mailalias2 new file mode 100644 index 0000000..fb76689 --- /dev/null +++ b/root/etc/e-smith/locale/ja/etc/e-smith/web/functions/mailalias2 @@ -0,0 +1,123 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + Current defined Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Local network only + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + User or group + + + CURRENT_PSEUDONYMS + Current List of Pseudonyms]]> + + + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_PSEUDONYM + Modify Pseudonym + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + That domain is not hosted on this server + + + + MAILALIAS_INVALID_NOACCT + That account is not hosted on this server + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + EVERYONE + Everyone + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + + +
diff --git a/root/etc/e-smith/locale/nb/etc/e-smith/web/functions/mailalias b/root/etc/e-smith/locale/nb/etc/e-smith/web/functions/mailalias new file mode 100644 index 0000000..43085c3 --- /dev/null +++ b/root/etc/e-smith/locale/nb/etc/e-smith/web/functions/mailalias @@ -0,0 +1,135 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + List of current Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Kun lokalt nettverk + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + Bruker eller gruppe + + + MAILALIAS_DESCRIPTION + You can define mail forward to external valid email account without creating a user account on your server. This might be interesting when you are cocnerned about security and only want to provide a mail forward service.

Be aware that your server may be considered as a spam relay by some providers if you do not configure properly your server to reject most of spams instead of just marking them as spam and forward them. As a result your server might be banned from theses servers and you would not be able any more to send them email nor forward email.

]]>
+
+ + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_MAILALIAS + Modify Mailalias + + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + Serveren er ikke vert for det domenet + + + + MAILALIAS_INVALID_NOACCT + Serveren er ikke vert for den kontoen + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + REMOVE_MAILALIAS + Remove Mailalias + + + ABOUT_TO_REMOVE + About to remove + + + EVERYONE + Alle + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + NO_MAILALIASES + No mail alias yet ! + + + +
diff --git a/root/etc/e-smith/locale/nb/etc/e-smith/web/functions/mailalias2 b/root/etc/e-smith/locale/nb/etc/e-smith/web/functions/mailalias2 new file mode 100644 index 0000000..7f5981f --- /dev/null +++ b/root/etc/e-smith/locale/nb/etc/e-smith/web/functions/mailalias2 @@ -0,0 +1,123 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + Current defined Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Kun lokalt nettverk + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + Bruker eller gruppe + + + CURRENT_PSEUDONYMS + Current List of Pseudonyms]]> + + + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_PSEUDONYM + Endre pseudonym + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + Serveren er ikke vert for det domenet + + + + MAILALIAS_INVALID_NOACCT + Serveren er ikke vert for den kontoen + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + EVERYONE + Alle + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + + +
diff --git a/root/etc/e-smith/locale/nl/etc/e-smith/web/functions/mailalias b/root/etc/e-smith/locale/nl/etc/e-smith/web/functions/mailalias new file mode 100644 index 0000000..8b940c5 --- /dev/null +++ b/root/etc/e-smith/locale/nl/etc/e-smith/web/functions/mailalias @@ -0,0 +1,135 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + List of current Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domeinnaam + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Alleen lokaal netwerk + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + Gebruiker of groep + + + MAILALIAS_DESCRIPTION + You can define mail forward to external valid email account without creating a user account on your server. This might be interesting when you are cocnerned about security and only want to provide a mail forward service.

Be aware that your server may be considered as a spam relay by some providers if you do not configure properly your server to reject most of spams instead of just marking them as spam and forward them. As a result your server might be banned from theses servers and you would not be able any more to send them email nor forward email.

]]>
+
+ + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_MAILALIAS + Modify Mailalias + + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + Dit domein wordt niet op deze server gehost + + + + MAILALIAS_INVALID_NOACCT + Deze account wordt niet op deze server gehost + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + REMOVE_MAILALIAS + Remove Mailalias + + + ABOUT_TO_REMOVE + About to remove + + + EVERYONE + Iedereen + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + NO_MAILALIASES + No mail alias yet ! + + + +
diff --git a/root/etc/e-smith/locale/nl/etc/e-smith/web/functions/mailalias2 b/root/etc/e-smith/locale/nl/etc/e-smith/web/functions/mailalias2 new file mode 100644 index 0000000..69a31b6 --- /dev/null +++ b/root/etc/e-smith/locale/nl/etc/e-smith/web/functions/mailalias2 @@ -0,0 +1,123 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + Current defined Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domeinnaam + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Alleen lokaal netwerk + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + Gebruiker of groep + + + CURRENT_PSEUDONYMS + Current List of Pseudonyms]]> + + + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_PSEUDONYM + Wijzig pseudoniem + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + Dit domein wordt niet op deze server gehost + + + + MAILALIAS_INVALID_NOACCT + Deze account wordt niet op deze server gehost + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + EVERYONE + Iedereen + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + + +
diff --git a/root/etc/e-smith/locale/pl/etc/e-smith/web/functions/mailalias b/root/etc/e-smith/locale/pl/etc/e-smith/web/functions/mailalias new file mode 100644 index 0000000..1d1685c --- /dev/null +++ b/root/etc/e-smith/locale/pl/etc/e-smith/web/functions/mailalias @@ -0,0 +1,135 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + List of current Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Local network only + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + User or group + + + MAILALIAS_DESCRIPTION + You can define mail forward to external valid email account without creating a user account on your server. This might be interesting when you are cocnerned about security and only want to provide a mail forward service.

Be aware that your server may be considered as a spam relay by some providers if you do not configure properly your server to reject most of spams instead of just marking them as spam and forward them. As a result your server might be banned from theses servers and you would not be able any more to send them email nor forward email.

]]>
+
+ + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_MAILALIAS + Modify Mailalias + + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + That domain is not hosted on this server + + + + MAILALIAS_INVALID_NOACCT + That account is not hosted on this server + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + REMOVE_MAILALIAS + Remove Mailalias + + + ABOUT_TO_REMOVE + About to remove + + + EVERYONE + Everyone + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + NO_MAILALIASES + No mail alias yet ! + + + +
diff --git a/root/etc/e-smith/locale/pl/etc/e-smith/web/functions/mailalias2 b/root/etc/e-smith/locale/pl/etc/e-smith/web/functions/mailalias2 new file mode 100644 index 0000000..126598c --- /dev/null +++ b/root/etc/e-smith/locale/pl/etc/e-smith/web/functions/mailalias2 @@ -0,0 +1,123 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + Current defined Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Local network only + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + User or group + + + CURRENT_PSEUDONYMS + Current List of Pseudonyms]]> + + + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_PSEUDONYM + Modify Pseudonym + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + That domain is not hosted on this server + + + + MAILALIAS_INVALID_NOACCT + That account is not hosted on this server + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + EVERYONE + Everyone + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + + +
diff --git a/root/etc/e-smith/locale/pt-br/etc/e-smith/web/functions/mailalias b/root/etc/e-smith/locale/pt-br/etc/e-smith/web/functions/mailalias new file mode 100644 index 0000000..1dccea0 --- /dev/null +++ b/root/etc/e-smith/locale/pt-br/etc/e-smith/web/functions/mailalias @@ -0,0 +1,135 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + List of current Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Nome do domínio + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Somente rede local + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + Usuário ou grupo + + + MAILALIAS_DESCRIPTION + You can define mail forward to external valid email account without creating a user account on your server. This might be interesting when you are cocnerned about security and only want to provide a mail forward service.

Be aware that your server may be considered as a spam relay by some providers if you do not configure properly your server to reject most of spams instead of just marking them as spam and forward them. As a result your server might be banned from theses servers and you would not be able any more to send them email nor forward email.

]]>
+
+ + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_MAILALIAS + Modify Mailalias + + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + Este domínio não está hospedado neste servidor + + + + MAILALIAS_INVALID_NOACCT + Esta conta não está hospedada neste servidor + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + REMOVE_MAILALIAS + Remove Mailalias + + + ABOUT_TO_REMOVE + About to remove + + + EVERYONE + Todos + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + NO_MAILALIASES + No mail alias yet ! + + + +
diff --git a/root/etc/e-smith/locale/pt-br/etc/e-smith/web/functions/mailalias2 b/root/etc/e-smith/locale/pt-br/etc/e-smith/web/functions/mailalias2 new file mode 100644 index 0000000..774f606 --- /dev/null +++ b/root/etc/e-smith/locale/pt-br/etc/e-smith/web/functions/mailalias2 @@ -0,0 +1,123 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + Current defined Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Nome do domínio + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Somente rede local + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + Usuário ou grupo + + + CURRENT_PSEUDONYMS + Current List of Pseudonyms]]> + + + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_PSEUDONYM + Modificar Pseudônimo + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + Este domínio não está hospedado neste servidor + + + + MAILALIAS_INVALID_NOACCT + Esta conta não está hospedada neste servidor + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + EVERYONE + Todos + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + + +
diff --git a/root/etc/e-smith/locale/pt/etc/e-smith/web/functions/mailalias b/root/etc/e-smith/locale/pt/etc/e-smith/web/functions/mailalias new file mode 100644 index 0000000..54fd5ae --- /dev/null +++ b/root/etc/e-smith/locale/pt/etc/e-smith/web/functions/mailalias @@ -0,0 +1,135 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + List of current Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Somente rede local + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + Usuário ou grupo + + + MAILALIAS_DESCRIPTION + You can define mail forward to external valid email account without creating a user account on your server. This might be interesting when you are cocnerned about security and only want to provide a mail forward service.

Be aware that your server may be considered as a spam relay by some providers if you do not configure properly your server to reject most of spams instead of just marking them as spam and forward them. As a result your server might be banned from theses servers and you would not be able any more to send them email nor forward email.

]]>
+
+ + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_MAILALIAS + Modify Mailalias + + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + Este domínio não está hospedado neste servidor + + + + MAILALIAS_INVALID_NOACCT + Esta conta não está hospedada neste servidor + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + REMOVE_MAILALIAS + Remove Mailalias + + + ABOUT_TO_REMOVE + About to remove + + + EVERYONE + Todos + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + NO_MAILALIASES + No mail alias yet ! + + + +
diff --git a/root/etc/e-smith/locale/pt/etc/e-smith/web/functions/mailalias2 b/root/etc/e-smith/locale/pt/etc/e-smith/web/functions/mailalias2 new file mode 100644 index 0000000..bf06f67 --- /dev/null +++ b/root/etc/e-smith/locale/pt/etc/e-smith/web/functions/mailalias2 @@ -0,0 +1,123 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + Current defined Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Somente rede local + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + Usuário ou grupo + + + CURRENT_PSEUDONYMS + Current List of Pseudonyms]]> + + + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_PSEUDONYM + Modificar Pseudônimo + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + Este domínio não está hospedado neste servidor + + + + MAILALIAS_INVALID_NOACCT + Esta conta não está hospedada neste servidor + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + EVERYONE + Todos + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + + +
diff --git a/root/etc/e-smith/locale/ro/etc/e-smith/web/functions/mailalias b/root/etc/e-smith/locale/ro/etc/e-smith/web/functions/mailalias new file mode 100644 index 0000000..106ee40 --- /dev/null +++ b/root/etc/e-smith/locale/ro/etc/e-smith/web/functions/mailalias @@ -0,0 +1,135 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + List of current Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Local network only + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + User or group + + + MAILALIAS_DESCRIPTION + You can define mail forward to external valid email account without creating a user account on your server. This might be interesting when you are cocnerned about security and only want to provide a mail forward service.

Be aware that your server may be considered as a spam relay by some providers if you do not configure properly your server to reject most of spams instead of just marking them as spam and forward them. As a result your server might be banned from theses servers and you would not be able any more to send them email nor forward email.

]]>
+
+ + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_MAILALIAS + Modify Mailalias + + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + That domain is not hosted on this server + + + + MAILALIAS_INVALID_NOACCT + That account is not hosted on this server + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + REMOVE_MAILALIAS + Remove Mailalias + + + ABOUT_TO_REMOVE + About to remove + + + EVERYONE + Everyone + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + NO_MAILALIASES + No mail alias yet ! + + + +
diff --git a/root/etc/e-smith/locale/ro/etc/e-smith/web/functions/mailalias2 b/root/etc/e-smith/locale/ro/etc/e-smith/web/functions/mailalias2 new file mode 100644 index 0000000..fb2a505 --- /dev/null +++ b/root/etc/e-smith/locale/ro/etc/e-smith/web/functions/mailalias2 @@ -0,0 +1,123 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + Current defined Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Local network only + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + User or group + + + CURRENT_PSEUDONYMS + Current List of Pseudonyms]]> + + + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_PSEUDONYM + Modify Pseudonym + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + That domain is not hosted on this server + + + + MAILALIAS_INVALID_NOACCT + That account is not hosted on this server + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + EVERYONE + Everyone + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + + +
diff --git a/root/etc/e-smith/locale/ru/etc/e-smith/web/functions/mailalias b/root/etc/e-smith/locale/ru/etc/e-smith/web/functions/mailalias new file mode 100644 index 0000000..130ee8c --- /dev/null +++ b/root/etc/e-smith/locale/ru/etc/e-smith/web/functions/mailalias @@ -0,0 +1,135 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + List of current Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Только локальная сеть + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + Пользователь или группа + + + MAILALIAS_DESCRIPTION + You can define mail forward to external valid email account without creating a user account on your server. This might be interesting when you are cocnerned about security and only want to provide a mail forward service.

Be aware that your server may be considered as a spam relay by some providers if you do not configure properly your server to reject most of spams instead of just marking them as spam and forward them. As a result your server might be banned from theses servers and you would not be able any more to send them email nor forward email.

]]>
+
+ + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_MAILALIAS + Modify Mailalias + + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + Этот домен не расположен на этом сервере + + + + MAILALIAS_INVALID_NOACCT + Эта учётная запись не расположена на этом сервере + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + REMOVE_MAILALIAS + Remove Mailalias + + + ABOUT_TO_REMOVE + About to remove + + + EVERYONE + Каждый + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + NO_MAILALIASES + No mail alias yet ! + + + +
diff --git a/root/etc/e-smith/locale/ru/etc/e-smith/web/functions/mailalias2 b/root/etc/e-smith/locale/ru/etc/e-smith/web/functions/mailalias2 new file mode 100644 index 0000000..40ca4aa --- /dev/null +++ b/root/etc/e-smith/locale/ru/etc/e-smith/web/functions/mailalias2 @@ -0,0 +1,123 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + Current defined Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Только локальная сеть + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + Пользователь или группа + + + CURRENT_PSEUDONYMS + Current List of Pseudonyms]]> + + + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_PSEUDONYM + Изменить псевдоним + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + Этот домен не расположен на этом сервере + + + + MAILALIAS_INVALID_NOACCT + Эта учётная запись не расположена на этом сервере + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + EVERYONE + Каждый + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + + +
diff --git a/root/etc/e-smith/locale/sl/etc/e-smith/web/functions/mailalias b/root/etc/e-smith/locale/sl/etc/e-smith/web/functions/mailalias new file mode 100644 index 0000000..255207d --- /dev/null +++ b/root/etc/e-smith/locale/sl/etc/e-smith/web/functions/mailalias @@ -0,0 +1,135 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + List of current Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + (samo lokalno omrezje) + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + Uporabnik ali skupina + + + MAILALIAS_DESCRIPTION + You can define mail forward to external valid email account without creating a user account on your server. This might be interesting when you are cocnerned about security and only want to provide a mail forward service.

Be aware that your server may be considered as a spam relay by some providers if you do not configure properly your server to reject most of spams instead of just marking them as spam and forward them. As a result your server might be banned from theses servers and you would not be able any more to send them email nor forward email.

]]>
+
+ + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_MAILALIAS + Modify Mailalias + + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + That domain is not hosted on this server + + + + MAILALIAS_INVALID_NOACCT + That account is not hosted on this server + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + REMOVE_MAILALIAS + Remove Mailalias + + + ABOUT_TO_REMOVE + About to remove + + + EVERYONE + Everyone + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + NO_MAILALIASES + No mail alias yet ! + + + +
diff --git a/root/etc/e-smith/locale/sl/etc/e-smith/web/functions/mailalias2 b/root/etc/e-smith/locale/sl/etc/e-smith/web/functions/mailalias2 new file mode 100644 index 0000000..aae3267 --- /dev/null +++ b/root/etc/e-smith/locale/sl/etc/e-smith/web/functions/mailalias2 @@ -0,0 +1,123 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + Current defined Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + (samo lokalno omrezje) + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + Uporabnik ali skupina + + + CURRENT_PSEUDONYMS + Current List of Pseudonyms]]> + + + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_PSEUDONYM + Uredi vzdevek + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + That domain is not hosted on this server + + + + MAILALIAS_INVALID_NOACCT + That account is not hosted on this server + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + EVERYONE + Everyone + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + + +
diff --git a/root/etc/e-smith/locale/sv/etc/e-smith/web/functions/mailalias b/root/etc/e-smith/locale/sv/etc/e-smith/web/functions/mailalias new file mode 100644 index 0000000..0593283 --- /dev/null +++ b/root/etc/e-smith/locale/sv/etc/e-smith/web/functions/mailalias @@ -0,0 +1,135 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + List of current Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Endast lokalt nätverk + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + Användare eller grupp + + + MAILALIAS_DESCRIPTION + You can define mail forward to external valid email account without creating a user account on your server. This might be interesting when you are cocnerned about security and only want to provide a mail forward service.

Be aware that your server may be considered as a spam relay by some providers if you do not configure properly your server to reject most of spams instead of just marking them as spam and forward them. As a result your server might be banned from theses servers and you would not be able any more to send them email nor forward email.

]]>
+
+ + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_MAILALIAS + Modify Mailalias + + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + Denna domän finns inte på denna server + + + + MAILALIAS_INVALID_NOACCT + Detta konto finns inte på denna server + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + REMOVE_MAILALIAS + Remove Mailalias + + + ABOUT_TO_REMOVE + About to remove + + + EVERYONE + Alla + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + NO_MAILALIASES + No mail alias yet ! + + + +
diff --git a/root/etc/e-smith/locale/sv/etc/e-smith/web/functions/mailalias2 b/root/etc/e-smith/locale/sv/etc/e-smith/web/functions/mailalias2 new file mode 100644 index 0000000..d2f1788 --- /dev/null +++ b/root/etc/e-smith/locale/sv/etc/e-smith/web/functions/mailalias2 @@ -0,0 +1,123 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + Current defined Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Endast lokalt nätverk + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + Användare eller grupp + + + CURRENT_PSEUDONYMS + Current List of Pseudonyms]]> + + + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_PSEUDONYM + Ändra pseudonym + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + Denna domän finns inte på denna server + + + + MAILALIAS_INVALID_NOACCT + Detta konto finns inte på denna server + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + EVERYONE + Alla + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + + +
diff --git a/root/etc/e-smith/locale/th/etc/e-smith/web/functions/mailalias b/root/etc/e-smith/locale/th/etc/e-smith/web/functions/mailalias new file mode 100644 index 0000000..70aae4e --- /dev/null +++ b/root/etc/e-smith/locale/th/etc/e-smith/web/functions/mailalias @@ -0,0 +1,135 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + List of current Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + เฉพาะ local network + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + ผู้ใช้หรือกลุ่มผู้ใช้ + + + MAILALIAS_DESCRIPTION + You can define mail forward to external valid email account without creating a user account on your server. This might be interesting when you are cocnerned about security and only want to provide a mail forward service.

Be aware that your server may be considered as a spam relay by some providers if you do not configure properly your server to reject most of spams instead of just marking them as spam and forward them. As a result your server might be banned from theses servers and you would not be able any more to send them email nor forward email.

]]>
+
+ + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_MAILALIAS + Modify Mailalias + + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + โดเมนที่ระบุไม่ได้อยู่บนเซิร์ฟเวอร์นี้ + + + + MAILALIAS_INVALID_NOACCT + ชื่อบัญชีที่ระบุไม่ได้อยู่บนเซิร์ฟเวอร์นี้ + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + REMOVE_MAILALIAS + Remove Mailalias + + + ABOUT_TO_REMOVE + About to remove + + + EVERYONE + ทุกคน + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + NO_MAILALIASES + No mail alias yet ! + + + +
diff --git a/root/etc/e-smith/locale/th/etc/e-smith/web/functions/mailalias2 b/root/etc/e-smith/locale/th/etc/e-smith/web/functions/mailalias2 new file mode 100644 index 0000000..b2a22a7 --- /dev/null +++ b/root/etc/e-smith/locale/th/etc/e-smith/web/functions/mailalias2 @@ -0,0 +1,123 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + Current defined Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + เฉพาะ local network + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + ผู้ใช้หรือกลุ่มผู้ใช้ + + + CURRENT_PSEUDONYMS + Current List of Pseudonyms]]> + + + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_PSEUDONYM + แก้ไขนามแฝง + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + โดเมนที่ระบุไม่ได้อยู่บนเซิร์ฟเวอร์นี้ + + + + MAILALIAS_INVALID_NOACCT + ชื่อบัญชีที่ระบุไม่ได้อยู่บนเซิร์ฟเวอร์นี้ + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + EVERYONE + ทุกคน + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + + +
diff --git a/root/etc/e-smith/locale/tr/etc/e-smith/web/functions/mailalias b/root/etc/e-smith/locale/tr/etc/e-smith/web/functions/mailalias new file mode 100644 index 0000000..1817d35 --- /dev/null +++ b/root/etc/e-smith/locale/tr/etc/e-smith/web/functions/mailalias @@ -0,0 +1,135 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + List of current Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Sadece yerel ağ + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + Kullanıcı veya grup + + + MAILALIAS_DESCRIPTION + You can define mail forward to external valid email account without creating a user account on your server. This might be interesting when you are cocnerned about security and only want to provide a mail forward service.

Be aware that your server may be considered as a spam relay by some providers if you do not configure properly your server to reject most of spams instead of just marking them as spam and forward them. As a result your server might be banned from theses servers and you would not be able any more to send them email nor forward email.

]]>
+
+ + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_MAILALIAS + Modify Mailalias + + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + Bu alan adı bu sunucuda barındırılmıyor + + + + MAILALIAS_INVALID_NOACCT + Bu hesap bu sunucuda barındırılmıyor + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + REMOVE_MAILALIAS + Remove Mailalias + + + ABOUT_TO_REMOVE + About to remove + + + EVERYONE + Herkes + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + NO_MAILALIASES + No mail alias yet ! + + + +
diff --git a/root/etc/e-smith/locale/tr/etc/e-smith/web/functions/mailalias2 b/root/etc/e-smith/locale/tr/etc/e-smith/web/functions/mailalias2 new file mode 100644 index 0000000..65480e3 --- /dev/null +++ b/root/etc/e-smith/locale/tr/etc/e-smith/web/functions/mailalias2 @@ -0,0 +1,123 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + Current defined Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Sadece yerel ağ + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + Kullanıcı veya grup + + + CURRENT_PSEUDONYMS + Current List of Pseudonyms]]> + + + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_PSEUDONYM + Takma Adları Değiştir + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + Bu alan adı bu sunucuda barındırılmıyor + + + + MAILALIAS_INVALID_NOACCT + Bu hesap bu sunucuda barındırılmıyor + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + EVERYONE + Herkes + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + + +
diff --git a/root/etc/e-smith/locale/zh-cn/etc/e-smith/web/functions/mailalias b/root/etc/e-smith/locale/zh-cn/etc/e-smith/web/functions/mailalias new file mode 100644 index 0000000..144bdb1 --- /dev/null +++ b/root/etc/e-smith/locale/zh-cn/etc/e-smith/web/functions/mailalias @@ -0,0 +1,135 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + List of current Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + 仅限本地网络 + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + 用户或组 + + + MAILALIAS_DESCRIPTION + You can define mail forward to external valid email account without creating a user account on your server. This might be interesting when you are cocnerned about security and only want to provide a mail forward service.

Be aware that your server may be considered as a spam relay by some providers if you do not configure properly your server to reject most of spams instead of just marking them as spam and forward them. As a result your server might be banned from theses servers and you would not be able any more to send them email nor forward email.

]]>
+
+ + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_MAILALIAS + Modify Mailalias + + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + 这个域不在服务器上 + + + + MAILALIAS_INVALID_NOACCT + 这个账号不在服务器上 + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + REMOVE_MAILALIAS + Remove Mailalias + + + ABOUT_TO_REMOVE + About to remove + + + EVERYONE + 任何人 + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + NO_MAILALIASES + No mail alias yet ! + + + +
diff --git a/root/etc/e-smith/locale/zh-cn/etc/e-smith/web/functions/mailalias2 b/root/etc/e-smith/locale/zh-cn/etc/e-smith/web/functions/mailalias2 new file mode 100644 index 0000000..62ac157 --- /dev/null +++ b/root/etc/e-smith/locale/zh-cn/etc/e-smith/web/functions/mailalias2 @@ -0,0 +1,123 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + Current defined Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + Domain Name + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + 仅限本地网络 + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + 用户或组 + + + CURRENT_PSEUDONYMS + Current List of Pseudonyms]]> + + + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_PSEUDONYM + 修改别名 + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + 这个域不在服务器上 + + + + MAILALIAS_INVALID_NOACCT + 这个账号不在服务器上 + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + EVERYONE + 任何人 + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + + +
diff --git a/root/etc/e-smith/locale/zh-tw/etc/e-smith/web/functions/mailalias b/root/etc/e-smith/locale/zh-tw/etc/e-smith/web/functions/mailalias new file mode 100644 index 0000000..d9697d3 --- /dev/null +++ b/root/etc/e-smith/locale/zh-tw/etc/e-smith/web/functions/mailalias @@ -0,0 +1,135 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + List of current Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + 網域名稱 + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Local network only + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + User or group + + + MAILALIAS_DESCRIPTION + You can define mail forward to external valid email account without creating a user account on your server. This might be interesting when you are cocnerned about security and only want to provide a mail forward service.

Be aware that your server may be considered as a spam relay by some providers if you do not configure properly your server to reject most of spams instead of just marking them as spam and forward them. As a result your server might be banned from theses servers and you would not be able any more to send them email nor forward email.

]]>
+
+ + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_MAILALIAS + Modify Mailalias + + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + That domain is not hosted on this server + + + + MAILALIAS_INVALID_NOACCT + That account is not hosted on this server + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + REMOVE_MAILALIAS + Remove Mailalias + + + ABOUT_TO_REMOVE + About to remove + + + EVERYONE + 每個人 + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + NO_MAILALIASES + No mail alias yet ! + + + +
diff --git a/root/etc/e-smith/locale/zh-tw/etc/e-smith/web/functions/mailalias2 b/root/etc/e-smith/locale/zh-tw/etc/e-smith/web/functions/mailalias2 new file mode 100644 index 0000000..f77e153 --- /dev/null +++ b/root/etc/e-smith/locale/zh-tw/etc/e-smith/web/functions/mailalias2 @@ -0,0 +1,123 @@ + + + CLICK_TO_CREATE + Add a Mailalias + + + FORM_TITLE + Mailalias : a way to perform mail forward without creating a user + + + CURRENT_MAILALIASES + Current defined Mailalias + + + MAILALIAS + Mailalias + + + DOMAINNAME + 網域名稱 + + + EMAIL_DEST + Forward to + + + SELECT_ACCOUNT + Email(s) to forward to + + + SELECT_INTERNAL + Local network only + + + SELECT_DOMAIN + Select a domain + + + MAILALIAS_NAME + Mailalias + + + EMAIL + Email(s) to forward to + + + USER_OR_GROUP + User or group + + + CURRENT_PSEUDONYMS + Current List of Pseudonyms]]> + + + TITLE_CREATE + Create a Mailalias + + + DESC_MAILALIAS_NAME + Please enter a valide recipient for the mailalias + + + MODIFY_PSEUDONYM + Modify Pseudonym + + VALID_MAILALIAS_NAMES + You can also create email aliases for accounts and (virtual) domains that are valid on this server. For example "fred@virtualdomain.com" can be forwarded to "mary" (or to another valid user account).

You can forward to multiple recipients by separating them with a coma (,).

]]>
+
+ + NAME_IN_USE + Error: That name is in use You cannot create a mailalias with that name. + + + NOT_A_MAILALIAS + That account is not a mailalias + + + + MAILALIAS_INVALID_DOMAIN + That domain is not hosted on this server + + + + MAILALIAS_INVALID_NOACCT + That account is not hosted on this server + + + + MAILALIAS_INVALID_SAMEACCT + A mailalias cannot point to the same account + + + CREATE_SUCCEEDED + Successfully created mailalias + + + MODIFY_SUCCEEDED + Successfully modified mailalias + + + REMOVE_SUCCEEDED + Successfully removed mailalias + + + EVERYONE + 每個人 + + + ALL + All domains + + + Mailalias + Mailalias + + + mailalias + mailalias + + + + +
diff --git a/root/etc/e-smith/templates/var/qmail/alias/.qmail-mailalias/50mailalias b/root/etc/e-smith/templates/var/qmail/alias/.qmail-mailalias/50mailalias new file mode 100644 index 0000000..628fa28 --- /dev/null +++ b/root/etc/e-smith/templates/var/qmail/alias/.qmail-mailalias/50mailalias @@ -0,0 +1,5 @@ +{ + # Generic template to rebuild any .qmail-mailalias file. Expects + # to be called with a CONFREF containing the mailalias members. + $OUT .= join("\n", map { '&' . $_ } split(/,/, $Members)); +} diff --git a/root/etc/e-smith/templates/var/service/qpsmtpd/config/goodrcptto/41ValidLocalMailalias b/root/etc/e-smith/templates/var/service/qpsmtpd/config/goodrcptto/41ValidLocalMailalias new file mode 100644 index 0000000..e39e6e3 --- /dev/null +++ b/root/etc/e-smith/templates/var/service/qpsmtpd/config/goodrcptto/41ValidLocalMailalias @@ -0,0 +1,36 @@ +{ + # Make a list of all valid local recipients + use esmith::AccountsDB; + my %valid = map { $_ => 1 } qw(mailalias); + + $OUT = ""; + + my $adb = esmith::AccountsDB->open_ro(); + + foreach my $account ($adb->get_all) + { + my $key = $account->key; + next unless $valid{$account->prop('type')}; + + if ($key =~ /\@/) + { + $OUT .= "$key\n"; + } + else + { + my $domain = $account->prop('domain') || "ALL"; + if ($domain eq "ALL" ) + { + $OUT .= "$key\@$_\n" for (@domains); + } + else + { + my $mailaliasDomain = ','.$domain.','; + foreach (@domains) + { + $OUT .= "$key\@$_\n" if ($mailaliasDomain =~ m/,$_,/); + } + } + } + } +} diff --git a/root/etc/e-smith/web/functions/mailalias b/root/etc/e-smith/web/functions/mailalias new file mode 100755 index 0000000..3b168bc --- /dev/null +++ b/root/etc/e-smith/web/functions/mailalias @@ -0,0 +1,222 @@ +#!/usr/bin/perl -wT + +#---------------------------------------------------------------------- +# heading : Collaboration +# description : mailalias +# navigation : 2000 2400 +#---------------------------------------------------------------------- +# Based in part on emailalias and pseudonyms +# copyright (C) 1999 Ip, Tak Hong +# copyright (C) 2000 Charlie Brady +#---------------------------------------------------------------------- +#---------------------------------------------------------------------- +# copyright (C) 2002 Mitel Networks Corporation +# +# 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::mailalias; +my $f = esmith::FormMagick::Panel::mailalias->new(); +$f->display(); + +=head1 TESTING + + +=begin testing + +use esmith::FormMagick::Tester; +use esmith::TestUtils; +use esmith::ConfigDB; +my $panel = 'pseudonyms'; +my $panel_path = "/etc/e-smith/web/functions/".$panel; +my $ua = esmith::FormMagick::Tester->new(); + + + +is (mode($panel_path), '4750', "Check permissions on script"); +ok ($ua->get_panel($panel), "ABOUT TO RUN L10N TESTS"); +is ($ua->{status}, 200, "200 OK"); +like($ua->{content}, qr/FORM_TITLE/, "Saw untranslated form title"); +ok ($ua->set_language("en"), "Set language to English"); +ok ($ua->get_panel($panel), "Get panel"); + +is ($ua->{status}, 200, "200 OK"); + +like($ua->{content}, qr/Create, remove or modify/, "Saw translated form title"); + +# Testing changes + +ok ($ua->get_panel($panel), "Testing panel retrieval"); +can_ok($ua, "field"); + +# Destructive testing: +if ($destruction_ok()) { + +ok ($ua->follow('Click here to create a pseudonym.')); +is ($ua->{status}, 200, "200 OK"); +$ua->field('pseudonym' => 'aaaaeveryperson'); +$ua->field('account' => 'Administrator'); +ok ($ua->click('Create'), "Clicked create"); +is ($ua->{status}, 200, "200 OK"); +like ($ua->{content}, qr/Successfully/, "Saw create success message"); +ok ($ua->get_panel($panel), "Get panel"); +like ($ua->{content}, qr/aaaaeveryperson/, "Saw newly created everyperson link"); +ok ($ua->follow(1), "modifying aaaaeveryperson"); +is ($ua->{status}, 200, "200 OK "); +print $ua->{content}; +ok ($ua->field('account' => 'Everyone')); +ok ($ua->click('Modify')); +is ($ua->{status}, 200, "200 OK"); +like ($ua->{content}, qr/Successfully/, "Saw modification success message"); +ok ($ua->get_panel($panel), "Get panel"); +like ($ua->{content}, qr/aaaaeveryperson/, "Saw modified everyperson link"); +ok ($ua->follow(2), "removing aaaaeveryperson"); +is ($ua->{status}, 200, "200 OK"); +ok ($ua->click('Remove')); +is ($ua->{status}, 200, "200 OK"); +like ($ua->{content}, qr/Successfully/, "Saw removal success message"); +ok ($ua->get_panel($panel), "Get panel"); +unlike ($ua->{content}, qr/aaaaeveryperson/, "Saw no everyperson"); + +} + +=end testing + + + +=cut + +__DATA__ +
+ + + MAILALIAS_DESCRIPTION + + + + + + + + VALID_MAILALIAS_NAMES + + + + + + + + + + + + + + + + CREATE_SUCCEEDED + + + + + + + + + DESC_MAILALIAS_NAME + + + + + + + + + + + + + + + + + + + MODIFY_SUCCEEDED + + + + + REMOVE_MAILALIAS + + + + + + + + + + + + NOT_A_MAILALIAS + + + + REMOVE_SUCCEEDED + +
diff --git a/root/etc/e-smith/web/panels/manager/cgi-bin/mailalias b/root/etc/e-smith/web/panels/manager/cgi-bin/mailalias new file mode 120000 index 0000000..87a7d78 --- /dev/null +++ b/root/etc/e-smith/web/panels/manager/cgi-bin/mailalias @@ -0,0 +1 @@ +../../../functions/mailalias \ No newline at end of file diff --git a/root/usr/share/perl5/vendor_perl/esmith/FormMagick/Panel/mailalias.pm b/root/usr/share/perl5/vendor_perl/esmith/FormMagick/Panel/mailalias.pm new file mode 100644 index 0000000..72a1aa5 --- /dev/null +++ b/root/usr/share/perl5/vendor_perl/esmith/FormMagick/Panel/mailalias.pm @@ -0,0 +1,636 @@ +#!/usr/bin/perl -w + +# +# $Id: pseudonyms.pm,v 1.20 2005/04/26 15:39:42 charlieb Exp $ +# + +package esmith::FormMagick::Panel::mailalias; + +use strict; +use esmith::AccountsDB; +use esmith::DomainsDB; +use esmith::ConfigDB; +use esmith::FormMagick; +use esmith::util; +use File::Basename; +use Exporter; +use Carp; +use URI::Escape; +use esmith::DB + +our @ISA = qw(esmith::FormMagick Exporter); + +our @EXPORT = qw( + get_prop + get_value + get_cgi_param + performCreateMailalias + performModifyMailalias + performRemoveMailalias + existing_accounts + existing_domains + print_begin_page + print_hidden_mailalias_field + get_mailalias_domain + get_mailalias_email + is_mailalias_internal + is_mailalias_not_removable + validate_new_mailalias_name + validate_is_mailalias + validate_new_email +); + +our $VERSION = sprintf '%d.%03d', q$Revision: 1.20 $ =~ /: (\d+).(\d+)/; + +our $config = esmith::ConfigDB->open(); +our $accounts = esmith::AccountsDB->open(); +our $domains = esmith::DomainsDB->open(); + + +# {{{ header + +=pod + +=head1 NAME + +esmith::FormMagick::Panels::pseudonyms - useful panel functions + +=head1 SYNOPSIS + + use esmith::FormMagick::Panels::pseudonyms; + + my $panel = esmith::FormMagick::Panel::pseudonyms->new(); + $panel->display(); + +=head1 DESCRIPTION + +=cut + +# }}} + +# {{{ new + +=head2 new(); + +Exactly as for esmith::FormMagick + +=begin testing + + +use_ok('esmith::FormMagick::Panel::pseudonyms'); +use vars qw($panel); +ok($panel = esmith::FormMagick::Panel::pseudonyms->new(), "Create panel object"); +isa_ok($panel, 'esmith::FormMagick::Panel::pseudonyms'); + +=end testing + +=cut + +sub new { + shift; + my $self = esmith::FormMagick->new(); + $self->{calling_package} = (caller)[0]; + bless $self; + return $self; +} + +# }}} + +=head2 get_cgi_param FM FIELD + +Returns the named CGI parameter as a string + +=cut + +sub get_cgi_param { + my $fm = shift; + my $param = shift; + + return ($fm->{'cgi'}->param($param)); +} + +# {{{ get_prop + +=head2 get_prop ITEM PROP + +A simple accessor for esmith::ConfigDB::Record::prop + +=cut + +sub get_prop { + my $fm = shift; + my $item = shift; + my $prop = shift; + + my $record = $config->get($item); + if ($record) { + return $record->prop($prop); + } + else { + return ''; + } +} + +# }}} + +# {{{ get_value + +=head2 get_value ITEM + +A simple accessor for esmith::ConfigDB::Record::value + +=cut + +sub get_value { + my $fm = shift; + my $item = shift; + + my $record = $config->get($item); + if ($record) { + return $record->value(); + } + else { + return ''; + } +} + +# }}} + +=head1 ACTION + +=head2 performCreatePseudonym + +Create a new pseudonym + +=cut + +# {{{ performCreatePseudonym + +sub performCreateMailalias { + my $fm = shift; + my $q = $fm->{'cgi'}; + my $email = uri_unescape($q->param ('email')); + my $domain = uri_unescape($q->param ('domain')); + my $mailalias = uri_unescape($q->param('mailalias')); + my $msg = "OK"; + + $accounts->new_record($mailalias, { type => 'mailalias', + domain => $domain, + email => $email} ) + or $msg = "Error occurred while creating mailalias in database."; + + # Untaint $pseudonym before use in system() + ($mailalias) = ($mailalias =~ /([\w\p{L}.]+)/ ); + system( "/sbin/e-smith/signal-event", "mailalias-create", "$mailalias",) + == 0 or $msg = "Error occurred while creating mailalias."; + + if ($msg eq "OK") + { + $q->delete('email'); + $q->delete('mailalias'); + $q->delete('domain'); + $fm->success('CREATE_SUCCEEDED'); + } + else + { + $fm->error($msg); + } +} +# }}} + +# {{{ performModifyPseudonym + +=head2 performModifyPseudonmy + +Modify a pseudonym. + +=cut + +sub performModifyMailalias { + my $fm = shift; + my $q = $fm->{'cgi'}; + my $msg = "OK"; + + my $mailalias = uri_unescape($q->param ('mailalias')); + my $domain = uri_unescape($q->param ('domain')); + my $email = uri_unescape($q->param ('email')); + my $internal = $q->param ('internal') || 'NO'; + my $removable = $accounts->get($mailalias)->prop('Removable') || 'yes'; + + my @props = ('domain', $domain , 'email',"$email"); + + if ($removable eq 'yes') { + if ($internal eq "YES") {$accounts->get($mailalias)->set_prop('Visible','internal'); } + else { $accounts->get($mailalias)->delete_prop('Visible'); } + } + + $accounts->get($mailalias)->set_prop('email',"$email") + or $msg = "Error occurred while modifying mailalias in database."; + $accounts->get($mailalias)->set_prop('domain', $domain) + or $msg = "Error occurred while modifying mailalias in database."; + + # Untaint $mailalias before use in system() + ($mailalias) = ($mailalias =~ /([\w\p{L}]+.)/); + system( "/sbin/e-smith/signal-event", "mailalias-modify", "$mailalias",) + == 0 or $msg = "Error occurred while modifying mailalias."; + + if ($msg eq "OK") + { + $q->delete('account'); + $q->delete('mailalias'); + $q->delete('internal'); + $fm->success('MODIFY_SUCCEEDED'); + } + else + { + $fm->error($msg); + } +} +# }}} + +# {{{ performRemoveMailalias + +sub performRemoveMailalias { + my $fm = shift; + my $q = $fm->{'cgi'}; + my $msg = "OK"; + + my $mailalias = uri_unescape($q->param('mailalias')); + + unless($fm->validate_is_mailalias($mailalias) eq 'OK') { + $fm->{cgi}->param( -name => 'wherenext', -value => 'InvalidMailalias' ); + return ''; + } + + #------------------------------------------------------------ + # Make the mailalias inactive, signal mailalias-delete event + # and then delete it + #------------------------------------------------------------ + + # Untaint $mailalias before use in system() + ($mailalias) = ($mailalias =~ /([\w\p{L}]+.)/); + system( "/sbin/e-smith/signal-event", "mailalias-delete", "$mailalias",) + == 0 or $msg = "Error occurred while deleting mailalias."; + + $accounts->get($mailalias)->delete() + or $msg = "Error occurred while deleting mailalias from database."; + + if ($msg eq "OK") + { + $q->delete('mailalias'); + $fm->success('REMOVE_SUCCEEDED'); + } + else + { + $fm->error($msg); + } + + return ''; +} + +# }}} remove pseudonym + +# {{{ existing_accounts + +=head2 existing_accounts + +Return a hash of exisitng system accounts + +=cut + +sub existing_accounts { + my $fm = shift; + my %existingAccounts = ('admin' => "Administrator" ); + + foreach my $account ($accounts->get_all) { + if ($account->prop('type') =~ /(user|group)/) { + $existingAccounts{$account->key} = $account->key; + } + if ($account->prop('type') eq "pseudonym") { + my $target = $accounts->get($account->prop('Account')); + + unless ($target) + { + warn "WARNING: pseudonym (" + . $account->key + . ") => missing Account(" + . $account->prop('Account') + . ")\n"; + next; + } + + $existingAccounts{$account->key} = $account->key + unless ($target->prop('type') eq "pseudonym"); + } + } + return(\%existingAccounts); +} + +# }}} + +sub existing_domains { + my $fm = shift; + my %existingDomains = ('ALL' => "ALL" ); + + foreach my $domain ($domains->get_all) { + if ($domain->prop('type') =~ /(domain)/) { + $existingDomains{$domain->key} = $domain->key; + } + } + return(\%existingDomains); +} + +# {{{ print_begin_page + +=head2 print_begin_page + +Print the initial page of the ofrm + +=cut + +sub print_begin_page { + my $fm = shift; + my $q = $fm->{'cgi'}; + my @emailMailaliases; + # Need to untie and re-tie the accounts database to ensure changes + # are recognised. + foreach my $account ($accounts->get_all()) { + my $type = $account->prop('type'); + my $key = $account->key(); + push (@emailMailaliases, $key) if ($type eq 'mailalias'); + } + my $urlprefix = $fm->build_cgi_params(uri_unescape($q->param('mailalias'))); + print " \n \n"; + print $q->p($q->a({href => "mailalias?$urlprefix&wherenext=Create", -class => "button-like"}, + $fm->localise("CLICK_TO_CREATE"))); + + my $numMailaliases = @emailMailaliases; + if ($numMailaliases == 0) { + print $q->h2($fm->localise('NO_MAILALIASES')); + } else { + print $q->h2($fm->localise('CURRENT_MAILALIASES')); + print $q->start_table ({-CLASS => "sme-border"}); + print " ".$fm->localise('MAILALIAS') ."\n". + " ".$fm->localise('DOMAINNAME') . "\n" . + " ".$fm->localise('EMAIL_DEST') . "\n" . + " ".$fm->localise('ACTION') . "\n"; + + foreach my $mailalias (sort @emailMailaliases) { + #my $account = $accounts->get($mailalias)->prop('Account'); + my $email = $accounts->get($mailalias)->prop('email'); + my $domain = $accounts->get($mailalias)->prop('domain'); + + #$account = "Administrator" if ($account eq "admin"); + $domain = $fm->localise("ALL") if ($domain eq "ALL"); + + my $removable = $accounts->get($mailalias)->prop('Removable') || 'yes'; + my $changeable = $accounts->get($mailalias)->prop('Changeable') || 'yes'; + + my $visible = $accounts->get($mailalias)->prop('Visible'); + #$account .= $fm->localise("LOCAL_ONLY") + # if (defined $visible && $visible eq "internal"); + + my $urlprefix = $fm->build_cgi_params($mailalias); + $email=~s/,/
/; # substitution for printing + print " \n" . + " $mailalias\n" . + " $domain\n" . + " $email\n"; + if ($changeable eq 'no') { + print "  \n"; + } else { + print " ".$q->a({href => "mailalias?$urlprefix&wherenext=Modify"},$fm->localise("MODIFY"))."\n"; + } + if ($removable eq 'no') { + print "  \n"; + } else { + print " ".$q->a({href => "mailalias?$urlprefix&wherenext=Remove"},$fm->localise("REMOVE"))."\n"; + } + + print ""; + } + + print $q->end_table,"\n"; + } + print ""; + return ''; +} + +# }}} + +# {{{ get_mailalias_domain + +=head2 get_mailalias_domain + +Returns the current domain property for this mailalias + +=cut + +sub get_mailalias_domain { + my $fm = shift; + my $q = $fm->{'cgi'}; + my $mailalias = uri_unescape($q->param('mailalias')); + my $domain = $accounts->get($mailalias)->prop('domain'); + if ($domain eq "") { + $domain = "ALL"; + } + return($domain); +} +# }}} + + +# {{{ get_mailalias_email + +=head2 get_mailalias_email + +Returns the current email property for this mailalias + +=cut + +sub get_mailalias_email { + my $fm = shift; + my $q = $fm->{'cgi'}; + my $mailalias = uri_unescape($q->param('mailalias')); + my $email = $accounts->get($mailalias)->prop('email'); + + return($email); +} +# }}} + + + +# {{{ is_mailalias_not_removable + +=head2 is_mailalias_not_removable + +Returns 1 if the current Account is not removable, 0 otherwise + +=cut + +sub is_mailalias_not_removable { + my $fm = shift; + my $q = $fm->{'cgi'}; + my $mailalias = uri_unescape($q->param('mailalias')); + my $removable = $accounts->get($mailalias)->prop('Removable') || 'yes'; + return 1 if ($removable eq 'yes'); + return 0; +} +# }}} + +# {{{ is_mailalias_internal + +=head2 is_mailalias_internal + +Returns YES if the current Account property Visible is 'internal' + +=cut + +sub is_mailalias_internal { + my $fm = shift; + my $q = $fm->{'cgi'}; + my $mailalias = uri_unescape($q->param('mailalias')); + my $visible = $accounts->get($mailalias)->prop('Visible') || ''; + return 'YES' if ($visible eq 'internal'); + return 'NO'; +} +# }}} + +# {{{ validate_new_pseudonym_name + +=head2 validate_new_pseudonym_name FM PSEUDONYM + +Returns "OK" if the pseudonym starts with a letter or number and +contains only letters, numbers, . - and _ and isn't taken + +Returns "VALID_PSEUDONYM_NAMES" if the name contains invalid chars + +Returns "NAME_IN_USE" if this pseudonym is taken. + +=begin testing + +ok(esmith::FormMagick::Panel::pseudonyms::validate_new_pseudonym_name('',"23skidoo") eq 'OK', "23skidoo is a valid pseudonym"); +ok(esmith::FormMagick::Panel::pseudonyms::validate_new_pseudonym_name('',"_23skidoo") ne 'OK', "_23skidoo is not a valid pseudonym"); +ok(esmith::FormMagick::Panel::pseudonyms::validate_new_pseudonym_name('',"_23skidoo") eq 'VALID_PSEUDONYM_NAMES', "_23skidoo is an invalid pseudonym"); + +=end testing + + +=cut + +sub validate_new_mailalias_name { + my $fm = shift; + my $mailalias = shift; + + my $acct = $accounts->get($mailalias); + if (defined $acct) { + return('NAME_IN_USE'); + } + elsif ($mailalias =~ /@/) + { + + return ('INVALID_MAILALIAS_NAMES'); + } + elsif ($mailalias !~ /^([a-z0-9][a-z0-9\.\-_!#\?~\$\^\+&`%\/\*]*)$/) + { + return('VALID_MAILALIAS_NAMES'); + } + else { + return('OK'); + } +} + +# }}} + +# {{{ validate_is_mailalias + +=head2 validate_is_mailalias FM NAME + +returns "OK" if it is. +returns "NOT_A_MAILALIAS" if the name in question isn't an existing mailalias + +=cut + +sub validate_is_mailalias { + my $fm = shift; + my $mailalias = shift; + + $mailalias = $accounts->get($mailalias); + + return('NOT_A_MAILALIAS') unless $mailalias; + my $type = $mailalias->prop('type'); + + unless (defined $type && ($type eq 'mailalias') ) { + + return('NOT_A_MAILALIAS'); + } + return ('OK'); +} + +# }}} + +=head2 emailforward() + +Validation routine for email forwarding + +=cut + +sub validate_new_email { + my $fm = shift; + my $email= shift; + + if ($email eq "") + { + + return $fm->localise('CANNOT_CONTAIN_WHITESPACE'); + } + else + { + + return $fm->localise('CANNOT_CONTAIN_WHITESPACE') + if ( $email =~ /\s+/ ); + + # Permit a local address, an email or multiple email separate by a coma. + my @mail = split(/,/,$email.","); + foreach (@mail ) + { + return "OK" if $_ =~ /^[a-zA-Z][a-zA-Z0-9\._\-@,]*$/; + return $fm->localise('UNACCEPTABLE_CHARS'); + } + } +} + +=head2 build_cgi_params() + +Builds a CGI query string, using various sensible +defaults and esmith::FormMagick's props_to_query_string() method. + +=cut + +sub build_cgi_params { + my ($fm, $mailalias) = @_; + + my %props = ( + page => 0, + page_stack => "", + ".id" => $fm->{cgi}->param('.id') || "", + mailalias => $mailalias, + ); + + return $fm->props_to_query_string(\%props); +} + +=head2 print_hidden_mailalias_field FM + +prints a hidden form field containing the current value of the mailalias +attribute + + +=cut + +sub print_hidden_mailalias_field { + my $fm = shift; + print "{'cgi'}->param('mailalias'))."\">"; + return ''; +} + +1; diff --git a/smeserver-mailalias.spec b/smeserver-mailalias.spec new file mode 100644 index 0000000..cc201a6 --- /dev/null +++ b/smeserver-mailalias.spec @@ -0,0 +1,103 @@ +# $Id: smeserver-mailalias.spec,v 1.7 2024/09/06 00:28:06 terryfage Exp $ +# Authority: unnilennium +# Name: Jean-Philippe Pialasse + +Summary: smeserver-mailalias +%define name smeserver-mailalias +%define version 0.1 +%define release 12 +Name: %{name} +Version: %{version} +Release: %{release}%{?dist} +License: GPL +Group: Applications/System +Source: %{name}-%{version}.tar.xz + +Url: http://smeserver.pialasse.com/ +BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot +BuildArch: noarch +BuildRequires: e-smith-devtools >= 1.13.1-03 +Requires: smeserver-release >= 9.0 +Requires: e-smith-formmagick >= 1.4.0-12 +Provides: perl(esmith::FormMagick::Panel::mailalias) + +%description +SME Server panel in order to manage email alias to external email without creating a user +on the server + +%prep +%setup +mkdir -p root/etc/e-smith/events/smeserver-mailalias-update + +%build +/usr/bin/perl createlinks + +%install +/bin/rm -rf $RPM_BUILD_ROOT +(cd root ; /usr/bin/find . -depth -print | /bin/cpio -dump $RPM_BUILD_ROOT) +/bin/rm -f %{name}-%{version}-filelist +/sbin/e-smith/genfilelist $RPM_BUILD_ROOT > %{name}-%{version}-filelist + +%files -f %{name}-%{version}-filelist +%defattr(-,root,root,-) + +%clean +rm -rf $RPM_BUILD_ROOT + +%post + +%changelog +* Sat Sep 07 2024 cvs2git.sh aka Brian Read 0.1-12.sme +- Roll up patches and move to git repo [SME: 12338] + +* Sat Sep 07 2024 BogusDateBot +- Eliminated rpmbuild "bogus date" warnings due to inconsistent weekday, + by assuming the date is correct and changing the weekday. + +* Fri Sep 06 2024 Terry Fage 0.1-11.sme +- apply locale 2024-09-05.patch + +* Sat Jul 30 2022 Jean-Philippe Pialasse 0.1-10.sme +- add provides perl(esmith::FormMagick::Panel::mailalias) [SME: 12132] + +* Sat Jul 23 2022 Jean-Philippe Pialasse 0.1-9.sme +- untaint correctly mailalias [SME: 12108] + +* Mon Aug 23 2021 Terry Fage 0.1-8.sme +- apply locale 2021-08-22 patch + +* Tue Jun 01 2021 Jean-Philippe Pialasse 0.1-7.sme +- add dummy smeserver-mailalias-update event [SME: 11279] + +* Sun Dec 20 2020 Brian Read 0.1-6.sme +- Initial Import in SME 10 [SME: 11279] + +* Sat Dec 07 2019 SME Translation Server 0.1-5.sme +- apply locale 2019-12-07 patch + +* Sun Dec 16 2018 Terry Fage 0.1-4 +- fix wrong path and file name in createlinks [SME: 10518] + +* Fri Dec 14 2018 John Crisp 0.1-3 +- apply locale patch 2018-12-14 +- bump required SME release version + +* Tue Feb 13 2018 Jean-Philipe Pialasse 0.1-2.sme +- improve translation strings + +* Tue Feb 13 2018 Jean-Philipe Pialasse 0.1-1.sme +- fix wrong pm path [SME: 10518] + +* Mon Feb 12 2018 Jean-Philipe Pialasse 0.1-0.3.sme +- first import in SME contribs repo and cvs + +* Tue Sep 27 2011 JP PIALASSE tests@pialasse.com 0.1-0.2 +- Formagick mailalias.pm added in archive +- beta release +- still need default db + +* Tue Sep 27 2011 JP PIALASSE tests@pialasse.com 0.1-0.1 +- first package for smeserver-mailalias +- panel for server-manager +- still need to create default db +- beta release