initial commit of file from CVS for smeserver-wbl on Sat Sep 7 21:14:56 AEST 2024
This commit is contained in:
parent
d087a82a37
commit
9cbf3c07cd
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
*.rpm
|
||||
*.log
|
||||
*spec-20*
|
||||
*.tar.gz
|
21
Makefile
Normal file
21
Makefile
Normal file
@ -0,0 +1,21 @@
|
||||
# Makefile for source rpm: smeserver-wbl
|
||||
# $Id: Makefile,v 1.1 2020/06/08 11:21:07 michel Exp $
|
||||
NAME := smeserver-wbl
|
||||
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)
|
14
README.md
14
README.md
@ -1,3 +1,15 @@
|
||||
# smeserver-wbl
|
||||
# <img src="https://www.koozali.org/images/koozali/Logo/Png/Koozali_logo_2016.png" width="25%" vertical="auto" style="vertical-align:bottom"> smeserver-wbl
|
||||
|
||||
SMEServer Koozali developed git repo for smeserver-wbl smecontribs
|
||||
|
||||
## Wiki
|
||||
<br />https://wiki.koozali.org/
|
||||
|
||||
## Bugzilla
|
||||
Show list of outstanding bugs: [here](https://bugs.koozali.org/buglist.cgi?component=smeserver-wbl&product=SME%20Contribs&query_format=advanced&limit=0&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=CONFIRMED)
|
||||
|
||||
## Description
|
||||
|
||||
<br />*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*
|
||||
<br />
|
||||
|
1
contriborbase
Normal file
1
contriborbase
Normal file
@ -0,0 +1 @@
|
||||
contribs10
|
53
createlinks
Executable file
53
createlinks
Executable file
@ -0,0 +1,53 @@
|
||||
#!/usr/bin/perl -w
|
||||
|
||||
use esmith::Build::CreateLinks qw(:all);
|
||||
use File::Basename;
|
||||
use File::Path;
|
||||
|
||||
my $panel = "manager";
|
||||
panel_link("wbl", $panel);
|
||||
|
||||
templates2events("/var/service/qpsmtpd/config/badmailfrom", "email-update");
|
||||
templates2events("/var/service/qpsmtpd/config/whitelisthelo", "email-update");
|
||||
templates2events("/var/service/qpsmtpd/config/whitelisthosts", "email-update");
|
||||
templates2events("/var/service/qpsmtpd/config/whitelistsenders", "email-update");
|
||||
|
||||
|
||||
my $wbl = "wbl-update";
|
||||
templates2events("/var/qmail/control/badmailfrom", "$wbl");
|
||||
templates2events("/var/service/qpsmtpd/config/badmailfrom", "$wbl");
|
||||
templates2events("/var/service/qpsmtpd/config/badhelo", "$wbl");
|
||||
templates2events("/var/service/qpsmtpd/config/dnsbl_zones", "$wbl");
|
||||
templates2events("/var/service/qpsmtpd/config/rhsbl_zones ", "$wbl");
|
||||
templates2events("/var/service/qpsmtpd/config/whitelisthelo", "$wbl");
|
||||
templates2events("/var/service/qpsmtpd/config/whitelisthosts", "$wbl");
|
||||
templates2events("/var/service/qpsmtpd/config/whitelistsenders", "$wbl");
|
||||
templates2events("/var/service/qpsmtpd/config/peers/0", "$wbl");
|
||||
templates2events("/var/service/qpsmtpd/config/peers/local", "$wbl");
|
||||
templates2events("/etc/mail/spamassassin/local.cf", "$wbl");
|
||||
safe_symlink("restart", "root/etc/e-smith/events/$wbl/services2adjust/spamassassin");
|
||||
safe_symlink("restart", "root/etc/e-smith/events/$wbl/services2adjust/qpsmtpd");
|
||||
safe_symlink("restart", "root/etc/e-smith/events/$wbl/services2adjust/sqpsmtpd");
|
||||
safe_symlink("../../plugins/11whitelist",
|
||||
"root/etc/e-smith/templates/var/service/qpsmtpd/config/peers/0/11whitelist");
|
||||
|
||||
# own event
|
||||
my $wbl = "smeserver-wbl-update";
|
||||
templates2events("/var/qmail/control/badmailfrom", "$wbl");
|
||||
templates2events("/var/service/qpsmtpd/config/badmailfrom", "$wbl");
|
||||
templates2events("/var/service/qpsmtpd/config/badhelo", "$wbl");
|
||||
templates2events("/var/service/qpsmtpd/config/dnsbl_zones", "$wbl");
|
||||
templates2events("/var/service/qpsmtpd/config/rhsbl_zones ", "$wbl");
|
||||
templates2events("/var/service/qpsmtpd/config/whitelisthelo", "$wbl");
|
||||
templates2events("/var/service/qpsmtpd/config/whitelisthosts", "$wbl");
|
||||
templates2events("/var/service/qpsmtpd/config/whitelistsenders", "$wbl");
|
||||
templates2events("/var/service/qpsmtpd/config/peers/0", "$wbl");
|
||||
templates2events("/var/service/qpsmtpd/config/peers/local", "$wbl");
|
||||
templates2events("/etc/mail/spamassassin/local.cf", "$wbl");
|
||||
|
||||
safe_symlink("restart", "root/etc/e-smith/events/$wbl/services2adjust/spamassassin");
|
||||
safe_symlink("restart", "root/etc/e-smith/events/$wbl/services2adjust/qpsmtpd");
|
||||
safe_symlink("restart", "root/etc/e-smith/events/$wbl/services2adjust/sqpsmtpd");
|
||||
event_link("navigation-conf", $wbl, "80");
|
||||
safe_symlink("../../plugins/11whitelist",
|
||||
"root/etc/e-smith/templates/var/service/qpsmtpd/config/peers/0/11whitelist");
|
1
root/etc/e-smith/db/wbl/defaults/badhelo/type
Normal file
1
root/etc/e-smith/db/wbl/defaults/badhelo/type
Normal file
@ -0,0 +1 @@
|
||||
list
|
1
root/etc/e-smith/db/wbl/defaults/badmailfrom/type
Normal file
1
root/etc/e-smith/db/wbl/defaults/badmailfrom/type
Normal file
@ -0,0 +1 @@
|
||||
list
|
1
root/etc/e-smith/db/wbl/defaults/whitelisthelo/type
Normal file
1
root/etc/e-smith/db/wbl/defaults/whitelisthelo/type
Normal file
@ -0,0 +1 @@
|
||||
list
|
1
root/etc/e-smith/db/wbl/defaults/whitelisthosts/type
Normal file
1
root/etc/e-smith/db/wbl/defaults/whitelisthosts/type
Normal file
@ -0,0 +1 @@
|
||||
list
|
1
root/etc/e-smith/db/wbl/defaults/whitelistsenders/type
Normal file
1
root/etc/e-smith/db/wbl/defaults/whitelistsenders/type
Normal file
@ -0,0 +1 @@
|
||||
list
|
191
root/etc/e-smith/locale/bg/etc/e-smith/web/functions/wbl
Normal file
191
root/etc/e-smith/locale/bg/etc/e-smith/web/functions/wbl
Normal file
@ -0,0 +1,191 @@
|
||||
<lexicon lang="bg">
|
||||
<!-- vim: ft=xml:
|
||||
-->
|
||||
|
||||
# WBL_BUTTONS
|
||||
|
||||
<entry>
|
||||
<base>SAVE</base>
|
||||
<trans>Запис</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>PERFORM</base>
|
||||
<trans>Изпълни</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_FIRST
|
||||
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Черни и бели списъци за ел. поща</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>OPERATION_STATUS_REPORT</base>
|
||||
<trans>Отчет за изпълнението</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WBL_DESCRIPTION</base>
|
||||
<trans>Трафикът от ел. съобщения се сканира и може да бъде блокиран според включените методи за оценка. Можете да използвате този панел за определяне на бели и черни списъци за електронната поща.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST_DESCRIPTION</base>
|
||||
<trans>Списъците RBL's се ползват за корекция на DNSBL и RHSBL.</trans>
|
||||
</entry>
|
||||
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST</base>
|
||||
<trans>Списък RBLs</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST_DESCRIPTION</base>
|
||||
<trans>Черните списъци се ползват за отхвърляне на ел. съобщения.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST</base>
|
||||
<trans>Черен списък</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST_DESCRIPTION</base>
|
||||
<trans>Белите списъци се ползват за изрично приемане на съобщения.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST</base>
|
||||
<trans>Бял списък</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_BLACK
|
||||
|
||||
<entry>
|
||||
<base>BLACK_TITLE</base>
|
||||
<trans>Сървърът включва вградена поддръжка на дефинирани от администратора черни списъци, badhelo и badmailfrom.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_DESCRIPTION</base>
|
||||
<trans>DNSBL е съкращение на "DNS blacklist" - черен списък по DNS.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_LABEL</base>
|
||||
<trans>Състояние на DNSBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_DESCRIPTION</base>
|
||||
<trans>RHSBL е съкращение на "Right Hand Side Blacklist" черен списък RHS - частта 'от дясно'.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_LABEL</base>
|
||||
<trans>Състояние на RHSBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_DESCRIPTION</base>
|
||||
<trans>Проверява съобщението HELO, получено от свързания хост. Отхвърля всеки, който е в badhelo по време на фаза 'helo'.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_LABEL</base>
|
||||
<trans>qpsmtpd badhelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_DESCRIPTION</base>
|
||||
<trans>Проверява адреса на изпращача по плик. Отхвърля всеки който е (@host или user@host) в badmailfrom по време на фаза 'mail'.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_LABEL</base>
|
||||
<trans>qmail badmailfrom</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_WHITELIST
|
||||
|
||||
<entry>
|
||||
<base>WHITE_TITLE</base>
|
||||
<trans>Използвайте този панел за да промените настройките на белия списък. Всички елементи в него ще бъдат разрешени</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RRFH_LABEL</base>
|
||||
<trans>Състояние на белия списък</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_DESCRIPTION</base>
|
||||
<trans>Всеки IP адрес показан в whitelisthosts ще бъде освободен от всички следващи проверки по време на фаза 'connect'.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthosts</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_DESCRIPTION</base>
|
||||
<trans>Всеки хост, който изпрати HELO, което съвпадне с елемент whitelisthelo ще бъде изключен от следващи проверки по време на фаза 'helo'.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_DESCRIPTION</base>
|
||||
<trans>Всеки изпращач на съобщение по плик (host.domain или user@host.domain) съвпадащ с елемент от whitelistsenders ще бъде изключен от следващи проверки по време на фаза 'mail'.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_LABEL</base>
|
||||
<trans>qpsmtpd whitelistsenders</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_DESCRIPTION</base>
|
||||
<trans>Всеки изпращач на съобщение по плик (*@host или user@host) съвпадащ с елемент от whitelist_from ще бъде изключен от отхвърляне от spamassassin.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_LABEL</base>
|
||||
<trans>spamassassin whitelist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_LABEL</base>
|
||||
<trans>spamassassin blacklist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_DESCRIPTION</base>
|
||||
<trans>Всеки изпращач на съобщение по плик (*@host или user@host) съвпадащ с елемент от blacklist_from ще бъде отхвърлен от spamassassin.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_LABEL</base>
|
||||
<trans>RHSBL (qpsmtpd SBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_DESCRIPTION</base>
|
||||
<trans>Блокиращ списък RHS - частта 'от дясно' ('right hand side') на хоста/домейна на изпращача ще бъде проверена с тези сървъри</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_LABEL</base>
|
||||
<trans>DNSBL зони (qpsmtpd RBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_DESCRIPTION</base>
|
||||
<trans>Блокиращ списък по DNS - IP адреса на изпращача ще бъде проверен с тези сървъри</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBL_TITLE</base>
|
||||
<trans>Черните дупки в реално време (RBLs ) ще бъдат стандартно изключени. За да намалите спама можете да ги включите тук.</trans>
|
||||
</entry>
|
||||
</lexicon>
|
191
root/etc/e-smith/locale/da/etc/e-smith/web/functions/wbl
Normal file
191
root/etc/e-smith/locale/da/etc/e-smith/web/functions/wbl
Normal file
@ -0,0 +1,191 @@
|
||||
<lexicon lang="da">
|
||||
<!-- vim: ft=xml:
|
||||
-->
|
||||
|
||||
# WBL_BUTTONS
|
||||
|
||||
<entry>
|
||||
<base>SAVE</base>
|
||||
<trans>Gem</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>PERFORM</base>
|
||||
<trans>Udfør</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_FIRST
|
||||
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>E-mail WBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>OPERATION_STATUS_REPORT</base>
|
||||
<trans>Status rapport</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WBL_DESCRIPTION</base>
|
||||
<trans>E-mail trafik skannes og kan blive blokeret af forskellige kontrolmetoder som er aktiveret. Du kan bruge dette panel til at definere e-mal white/black lister. </trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST_DESCRIPTION</base>
|
||||
<trans>RBL's liste bruges til at justere DNSBL og RHSBL.</trans>
|
||||
</entry>
|
||||
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST</base>
|
||||
<trans>RBL's liste</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST_DESCRIPTION</base>
|
||||
<trans>Sortlistet bruges til at afvise e-mail trafik.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST</base>
|
||||
<trans>Sortlistet</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST_DESCRIPTION</base>
|
||||
<trans>Hvid listet bruges til at acceptere e-mail trakfik</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST</base>
|
||||
<trans>Hvid liste</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_BLACK
|
||||
|
||||
<entry>
|
||||
<base>BLACK_TITLE</base>
|
||||
<trans>Denne server understøtter admin i at definere sortlister, badhelo og badmailfrom</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_DESCRIPTION</base>
|
||||
<trans>DNSBL står for DNS 'Black List'. </trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_LABEL</base>
|
||||
<trans>DNSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_DESCRIPTION</base>
|
||||
<trans>RHSBL står for 'Right Hand Side Blacklist'.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_LABEL</base>
|
||||
<trans>RHSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_DESCRIPTION</base>
|
||||
<trans>Kontroller 'HELO beskeder, som leveres fra en ekstern server. Afvis alle, som står på listen 'badhelo under 'helo' fasen.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_LABEL</base>
|
||||
<trans>qpsmtpd badhelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_DESCRIPTION</base>
|
||||
<trans>Kontroller afsenderadresse. Afvis alle som står på listen badmailfrom (@host eller bruger@host).</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_LABEL</base>
|
||||
<trans>qmail badmailfrom</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_WHITELIST
|
||||
|
||||
<entry>
|
||||
<base>WHITE_TITLE</base>
|
||||
<trans>Brug dette panel til at redigere din servers 'White List' opsætning. Alle værdier vil aktiveret som standard</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RRFH_LABEL</base>
|
||||
<trans>'Whitelist' status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_DESCRIPTION</base>
|
||||
<trans>Alle IP-adresser registreret i 'whitelisthost' vil blive fritaget for yderligere kontrol under 'Tilslut' fasen.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthosts</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_DESCRIPTION</base>
|
||||
<trans>Alle servere som angiver en HELO der matcher en værdi i 'whitelisthelo' undtages for yderligere kontrol under 'helo' fasen.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_DESCRIPTION</base>
|
||||
<trans>Enhver afsender af e-mail (host.domain eller bruger@host.domain) som matcher en værdi i whitelistsenders undtages for yderligere kontrol under 'mail' fasen.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_LABEL</base>
|
||||
<trans>qpsmtpd whitelistsenders</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_DESCRIPTION</base>
|
||||
<trans>Alle afsendere af e-mail (*@host or user@host) som matcher en værdi i 'whitelist_from' undtages for afvisning af spamassassin.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_LABEL</base>
|
||||
<trans>spamassassin whitelist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_LABEL</base>
|
||||
<trans>spamassassin blacklist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in blacklist_from will be rejected by spamassassin.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_LABEL</base>
|
||||
<trans>RHSBL (qpsmtpd SBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_DESCRIPTION</base>
|
||||
<trans>RHS afvis liste - "højre side" af afsendere/domæner vil blive kontrolleret op imod de følgende servere</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_LABEL</base>
|
||||
<trans>DNSBL Zoner (qpsmtpd RBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_DESCRIPTION</base>
|
||||
<trans>DNS afvis liste - afsenders IP adresse vil blive kontrolleret op imod de følgende servere</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBL_TITLE</base>
|
||||
<trans>Real tids Blackhole liste er deaktiveret som standard. For ar reducere mængden af spam kan aktivere RBLs her.</trans>
|
||||
</entry>
|
||||
</lexicon>
|
191
root/etc/e-smith/locale/de/etc/e-smith/web/functions/wbl
Normal file
191
root/etc/e-smith/locale/de/etc/e-smith/web/functions/wbl
Normal file
@ -0,0 +1,191 @@
|
||||
<lexicon lang="de">
|
||||
<!-- vim: ft=xml:
|
||||
-->
|
||||
|
||||
# WBL_BUTTONS
|
||||
|
||||
<entry>
|
||||
<base>SAVE</base>
|
||||
<trans>Speichern</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>PERFORM</base>
|
||||
<trans>Ausführen</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_FIRST
|
||||
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>E-Mail WBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>OPERATION_STATUS_REPORT</base>
|
||||
<trans>Statusbericht</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WBL_DESCRIPTION</base>
|
||||
<trans>E-Mail Traffic wird gescannt und wird gegebenenfalls auf Basis der aktivierten Filtermethoden blockiert. Sie können hier E-Mail White- und Blacklisten definieren.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST_DESCRIPTION</base>
|
||||
<trans>RBL Liste, die zum Anpassen der DNSBL und RHSBL verwendet wird.</trans>
|
||||
</entry>
|
||||
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST</base>
|
||||
<trans>Liste des RBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST_DESCRIPTION</base>
|
||||
<trans>Blacklisten werden zum Zurückweisen von E-Mail Traffic verwendet.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST</base>
|
||||
<trans>Blacklisten</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST_DESCRIPTION</base>
|
||||
<trans>Whitelisten werden zum Annehmen von E-Mail Traffic verwendet.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST</base>
|
||||
<trans>Whitelisten</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_BLACK
|
||||
|
||||
<entry>
|
||||
<base>BLACK_TITLE</base>
|
||||
<trans>Dieser Server enthält eingebaute Unterstützung für Admin-definierte Blacklisten, badhelo und badmailfrom.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_DESCRIPTION</base>
|
||||
<trans>DNSBL ist die Abkürzung für "DNS blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_LABEL</base>
|
||||
<trans>DNSBL Status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_DESCRIPTION</base>
|
||||
<trans>RHSBL ist die Abkürzung für "Right Hand Side blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_LABEL</base>
|
||||
<trans>RHSBL Status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_DESCRIPTION</base>
|
||||
<trans>Prüfe die HELO Nachricht eines sich verbindenden Hosts. Weise alle Hosts, die in der Liste badhelo stehen, noch während der 'helo' Verbindungsphase zurück.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_LABEL</base>
|
||||
<trans>qpsmtpd badhelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_DESCRIPTION</base>
|
||||
<trans>Prüfe die Envelope Sender Adressen. Weise alle Sender (@host oder user@host), die in der Liste badmailform stehen, noch während der 'mail' Verbindungsphase zurück.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_LABEL</base>
|
||||
<trans>qmail badmailfrom</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_WHITELIST
|
||||
|
||||
<entry>
|
||||
<base>WHITE_TITLE</base>
|
||||
<trans>Benutzen Sie diese Seite, um die Whitelist Einstellungen ihres Servers zu ändern. Alle Eingaben sind standardmäßig aktiviert</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RRFH_LABEL</base>
|
||||
<trans>Whitelist Status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_DESCRIPTION</base>
|
||||
<trans>Jede IP Adresse, die unter whitelisthosts gelistet ist, wird beim Verbindungsvorgang in der 'connect' Phase nicht weiter überprüft.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthosts</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_DESCRIPTION</base>
|
||||
<trans>Jeder Host mit einem HELO passend zu einem Eintrag in der Liste whitelisthelo wird in der 'helo' Phase nicht weiter überprüft.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_DESCRIPTION</base>
|
||||
<trans>Jeder Absender einer E-Mail (host.domain oder user@host.domain) mit einem korrespondierenden Eintrag in whitelistsenders wird während 'mail' Phase nicht weiter überprüft.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_LABEL</base>
|
||||
<trans>qpsmtpd whitelistsenders</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_DESCRIPTION</base>
|
||||
<trans>Jeder Absender einer E-Mail (*@host oder user@host) mit einem korrespondierenden Eintrag in der Liste whitelist_from wird von spamassassin nicht weiter überprüft.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_LABEL</base>
|
||||
<trans>spamassassin whitelist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_LABEL</base>
|
||||
<trans>spamassassin blacklist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_DESCRIPTION</base>
|
||||
<trans>Jeder Absender einer E-Mail (*@host oder user@host) mit einem korrespondierenden Eintrag in der Liste blacklist_from wird von spamassassin zurückgewiesen.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_LABEL</base>
|
||||
<trans>RHSBL (qpsmtpd SBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_DESCRIPTION</base>
|
||||
<trans>RHS block list - 'right hand side' der Sender Host/Domäne wird gegen die folgenden Server geprüft</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_LABEL</base>
|
||||
<trans>DNSBL Zonen (qpsmtpd RBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_DESCRIPTION</base>
|
||||
<trans>DNS Block List - Sender IP Adressen werden gegen die folgenden Server geprüft</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBL_TITLE</base>
|
||||
<trans>Echtzeit Blackhole Listen sind standardmäßig nicht aktiviert. Um Spam zu reduzieren, können RBLs hier aktiviert werden.</trans>
|
||||
</entry>
|
||||
</lexicon>
|
191
root/etc/e-smith/locale/el/etc/e-smith/web/functions/wbl
Normal file
191
root/etc/e-smith/locale/el/etc/e-smith/web/functions/wbl
Normal file
@ -0,0 +1,191 @@
|
||||
<lexicon lang="el">
|
||||
<!-- vim: ft=xml:
|
||||
-->
|
||||
|
||||
# WBL_BUTTONS
|
||||
|
||||
<entry>
|
||||
<base>SAVE</base>
|
||||
<trans>Αποθήκευση</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>PERFORM</base>
|
||||
<trans>Εκτέλεση</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_FIRST
|
||||
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>E-mail WBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>OPERATION_STATUS_REPORT</base>
|
||||
<trans>Αναφορά κατάστασης λειτουργίας</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WBL_DESCRIPTION</base>
|
||||
<trans>E-mail traffic is scanned and may be blocked due to the various screening methods enabled. You may use this panel to define e-mail white/black lists.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST_DESCRIPTION</base>
|
||||
<trans>RBL's List is used to adjust DNSBL and RHSBL.</trans>
|
||||
</entry>
|
||||
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST</base>
|
||||
<trans>RBL's List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST_DESCRIPTION</base>
|
||||
<trans>Black lists are used for rejecting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST</base>
|
||||
<trans>Black List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST_DESCRIPTION</base>
|
||||
<trans>White lists are used for accepting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST</base>
|
||||
<trans>White List</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_BLACK
|
||||
|
||||
<entry>
|
||||
<base>BLACK_TITLE</base>
|
||||
<trans>This server includes built-in support for using the admin defined black lists, badhelo and badmailfrom.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_DESCRIPTION</base>
|
||||
<trans>DNSBL is an abbreviation for "DNS blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_LABEL</base>
|
||||
<trans>DNSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_DESCRIPTION</base>
|
||||
<trans>RHSBL is an abbreviation for "Right Hand Side Blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_LABEL</base>
|
||||
<trans>RHSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_DESCRIPTION</base>
|
||||
<trans>Check a HELO message delivered from a connecting host. Reject any that appear in badhelo during the 'helo' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_LABEL</base>
|
||||
<trans>qpsmtpd badhelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_DESCRIPTION</base>
|
||||
<trans>Check envelope sender addresses. Reject any that appear (@host or user@host) in badmailfrom during the 'mail' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_LABEL</base>
|
||||
<trans>qmail badmailfrom</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_WHITELIST
|
||||
|
||||
<entry>
|
||||
<base>WHITE_TITLE</base>
|
||||
<trans>Use this panel to modify your servers White List settings. All entries will be enabled by default</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RRFH_LABEL</base>
|
||||
<trans>Whitelists status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_DESCRIPTION</base>
|
||||
<trans>Any IP address listed in whitelisthosts will be exempted from any further validation during the 'connect' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthosts</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_DESCRIPTION</base>
|
||||
<trans>Any host that issues a HELO matching an entry in whitelisthelo will be exempted from further validation during the 'helo' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (host.domain or user@host.domain) matching an entry in whitelistsenders will be exempted from further validation during the 'mail' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_LABEL</base>
|
||||
<trans>qpsmtpd whitelistsenders</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in whitelist_from will be exempted from spamassassin rejection.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_LABEL</base>
|
||||
<trans>spamassassin whitelist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_LABEL</base>
|
||||
<trans>spamassassin blacklist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in blacklist_from will be rejected by spamassassin.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_LABEL</base>
|
||||
<trans>RHSBL (qpsmtpd SBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_DESCRIPTION</base>
|
||||
<trans>RHS block list - 'right hand side' of senders host/domain will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_LABEL</base>
|
||||
<trans>DNSBL Zones (qpsmtpd RBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_DESCRIPTION</base>
|
||||
<trans>DNS Block List - senders IP address will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBL_TITLE</base>
|
||||
<trans>Real-time Blackhole Lists are disabled by default. To help reduce spam you can enable RBLs here.</trans>
|
||||
</entry>
|
||||
</lexicon>
|
222
root/etc/e-smith/locale/en-us/etc/e-smith/web/functions/wbl
Normal file
222
root/etc/e-smith/locale/en-us/etc/e-smith/web/functions/wbl
Normal file
@ -0,0 +1,222 @@
|
||||
<lexicon lang="en-us">
|
||||
<!-- vim: ft=xml:
|
||||
-->
|
||||
|
||||
# WBL_BUTTONS
|
||||
|
||||
<entry>
|
||||
<base>SAVE</base>
|
||||
<trans>Save</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>PERFORM</base>
|
||||
<trans>Perform</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_FIRST
|
||||
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>E-mail WBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>OPERATION_STATUS_REPORT</base>
|
||||
<trans>
|
||||
Operation status report
|
||||
</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WBL_DESCRIPTION</base>
|
||||
<trans>E-mail traffic is scanned and may be blocked due to the various screening methods enabled.
|
||||
You may use this panel to define e-mail white/black lists.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST_DESCRIPTION</base>
|
||||
<trans>RBL's List is used to adjust DNSBL and RHSBL.</trans>
|
||||
</entry>
|
||||
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST</base>
|
||||
<trans>RBL's List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST_DESCRIPTION</base>
|
||||
<trans>Black lists are used for rejecting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST</base>
|
||||
<trans>Black List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST_DESCRIPTION</base>
|
||||
<trans>White lists are used for accepting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST</base>
|
||||
<trans>White List</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_BLACK
|
||||
|
||||
<entry>
|
||||
<base>BLACK_TITLE</base>
|
||||
<trans>
|
||||
This server includes built-in support for using the admin defined black lists, badhelo and
|
||||
badmailfrom.
|
||||
</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_DESCRIPTION</base>
|
||||
<trans>
|
||||
DNSBL is an abbreviation for "DNS blacklist".
|
||||
</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_LABEL</base>
|
||||
<trans>DNSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_DESCRIPTION</base>
|
||||
<trans>
|
||||
RHSBL is an abbreviation for "Right Hand Side Blacklist".
|
||||
</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_LABEL</base>
|
||||
<trans>RHSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_DESCRIPTION</base>
|
||||
<trans>
|
||||
Check a HELO message delivered from a connecting host. Reject any
|
||||
that appear in badhelo during the 'helo' stage.
|
||||
</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_LABEL</base>
|
||||
<trans>qpsmtpd badhelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_DESCRIPTION</base>
|
||||
<trans>
|
||||
Check envelope sender addresses. Reject any
|
||||
that appear (@host or user@host) in badmailfrom during the 'mail' stage.
|
||||
</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_LABEL</base>
|
||||
<trans>qmail badmailfrom</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_WHITELIST
|
||||
|
||||
<entry>
|
||||
<base>WHITE_TITLE</base>
|
||||
<trans>Use this panel to modify your servers White List settings. All entries will be enabled by default</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RRFH_LABEL</base>
|
||||
<trans>Whitelists status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_DESCRIPTION</base>
|
||||
<trans>
|
||||
Any IP address listed in whitelisthosts will be exempted
|
||||
from any further validation during the 'connect' stage.
|
||||
</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthosts</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_DESCRIPTION</base>
|
||||
<trans>
|
||||
Any host that issues a HELO matching an entry in whitelisthelo will
|
||||
be exempted from further validation during the 'helo' stage.
|
||||
</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_DESCRIPTION</base>
|
||||
<trans>
|
||||
Any envelope sender of a mail (host.domain or user@host.domain) matching an entry in whitelistsenders
|
||||
will be exempted from further validation during the 'mail' stage.
|
||||
</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_LABEL</base>
|
||||
<trans>qpsmtpd whitelistsenders</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_DESCRIPTION</base>
|
||||
<trans>
|
||||
Any envelope sender of a mail (*@host or user@host) matching an entry in whitelist_from
|
||||
will be exempted from spamassassin rejection.
|
||||
</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_LABEL</base>
|
||||
<trans>spamassassin whitelist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_LABEL</base>
|
||||
<trans>spamassassin blacklist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_DESCRIPTION</base>
|
||||
<trans>
|
||||
Any envelope sender of a mail (*@host or user@host) matching an entry in blacklist_from
|
||||
will be rejected by spamassassin.
|
||||
</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_LABEL</base>
|
||||
<trans>RHSBL (qpsmtpd SBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_DESCRIPTION</base>
|
||||
<trans>RHS block list - 'right hand side' of senders host/domain will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_LABEL</base>
|
||||
<trans>DNSBL Zones (qpsmtpd RBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_DESCRIPTION</base>
|
||||
<trans>DNS Block List - senders IP address will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBL_TITLE</base>
|
||||
<trans>Real-time Blackhole Lists are disabled by default. To help reduce spam you can enable RBLs here.</trans>
|
||||
</entry>
|
||||
</lexicon>
|
191
root/etc/e-smith/locale/es/etc/e-smith/web/functions/wbl
Normal file
191
root/etc/e-smith/locale/es/etc/e-smith/web/functions/wbl
Normal file
@ -0,0 +1,191 @@
|
||||
<lexicon lang="es">
|
||||
<!-- vim: ft=xml:
|
||||
-->
|
||||
|
||||
# WBL_BUTTONS
|
||||
|
||||
<entry>
|
||||
<base>SAVE</base>
|
||||
<trans>Guardar</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>PERFORM</base>
|
||||
<trans>Ejecutar</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_FIRST
|
||||
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>E-mail WBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>OPERATION_STATUS_REPORT</base>
|
||||
<trans>Estado de la operación</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WBL_DESCRIPTION</base>
|
||||
<trans>E-mail traffic is scanned and may be blocked due to the various screening methods enabled. You may use this panel to define e-mail white/black lists.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST_DESCRIPTION</base>
|
||||
<trans>RBL's List is used to adjust DNSBL and RHSBL.</trans>
|
||||
</entry>
|
||||
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST</base>
|
||||
<trans>RBL's List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST_DESCRIPTION</base>
|
||||
<trans>Black lists are used for rejecting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST</base>
|
||||
<trans>Black List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST_DESCRIPTION</base>
|
||||
<trans>White lists are used for accepting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST</base>
|
||||
<trans>White List</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_BLACK
|
||||
|
||||
<entry>
|
||||
<base>BLACK_TITLE</base>
|
||||
<trans><![CDATA[ <p>Este servidor incluye soporte propio para utilizar dos métodos de black list externas, RHSBL y DNSBL. También soporta las black lists definidas por el administrador, badhelo y badmailfrom.</p> ]]></trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_DESCRIPTION</base>
|
||||
<trans>DNSBL es una abreviatura de "DNS blacklist". Esta es una lista de direcciones IP conocidas de spammers.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_LABEL</base>
|
||||
<trans>Estado DNSBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_DESCRIPTION</base>
|
||||
<trans>RHSBL es una abreviatura de "Right Hand Side Blacklist". Esta es una lista de nombres de dominio conocidos de spammers.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_LABEL</base>
|
||||
<trans>Estado RHSBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_DESCRIPTION</base>
|
||||
<trans>Comprobar el mensaje HELO emitido desde la conexión de un host. Rechazar cualquiera que aparezca en badhelo durante la fase 'helo'.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_LABEL</base>
|
||||
<trans>qpsmtpd badhelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_DESCRIPTION</base>
|
||||
<trans>Comprobar las direcciones del remitente del sobre (Return-Path). Rechazar cualquier (@host o usuario@host) declarado en badmailfrom durante la fase 'mail'.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_LABEL</base>
|
||||
<trans>qmail badmailfrom</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_WHITELIST
|
||||
|
||||
<entry>
|
||||
<base>WHITE_TITLE</base>
|
||||
<trans>Utilice este panel para modificar los ajustes de White List de su servidor.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RRFH_LABEL</base>
|
||||
<trans>Estado Whitelists</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_DESCRIPTION</base>
|
||||
<trans>Cualquier IP listada en whitelisthosts estará exenta de cualquier futura validación durante la fase 'connect'.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthosts</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_DESCRIPTION</base>
|
||||
<trans>Cualquier host que tenga un HELO que coincida con una entrada en whitelisthelo estará exento de cualquier futura validación durante la fase 'helo'.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_DESCRIPTION</base>
|
||||
<trans>Cualquier remitente de sobre (Return-Path) de un correo (@host o usuario@host) que coincida con una entrada en whitelistsenders estará exento de cualquier futura validación durante la fase 'mail'.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_LABEL</base>
|
||||
<trans>qpsmtpd whitelistsenders</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_DESCRIPTION</base>
|
||||
<trans>Cualquier remitente de sobre (Return-Path) de un correo (*@host o usuario@host) que coincida con una entrada en whitelist_from estará exento del rechazo de spamassassin.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_LABEL</base>
|
||||
<trans>spamassassin whitelist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_LABEL</base>
|
||||
<trans>spamassassin blacklist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in blacklist_from will be rejected by spamassassin.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_LABEL</base>
|
||||
<trans>RHSBL (qpsmtpd SBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_DESCRIPTION</base>
|
||||
<trans>RHS block list - 'right hand side' of senders host/domain will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_LABEL</base>
|
||||
<trans>DNSBL Zones (qpsmtpd RBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_DESCRIPTION</base>
|
||||
<trans>DNS Block List - senders IP address will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBL_TITLE</base>
|
||||
<trans>Real-time Blackhole Lists are disabled by default. To help reduce spam you can enable RBLs here.</trans>
|
||||
</entry>
|
||||
</lexicon>
|
191
root/etc/e-smith/locale/et/etc/e-smith/web/functions/wbl
Normal file
191
root/etc/e-smith/locale/et/etc/e-smith/web/functions/wbl
Normal file
@ -0,0 +1,191 @@
|
||||
<lexicon lang="et">
|
||||
<!-- vim: ft=xml:
|
||||
-->
|
||||
|
||||
# WBL_BUTTONS
|
||||
|
||||
<entry>
|
||||
<base>SAVE</base>
|
||||
<trans>Salvesta</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>PERFORM</base>
|
||||
<trans>Perform</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_FIRST
|
||||
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>E-mail WBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>OPERATION_STATUS_REPORT</base>
|
||||
<trans>Operatsiooni tulemus</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WBL_DESCRIPTION</base>
|
||||
<trans>E-mail traffic is scanned and may be blocked due to the various screening methods enabled. You may use this panel to define e-mail white/black lists.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST_DESCRIPTION</base>
|
||||
<trans>RBL's List is used to adjust DNSBL and RHSBL.</trans>
|
||||
</entry>
|
||||
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST</base>
|
||||
<trans>RBL's List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST_DESCRIPTION</base>
|
||||
<trans>Black lists are used for rejecting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST</base>
|
||||
<trans>Black List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST_DESCRIPTION</base>
|
||||
<trans>White lists are used for accepting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST</base>
|
||||
<trans>White List</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_BLACK
|
||||
|
||||
<entry>
|
||||
<base>BLACK_TITLE</base>
|
||||
<trans>This server includes built-in support for using the admin defined black lists, badhelo and badmailfrom.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_DESCRIPTION</base>
|
||||
<trans>DNSBL is an abbreviation for "DNS blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_LABEL</base>
|
||||
<trans>DNSBL olek</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_DESCRIPTION</base>
|
||||
<trans>RHSBL is an abbreviation for "Right Hand Side Blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_LABEL</base>
|
||||
<trans>RHSBL olek</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_DESCRIPTION</base>
|
||||
<trans>Check a HELO message delivered from a connecting host. Reject any that appear in badhelo during the 'helo' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_LABEL</base>
|
||||
<trans>qpsmtpd badhelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_DESCRIPTION</base>
|
||||
<trans>Check envelope sender addresses. Reject any that appear (@host or user@host) in badmailfrom during the 'mail' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_LABEL</base>
|
||||
<trans>qmail badmailfrom</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_WHITELIST
|
||||
|
||||
<entry>
|
||||
<base>WHITE_TITLE</base>
|
||||
<trans>Kasuta seda paneeli serveri Valge nimekirja seadete muutmiseks.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RRFH_LABEL</base>
|
||||
<trans>Valge nimekirja olek</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_DESCRIPTION</base>
|
||||
<trans>Any IP address listed in whitelisthosts will be exempted from any further validation during the 'connect' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthosts</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_DESCRIPTION</base>
|
||||
<trans>Any host that issues a HELO matching an entry in whitelisthelo will be exempted from further validation during the 'helo' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (host.domain or user@host.domain) matching an entry in whitelistsenders will be exempted from further validation during the 'mail' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_LABEL</base>
|
||||
<trans>qpsmtpd whitelistsenders</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in whitelist_from will be exempted from spamassassin rejection.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_LABEL</base>
|
||||
<trans>spamassassin whitelist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_LABEL</base>
|
||||
<trans>spamassassin whitelist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in blacklist_from will be rejected by spamassassin.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_LABEL</base>
|
||||
<trans>RHSBL (qpsmtpd SBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_DESCRIPTION</base>
|
||||
<trans>RHS block list - 'right hand side' of senders host/domain will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_LABEL</base>
|
||||
<trans>DNSBL Zones (qpsmtpd RBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_DESCRIPTION</base>
|
||||
<trans>DNS Block List - senders IP address will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBL_TITLE</base>
|
||||
<trans>Real-time Blackhole Lists are disabled by default. To help reduce spam you can enable RBLs here.</trans>
|
||||
</entry>
|
||||
</lexicon>
|
191
root/etc/e-smith/locale/fr/etc/e-smith/web/functions/wbl
Normal file
191
root/etc/e-smith/locale/fr/etc/e-smith/web/functions/wbl
Normal file
@ -0,0 +1,191 @@
|
||||
<lexicon lang="fr">
|
||||
<!-- vim: ft=xml:
|
||||
-->
|
||||
|
||||
# WBL_BUTTONS
|
||||
|
||||
<entry>
|
||||
<base>SAVE</base>
|
||||
<trans>Sauvegarder</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>PERFORM</base>
|
||||
<trans>Exécuter</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_FIRST
|
||||
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>WBL courriel</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>OPERATION_STATUS_REPORT</base>
|
||||
<trans>Rapport d'état de l'opération</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WBL_DESCRIPTION</base>
|
||||
<trans>Le trafic courriel est scanné et peut être bloqué en raison des différentes méthodes de dépistage activées. Vous pouvez utiliser ce panneau pour définir les listes blanches / noires de courriels.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST_DESCRIPTION</base>
|
||||
<trans>La liste RBL est utilisée pour ajuster DNSBL et RHSBL.</trans>
|
||||
</entry>
|
||||
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST</base>
|
||||
<trans>Liste RBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST_DESCRIPTION</base>
|
||||
<trans>Les listes noires sont utilisées pour refuser le trafic de courriels.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST</base>
|
||||
<trans>Liste noire</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST_DESCRIPTION</base>
|
||||
<trans>Les listes blanches sont utilisées pour accepter le trafic de courriels.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST</base>
|
||||
<trans>Liste blanche</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_BLACK
|
||||
|
||||
<entry>
|
||||
<base>BLACK_TITLE</base>
|
||||
<trans>Ce serveur inclus un support intégré permettant à l'administrateur de définir des listes noires, badhelo et badmailfrom.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_DESCRIPTION</base>
|
||||
<trans>DNSBL est une abréviation Anglaise pour "Liste noire DNS".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_LABEL</base>
|
||||
<trans>Statut DNSBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_DESCRIPTION</base>
|
||||
<trans>RHSBL est une abréviation pour "Right Hand Side Blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_LABEL</base>
|
||||
<trans>Rapport d'état de RHSBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_DESCRIPTION</base>
|
||||
<trans>Vérifie un message HELO livré par un hôte se connectant. Ceci refuse tout ceux qui apparaissent dans badhelo au moment de la phase 'helo'.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_LABEL</base>
|
||||
<trans>qpsmtpd badhelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_DESCRIPTION</base>
|
||||
<trans>Vérifie les adresses de l'expéditeur d'enveloppe. Refuse tout ce qui apparaît (@hôte ou utilisateur@hôte) dans 'badmailfrom' pendant la phase 'mail'.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_LABEL</base>
|
||||
<trans>qmail 'badmailfrom'</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_WHITELIST
|
||||
|
||||
<entry>
|
||||
<base>WHITE_TITLE</base>
|
||||
<trans>Utilisez cette page pour modifier les paramètres de liste blanche de vos serveurs. Toutes les entrées seront activées par défaut</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RRFH_LABEL</base>
|
||||
<trans>État des listes blanches</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_DESCRIPTION</base>
|
||||
<trans>Toute IP présente dans whitelisthosts sera exemptée de toutes validations supplémentaires pendant la phase 'connexion'</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_LABEL</base>
|
||||
<trans>Qpsmtpd whitelisthosts</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_DESCRIPTION</base>
|
||||
<trans>Tout hôte qui émet un HELO correspondant à une entrée dans whitelisthelo sera exempté de toute autre validation pendant la phase 'helo'</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_DESCRIPTION</base>
|
||||
<trans>Tout expéditeur d'un courriel (hôte.domaine ou utilisateur@hôte.domaine) correspondant à une entrée de la liste blanche des expéditeurs sera exempté de toutes validations supplémentaires durant la phase 'mail'.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_LABEL</base>
|
||||
<trans>qpsmtpd whitelistsenders</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_DESCRIPTION</base>
|
||||
<trans>Tout expéditeur d'un courriel (*@hôte ou utilisateur@hôte) correspondant à une entrée dans whitelist_from sera exempté d'un rejet par spamassassin.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_LABEL</base>
|
||||
<trans>spamassassin whitelist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_LABEL</base>
|
||||
<trans>spamassassin blacklist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_DESCRIPTION</base>
|
||||
<trans>Tout expéditeur d'un courriel (*@hôte ou utilisateur@hôte) correspondant à une entrée dans blacklist_from sera rejeté par spamassassin.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_LABEL</base>
|
||||
<trans>RHSBL (qpsmtpd SBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_DESCRIPTION</base>
|
||||
<trans>Liste de blocage RHS - (Right Hand Side) des expéditeurs hôte / domaine sera vérifié contre les serveurs suivants</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_LABEL</base>
|
||||
<trans>DNSBL Zones (qpsmtpd RBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_DESCRIPTION</base>
|
||||
<trans>Liste de bloquage DNS - L'adresse IP des expéditeurs sera vérifiée à partir des serveurs suivants.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBL_TITLE</base>
|
||||
<trans>Les listes noires en temps réel sont désactivés par défaut. Pour aider à réduire le spam vous pouvez activer les RBLs ici.</trans>
|
||||
</entry>
|
||||
</lexicon>
|
191
root/etc/e-smith/locale/he/etc/e-smith/web/functions/wbl
Normal file
191
root/etc/e-smith/locale/he/etc/e-smith/web/functions/wbl
Normal file
@ -0,0 +1,191 @@
|
||||
<lexicon lang="he">
|
||||
<!-- vim: ft=xml:
|
||||
-->
|
||||
|
||||
# WBL_BUTTONS
|
||||
|
||||
<entry>
|
||||
<base>SAVE</base>
|
||||
<trans>שמור</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>PERFORM</base>
|
||||
<trans>Perform</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_FIRST
|
||||
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>E-mail WBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>OPERATION_STATUS_REPORT</base>
|
||||
<trans>Operation status report</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WBL_DESCRIPTION</base>
|
||||
<trans>E-mail traffic is scanned and may be blocked due to the various screening methods enabled. You may use this panel to define e-mail white/black lists.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST_DESCRIPTION</base>
|
||||
<trans>RBL's List is used to adjust DNSBL and RHSBL.</trans>
|
||||
</entry>
|
||||
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST</base>
|
||||
<trans>RBL's List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST_DESCRIPTION</base>
|
||||
<trans>Black lists are used for rejecting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST</base>
|
||||
<trans>Black List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST_DESCRIPTION</base>
|
||||
<trans>White lists are used for accepting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST</base>
|
||||
<trans>White List</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_BLACK
|
||||
|
||||
<entry>
|
||||
<base>BLACK_TITLE</base>
|
||||
<trans>This server includes built-in support for using the admin defined black lists, badhelo and badmailfrom.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_DESCRIPTION</base>
|
||||
<trans>DNSBL is an abbreviation for "DNS blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_LABEL</base>
|
||||
<trans>DNSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_DESCRIPTION</base>
|
||||
<trans>RHSBL is an abbreviation for "Right Hand Side Blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_LABEL</base>
|
||||
<trans>RHSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_DESCRIPTION</base>
|
||||
<trans>Check a HELO message delivered from a connecting host. Reject any that appear in badhelo during the 'helo' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_LABEL</base>
|
||||
<trans>qpsmtpd badhelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_DESCRIPTION</base>
|
||||
<trans>Check envelope sender addresses. Reject any that appear (@host or user@host) in badmailfrom during the 'mail' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_LABEL</base>
|
||||
<trans>qmail badmailfrom</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_WHITELIST
|
||||
|
||||
<entry>
|
||||
<base>WHITE_TITLE</base>
|
||||
<trans>Use this panel to modify your servers White List settings. All entries will be enabled by default</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RRFH_LABEL</base>
|
||||
<trans>Whitelists status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_DESCRIPTION</base>
|
||||
<trans>Any IP address listed in whitelisthosts will be exempted from any further validation during the 'connect' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthosts</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_DESCRIPTION</base>
|
||||
<trans>Any host that issues a HELO matching an entry in whitelisthelo will be exempted from further validation during the 'helo' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (host.domain or user@host.domain) matching an entry in whitelistsenders will be exempted from further validation during the 'mail' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_LABEL</base>
|
||||
<trans>qpsmtpd whitelistsenders</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in whitelist_from will be exempted from spamassassin rejection.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_LABEL</base>
|
||||
<trans>spamassassin whitelist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_LABEL</base>
|
||||
<trans>spamassassin blacklist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in blacklist_from will be rejected by spamassassin.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_LABEL</base>
|
||||
<trans>RHSBL (qpsmtpd SBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_DESCRIPTION</base>
|
||||
<trans>RHS block list - 'right hand side' of senders host/domain will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_LABEL</base>
|
||||
<trans>DNSBL Zones (qpsmtpd RBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_DESCRIPTION</base>
|
||||
<trans>DNS Block List - senders IP address will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBL_TITLE</base>
|
||||
<trans>Real-time Blackhole Lists are disabled by default. To help reduce spam you can enable RBLs here.</trans>
|
||||
</entry>
|
||||
</lexicon>
|
191
root/etc/e-smith/locale/hu/etc/e-smith/web/functions/wbl
Normal file
191
root/etc/e-smith/locale/hu/etc/e-smith/web/functions/wbl
Normal file
@ -0,0 +1,191 @@
|
||||
<lexicon lang="hu">
|
||||
<!-- vim: ft=xml:
|
||||
-->
|
||||
|
||||
# WBL_BUTTONS
|
||||
|
||||
<entry>
|
||||
<base>SAVE</base>
|
||||
<trans>Mentés</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>PERFORM</base>
|
||||
<trans>Végrehajtás</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_FIRST
|
||||
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>E-mail WBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>OPERATION_STATUS_REPORT</base>
|
||||
<trans>Használati jelentés</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WBL_DESCRIPTION</base>
|
||||
<trans>E-mail traffic is scanned and may be blocked due to the various screening methods enabled. You may use this panel to define e-mail white/black lists.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST_DESCRIPTION</base>
|
||||
<trans>RBL's List is used to adjust DNSBL and RHSBL.</trans>
|
||||
</entry>
|
||||
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST</base>
|
||||
<trans>RBL's List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST_DESCRIPTION</base>
|
||||
<trans>Black lists are used for rejecting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST</base>
|
||||
<trans>Black List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST_DESCRIPTION</base>
|
||||
<trans>White lists are used for accepting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST</base>
|
||||
<trans>White List</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_BLACK
|
||||
|
||||
<entry>
|
||||
<base>BLACK_TITLE</base>
|
||||
<trans>This server includes built-in support for using the admin defined black lists, badhelo and badmailfrom.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_DESCRIPTION</base>
|
||||
<trans>DNSBL is an abbreviation for "DNS blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_LABEL</base>
|
||||
<trans>DNSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_DESCRIPTION</base>
|
||||
<trans>RHSBL is an abbreviation for "Right Hand Side Blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_LABEL</base>
|
||||
<trans>RHSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_DESCRIPTION</base>
|
||||
<trans>Check a HELO message delivered from a connecting host. Reject any that appear in badhelo during the 'helo' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_LABEL</base>
|
||||
<trans>qpsmtpd badhelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_DESCRIPTION</base>
|
||||
<trans>Check envelope sender addresses. Reject any that appear (@host or user@host) in badmailfrom during the 'mail' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_LABEL</base>
|
||||
<trans>qmail badmailfrom</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_WHITELIST
|
||||
|
||||
<entry>
|
||||
<base>WHITE_TITLE</base>
|
||||
<trans>Use this panel to modify your servers White List settings. All entries will be enabled by default</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RRFH_LABEL</base>
|
||||
<trans>Whitelists status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_DESCRIPTION</base>
|
||||
<trans>Any IP address listed in whitelisthosts will be exempted from any further validation during the 'connect' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthosts</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_DESCRIPTION</base>
|
||||
<trans>Any host that issues a HELO matching an entry in whitelisthelo will be exempted from further validation during the 'helo' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (host.domain or user@host.domain) matching an entry in whitelistsenders will be exempted from further validation during the 'mail' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_LABEL</base>
|
||||
<trans>qpsmtpd whitelistsenders</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in whitelist_from will be exempted from spamassassin rejection.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_LABEL</base>
|
||||
<trans>spamassassin whitelist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_LABEL</base>
|
||||
<trans>spamassassin blacklist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in blacklist_from will be rejected by spamassassin.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_LABEL</base>
|
||||
<trans>RHSBL (qpsmtpd SBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_DESCRIPTION</base>
|
||||
<trans>RHS block list - 'right hand side' of senders host/domain will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_LABEL</base>
|
||||
<trans>DNSBL Zones (qpsmtpd RBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_DESCRIPTION</base>
|
||||
<trans>DNS Block List - senders IP address will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBL_TITLE</base>
|
||||
<trans>Real-time Blackhole Lists are disabled by default. To help reduce spam you can enable RBLs here.</trans>
|
||||
</entry>
|
||||
</lexicon>
|
191
root/etc/e-smith/locale/id/etc/e-smith/web/functions/wbl
Normal file
191
root/etc/e-smith/locale/id/etc/e-smith/web/functions/wbl
Normal file
@ -0,0 +1,191 @@
|
||||
<lexicon lang="id">
|
||||
<!-- vim: ft=xml:
|
||||
-->
|
||||
|
||||
# WBL_BUTTONS
|
||||
|
||||
<entry>
|
||||
<base>SAVE</base>
|
||||
<trans>Simpan</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>PERFORM</base>
|
||||
<trans>Jalankan</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_FIRST
|
||||
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>E-mail WBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>OPERATION_STATUS_REPORT</base>
|
||||
<trans>Laporan status operasi</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WBL_DESCRIPTION</base>
|
||||
<trans>E-mail traffic is scanned and may be blocked due to the various screening methods enabled. You may use this panel to define e-mail white/black lists.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST_DESCRIPTION</base>
|
||||
<trans>RBL's List is used to adjust DNSBL and RHSBL.</trans>
|
||||
</entry>
|
||||
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST</base>
|
||||
<trans>RBL's List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST_DESCRIPTION</base>
|
||||
<trans>Black lists are used for rejecting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST</base>
|
||||
<trans>Black List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST_DESCRIPTION</base>
|
||||
<trans>White lists are used for accepting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST</base>
|
||||
<trans>White List</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_BLACK
|
||||
|
||||
<entry>
|
||||
<base>BLACK_TITLE</base>
|
||||
<trans>This server includes built-in support for using the admin defined black lists, badhelo and badmailfrom.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_DESCRIPTION</base>
|
||||
<trans>DNSBL is an abbreviation for "DNS blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_LABEL</base>
|
||||
<trans>DNSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_DESCRIPTION</base>
|
||||
<trans>RHSBL is an abbreviation for "Right Hand Side Blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_LABEL</base>
|
||||
<trans>RHSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_DESCRIPTION</base>
|
||||
<trans>Check a HELO message delivered from a connecting host. Reject any that appear in badhelo during the 'helo' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_LABEL</base>
|
||||
<trans>qpsmtpd badhelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_DESCRIPTION</base>
|
||||
<trans>Check envelope sender addresses. Reject any that appear (@host or user@host) in badmailfrom during the 'mail' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_LABEL</base>
|
||||
<trans>qmail badmailfrom</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_WHITELIST
|
||||
|
||||
<entry>
|
||||
<base>WHITE_TITLE</base>
|
||||
<trans>Use this panel to modify your servers White List settings. All entries will be enabled by default</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RRFH_LABEL</base>
|
||||
<trans>Whitelists status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_DESCRIPTION</base>
|
||||
<trans>Any IP address listed in whitelisthosts will be exempted from any further validation during the 'connect' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthosts</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_DESCRIPTION</base>
|
||||
<trans>Any host that issues a HELO matching an entry in whitelisthelo will be exempted from further validation during the 'helo' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (host.domain or user@host.domain) matching an entry in whitelistsenders will be exempted from further validation during the 'mail' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_LABEL</base>
|
||||
<trans>qpsmtpd whitelistsenders</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in whitelist_from will be exempted from spamassassin rejection.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_LABEL</base>
|
||||
<trans>spamassassin whitelist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_LABEL</base>
|
||||
<trans>spamassassin blacklist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in blacklist_from will be rejected by spamassassin.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_LABEL</base>
|
||||
<trans>RHSBL (qpsmtpd SBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_DESCRIPTION</base>
|
||||
<trans>RHS block list - 'right hand side' of senders host/domain will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_LABEL</base>
|
||||
<trans>DNSBL Zones (qpsmtpd RBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_DESCRIPTION</base>
|
||||
<trans>DNS Block List - senders IP address will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBL_TITLE</base>
|
||||
<trans>Real-time Blackhole Lists are disabled by default. To help reduce spam you can enable RBLs here.</trans>
|
||||
</entry>
|
||||
</lexicon>
|
191
root/etc/e-smith/locale/it/etc/e-smith/web/functions/wbl
Normal file
191
root/etc/e-smith/locale/it/etc/e-smith/web/functions/wbl
Normal file
@ -0,0 +1,191 @@
|
||||
<lexicon lang="it">
|
||||
<!-- vim: ft=xml:
|
||||
-->
|
||||
|
||||
# WBL_BUTTONS
|
||||
|
||||
<entry>
|
||||
<base>SAVE</base>
|
||||
<trans>Salva</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>PERFORM</base>
|
||||
<trans>Esegui</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_FIRST
|
||||
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>E-mail WBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>OPERATION_STATUS_REPORT</base>
|
||||
<trans>Rapporto operazione</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WBL_DESCRIPTION</base>
|
||||
<trans>Il traffico di posta viene analizzato è può essere bloccato utilizzando i vari metodi di controllo. Il pannello seguente può essere utilizzato per definire white/black lists di indirizzi postali. </trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST_DESCRIPTION</base>
|
||||
<trans>La lista RBL viene utilizzata per correggere DNSBL e RHSBL.</trans>
|
||||
</entry>
|
||||
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST</base>
|
||||
<trans>RBL's List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST_DESCRIPTION</base>
|
||||
<trans>Le Black lists sono utilizzate per respingere il traffico e-mail.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST</base>
|
||||
<trans>Black List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST_DESCRIPTION</base>
|
||||
<trans>Le White lists sono utilizzate per accettare il traffico e-mail.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST</base>
|
||||
<trans>White List</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_BLACK
|
||||
|
||||
<entry>
|
||||
<base>BLACK_TITLE</base>
|
||||
<trans>Il server integra il supporto delle black list liste definite da admin, badhelo and badmailfrom.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_DESCRIPTION</base>
|
||||
<trans>DNSBL è una abbreviazione per "DNS blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_LABEL</base>
|
||||
<trans>Stato DNSBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_DESCRIPTION</base>
|
||||
<trans>RHSBL è una abbreviazione per "Right Hand Side Blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_LABEL</base>
|
||||
<trans>Stato RHSBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_DESCRIPTION</base>
|
||||
<trans>Controlla il messaggio di HELO inviato da un host che tenta di connettersi. Respinge quelli contenuti in 'badhelo" durante la fase di 'helo'.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_LABEL</base>
|
||||
<trans>qpsmtpd badhelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_DESCRIPTION</base>
|
||||
<trans>Controlla l'indirizzo del mittente. Respinge qulunque mittente (@host or user@host) appaia in "badmailfrom" durante la fase 'mail'.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_LABEL</base>
|
||||
<trans>qmail badmailfrom</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_WHITELIST
|
||||
|
||||
<entry>
|
||||
<base>WHITE_TITLE</base>
|
||||
<trans>Utilizzare questo pannello per modificare le impostazioni della White List. Tutti gli elementi saranno abilitati di default. </trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RRFH_LABEL</base>
|
||||
<trans>Stato della White List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_DESCRIPTION</base>
|
||||
<trans>Qualunque indirizzo IP nella White List viene esentato da ogni ulteriore controllo durante la fase 'connect'.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthosts</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_DESCRIPTION</base>
|
||||
<trans>Ogni host che invia un comando HELO corrispondente ad un elemento di 'whitelisthelo' viene esentato da ogni ulteriore controllo durante la fase 'helo'.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_DESCRIPTION</base>
|
||||
<trans>Qualunque mittente di un messaggio (host.domain o user@host.domain) corrispondente ad un elemento di 'whitelistsenders' viene esentato da ogni ulteriore controllo durante la fase 'stage'.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_LABEL</base>
|
||||
<trans>qpsmtpd whitelistsenders</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_DESCRIPTION</base>
|
||||
<trans>Qualunque mittente di un messaggio (*@host o user@host) corrispondente ad un elemento di 'whitelist_from' viene esentato da ogni controllo durante il controllo spamassassin.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_LABEL</base>
|
||||
<trans>spamassassin whitelist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_LABEL</base>
|
||||
<trans>spamassassin blacklist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in blacklist_from will be rejected by spamassassin.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_LABEL</base>
|
||||
<trans>RHSBL (qpsmtpd SBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_DESCRIPTION</base>
|
||||
<trans>RHS block list - 'la parte di destra' dell'indirizzo del mittente host/domain sarà controllata utilizzando i server seguenti:</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_LABEL</base>
|
||||
<trans>DNSBL Zones (qpsmtpd RBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_DESCRIPTION</base>
|
||||
<trans>DNS Block List - l'indirizzo IP del mittente sarà controllato utilizzando i server seguenti:</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBL_TITLE</base>
|
||||
<trans>Le Real-time Blackhole Lists (RBL) sono normalmente disabilitate. Le RBL possono essere abilitate qui per aiutare un taglio dello spam.</trans>
|
||||
</entry>
|
||||
</lexicon>
|
191
root/etc/e-smith/locale/ja/etc/e-smith/web/functions/wbl
Normal file
191
root/etc/e-smith/locale/ja/etc/e-smith/web/functions/wbl
Normal file
@ -0,0 +1,191 @@
|
||||
<lexicon lang="ja">
|
||||
<!-- vim: ft=xml:
|
||||
-->
|
||||
|
||||
# WBL_BUTTONS
|
||||
|
||||
<entry>
|
||||
<base>SAVE</base>
|
||||
<trans>保存</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>PERFORM</base>
|
||||
<trans>Perform</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_FIRST
|
||||
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>E-mail WBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>OPERATION_STATUS_REPORT</base>
|
||||
<trans>Operation status report</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WBL_DESCRIPTION</base>
|
||||
<trans>E-mail traffic is scanned and may be blocked due to the various screening methods enabled. You may use this panel to define e-mail white/black lists.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST_DESCRIPTION</base>
|
||||
<trans>RBL's List is used to adjust DNSBL and RHSBL.</trans>
|
||||
</entry>
|
||||
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST</base>
|
||||
<trans>RBL's List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST_DESCRIPTION</base>
|
||||
<trans>Black lists are used for rejecting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST</base>
|
||||
<trans>Black List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST_DESCRIPTION</base>
|
||||
<trans>White lists are used for accepting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST</base>
|
||||
<trans>White List</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_BLACK
|
||||
|
||||
<entry>
|
||||
<base>BLACK_TITLE</base>
|
||||
<trans>This server includes built-in support for using the admin defined black lists, badhelo and badmailfrom.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_DESCRIPTION</base>
|
||||
<trans>DNSBL is an abbreviation for "DNS blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_LABEL</base>
|
||||
<trans>DNSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_DESCRIPTION</base>
|
||||
<trans>RHSBL is an abbreviation for "Right Hand Side Blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_LABEL</base>
|
||||
<trans>RHSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_DESCRIPTION</base>
|
||||
<trans>Check a HELO message delivered from a connecting host. Reject any that appear in badhelo during the 'helo' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_LABEL</base>
|
||||
<trans>qpsmtpd badhelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_DESCRIPTION</base>
|
||||
<trans>Check envelope sender addresses. Reject any that appear (@host or user@host) in badmailfrom during the 'mail' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_LABEL</base>
|
||||
<trans>qmail badmailfrom</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_WHITELIST
|
||||
|
||||
<entry>
|
||||
<base>WHITE_TITLE</base>
|
||||
<trans>Use this panel to modify your servers White List settings. All entries will be enabled by default</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RRFH_LABEL</base>
|
||||
<trans>Whitelists status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_DESCRIPTION</base>
|
||||
<trans>Any IP address listed in whitelisthosts will be exempted from any further validation during the 'connect' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthosts</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_DESCRIPTION</base>
|
||||
<trans>Any host that issues a HELO matching an entry in whitelisthelo will be exempted from further validation during the 'helo' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (host.domain or user@host.domain) matching an entry in whitelistsenders will be exempted from further validation during the 'mail' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_LABEL</base>
|
||||
<trans>qpsmtpd whitelistsenders</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in whitelist_from will be exempted from spamassassin rejection.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_LABEL</base>
|
||||
<trans>spamassassin whitelist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_LABEL</base>
|
||||
<trans>spamassassin blacklist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in blacklist_from will be rejected by spamassassin.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_LABEL</base>
|
||||
<trans>RHSBL (qpsmtpd SBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_DESCRIPTION</base>
|
||||
<trans>RHS block list - 'right hand side' of senders host/domain will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_LABEL</base>
|
||||
<trans>DNSBL Zones (qpsmtpd RBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_DESCRIPTION</base>
|
||||
<trans>DNS Block List - senders IP address will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBL_TITLE</base>
|
||||
<trans>Real-time Blackhole Lists are disabled by default. To help reduce spam you can enable RBLs here.</trans>
|
||||
</entry>
|
||||
</lexicon>
|
191
root/etc/e-smith/locale/nb/etc/e-smith/web/functions/wbl
Normal file
191
root/etc/e-smith/locale/nb/etc/e-smith/web/functions/wbl
Normal file
@ -0,0 +1,191 @@
|
||||
<lexicon lang="nb">
|
||||
<!-- vim: ft=xml:
|
||||
-->
|
||||
|
||||
# WBL_BUTTONS
|
||||
|
||||
<entry>
|
||||
<base>SAVE</base>
|
||||
<trans>Lagre</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>PERFORM</base>
|
||||
<trans>Utfør</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_FIRST
|
||||
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>E-mail WBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>OPERATION_STATUS_REPORT</base>
|
||||
<trans>Statusrapport for operasjonen</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WBL_DESCRIPTION</base>
|
||||
<trans>E-mail traffic is scanned and may be blocked due to the various screening methods enabled. You may use this panel to define e-mail white/black lists.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST_DESCRIPTION</base>
|
||||
<trans>RBL's List is used to adjust DNSBL and RHSBL.</trans>
|
||||
</entry>
|
||||
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST</base>
|
||||
<trans>RBL's List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST_DESCRIPTION</base>
|
||||
<trans>Black lists are used for rejecting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST</base>
|
||||
<trans>Black List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST_DESCRIPTION</base>
|
||||
<trans>White lists are used for accepting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST</base>
|
||||
<trans>White List</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_BLACK
|
||||
|
||||
<entry>
|
||||
<base>BLACK_TITLE</base>
|
||||
<trans>This server includes built-in support for using the admin defined black lists, badhelo and badmailfrom.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_DESCRIPTION</base>
|
||||
<trans>DNSBL is an abbreviation for "DNS blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_LABEL</base>
|
||||
<trans>DNSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_DESCRIPTION</base>
|
||||
<trans>RHSBL is an abbreviation for "Right Hand Side Blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_LABEL</base>
|
||||
<trans>RHSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_DESCRIPTION</base>
|
||||
<trans>Check a HELO message delivered from a connecting host. Reject any that appear in badhelo during the 'helo' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_LABEL</base>
|
||||
<trans>qpsmtpd badhelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_DESCRIPTION</base>
|
||||
<trans>Check envelope sender addresses. Reject any that appear (@host or user@host) in badmailfrom during the 'mail' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_LABEL</base>
|
||||
<trans>qmail badmailfrom</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_WHITELIST
|
||||
|
||||
<entry>
|
||||
<base>WHITE_TITLE</base>
|
||||
<trans>Use this panel to modify your servers White List settings. All entries will be enabled by default</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RRFH_LABEL</base>
|
||||
<trans>Whitelists status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_DESCRIPTION</base>
|
||||
<trans>Any IP address listed in whitelisthosts will be exempted from any further validation during the 'connect' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthosts</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_DESCRIPTION</base>
|
||||
<trans>Any host that issues a HELO matching an entry in whitelisthelo will be exempted from further validation during the 'helo' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (host.domain or user@host.domain) matching an entry in whitelistsenders will be exempted from further validation during the 'mail' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_LABEL</base>
|
||||
<trans>qpsmtpd whitelistsenders</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in whitelist_from will be exempted from spamassassin rejection.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_LABEL</base>
|
||||
<trans>spamassassin whitelist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_LABEL</base>
|
||||
<trans>spamassassin blacklist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in blacklist_from will be rejected by spamassassin.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_LABEL</base>
|
||||
<trans>RHSBL (qpsmtpd SBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_DESCRIPTION</base>
|
||||
<trans>RHS block list - 'right hand side' of senders host/domain will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_LABEL</base>
|
||||
<trans>DNSBL Zones (qpsmtpd RBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_DESCRIPTION</base>
|
||||
<trans>DNS Block List - senders IP address will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBL_TITLE</base>
|
||||
<trans>Real-time Blackhole Lists are disabled by default. To help reduce spam you can enable RBLs here.</trans>
|
||||
</entry>
|
||||
</lexicon>
|
191
root/etc/e-smith/locale/nl/etc/e-smith/web/functions/wbl
Normal file
191
root/etc/e-smith/locale/nl/etc/e-smith/web/functions/wbl
Normal file
@ -0,0 +1,191 @@
|
||||
<lexicon lang="nl">
|
||||
<!-- vim: ft=xml:
|
||||
-->
|
||||
|
||||
# WBL_BUTTONS
|
||||
|
||||
<entry>
|
||||
<base>SAVE</base>
|
||||
<trans>Opslaan</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>PERFORM</base>
|
||||
<trans>Uitvoeren</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_FIRST
|
||||
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>E-mail WBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>OPERATION_STATUS_REPORT</base>
|
||||
<trans>Operationeel status rapport</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WBL_DESCRIPTION</base>
|
||||
<trans>E-mail berichten verkeer wordt doorzocht en kan op verschillende manieren geblokkeerd worden. U kunt met dit paneel witte en zwarte lijsten voor email definiëren.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST_DESCRIPTION</base>
|
||||
<trans>RBL's Lijsten wordt gebruikt om DNSBL en RHSBL aan te passen.</trans>
|
||||
</entry>
|
||||
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST</base>
|
||||
<trans>RBL's Lijsten</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST_DESCRIPTION</base>
|
||||
<trans>Zwarte lijsten worden gebruikt on email verkeer te weigeren.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST</base>
|
||||
<trans>Zwarte lijst</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST_DESCRIPTION</base>
|
||||
<trans>Witte lijsten worden gebruikt on email verkeer te accepteren.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST</base>
|
||||
<trans>Witte lijst</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_BLACK
|
||||
|
||||
<entry>
|
||||
<base>BLACK_TITLE</base>
|
||||
<trans>Deze server heeft ondersteuning voor het gebruik van beheerder gedefinieerde zwarte lijst, badhelo en badmailfrom.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_DESCRIPTION</base>
|
||||
<trans>DNSBL is een afkorting voor "DNS BlackList".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_LABEL</base>
|
||||
<trans>DNSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_DESCRIPTION</base>
|
||||
<trans>RHSBL is een afkorting voor "Right Hand Side Blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_LABEL</base>
|
||||
<trans>RHSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_DESCRIPTION</base>
|
||||
<trans>Controleer een HELO bericht van een inkomende host. Weiger ieder die voorkomt in 'badhelo' gedurende het 'helo' stadium.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_LABEL</base>
|
||||
<trans>qpsmtpd badhelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_DESCRIPTION</base>
|
||||
<trans>Controleer de envelop verzender adres. Weiger ieder die voorkomt (@host of gebruiker@host) in 'badmailfrom' gedurende het 'mail' stadium.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_LABEL</base>
|
||||
<trans>qmail badmailfrom</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_WHITELIST
|
||||
|
||||
<entry>
|
||||
<base>WHITE_TITLE</base>
|
||||
<trans>Gebruik dit paneel om de Witte Lijst instellingen van uw server te wijzigen. All instellingen staan standaard aan.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RRFH_LABEL</base>
|
||||
<trans>Witte lijst status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_DESCRIPTION</base>
|
||||
<trans>Elk IP adres dat voorkomt in whitelisthosts zal uitgezonderd zijn van verdere validatie tijdens het 'verbindings' stadium.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthosts</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_DESCRIPTION</base>
|
||||
<trans>Elke host die een HELO doet en voorkomt in whitelisthelo zal uitgezonderd zijn van verdere validatie gedurende het 'helo' stadium.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_DESCRIPTION</base>
|
||||
<trans>Elke envelop verzender van een mail (@host of gebruiker@host) die voorkomt in whitelistsenders zal uitgezonderd zijn van verdere validatie gedurende het 'mail' stadium.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_LABEL</base>
|
||||
<trans>qpsmtpd whitelistsenders</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_DESCRIPTION</base>
|
||||
<trans>Elke envelop verzender van een mail (*@host of gebruiker@host) en voorkomt in whitelist_from zal worden uitgezonderd van spamassassin weigering.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_LABEL</base>
|
||||
<trans>spamassassin whitelist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_LABEL</base>
|
||||
<trans>spamassassin blacklist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in blacklist_from will be rejected by spamassassin.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_LABEL</base>
|
||||
<trans>RHSBL (qpsmtpd SBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_DESCRIPTION</base>
|
||||
<trans>RHS 'right hand side' blokkeer list. Verzenders domain zal gecontrolleerd worden met de volgende servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_LABEL</base>
|
||||
<trans>DNSBL Zones (qpsmtpd RBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_DESCRIPTION</base>
|
||||
<trans>DNS Blokkeer Lijst - Verzenders IP adres zal gecontrolleerd woden met de volgende servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBL_TITLE</base>
|
||||
<trans>Real-time Blackhole Lists zijn default uitgeschakeld. Om spam te bestrijden kan je RBLs hier inschakelen.</trans>
|
||||
</entry>
|
||||
</lexicon>
|
191
root/etc/e-smith/locale/pl/etc/e-smith/web/functions/wbl
Normal file
191
root/etc/e-smith/locale/pl/etc/e-smith/web/functions/wbl
Normal file
@ -0,0 +1,191 @@
|
||||
<lexicon lang="pl">
|
||||
<!-- vim: ft=xml:
|
||||
-->
|
||||
|
||||
# WBL_BUTTONS
|
||||
|
||||
<entry>
|
||||
<base>SAVE</base>
|
||||
<trans>Zapisz</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>PERFORM</base>
|
||||
<trans>Perform</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_FIRST
|
||||
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>E-mail WBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>OPERATION_STATUS_REPORT</base>
|
||||
<trans>Raport o stanie procesu</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WBL_DESCRIPTION</base>
|
||||
<trans>E-mail traffic is scanned and may be blocked due to the various screening methods enabled. You may use this panel to define e-mail white/black lists.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST_DESCRIPTION</base>
|
||||
<trans>RBL's List is used to adjust DNSBL and RHSBL.</trans>
|
||||
</entry>
|
||||
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST</base>
|
||||
<trans>RBL's List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST_DESCRIPTION</base>
|
||||
<trans>Black lists are used for rejecting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST</base>
|
||||
<trans>Black List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST_DESCRIPTION</base>
|
||||
<trans>White lists are used for accepting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST</base>
|
||||
<trans>White List</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_BLACK
|
||||
|
||||
<entry>
|
||||
<base>BLACK_TITLE</base>
|
||||
<trans>This server includes built-in support for using the admin defined black lists, badhelo and badmailfrom.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_DESCRIPTION</base>
|
||||
<trans>DNSBL is an abbreviation for "DNS blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_LABEL</base>
|
||||
<trans>DNSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_DESCRIPTION</base>
|
||||
<trans>RHSBL is an abbreviation for "Right Hand Side Blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_LABEL</base>
|
||||
<trans>RHSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_DESCRIPTION</base>
|
||||
<trans>Check a HELO message delivered from a connecting host. Reject any that appear in badhelo during the 'helo' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_LABEL</base>
|
||||
<trans>qpsmtpd badhelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_DESCRIPTION</base>
|
||||
<trans>Check envelope sender addresses. Reject any that appear (@host or user@host) in badmailfrom during the 'mail' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_LABEL</base>
|
||||
<trans>qmail badmailfrom</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_WHITELIST
|
||||
|
||||
<entry>
|
||||
<base>WHITE_TITLE</base>
|
||||
<trans>Use this panel to modify your servers White List settings. All entries will be enabled by default</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RRFH_LABEL</base>
|
||||
<trans>Whitelists status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_DESCRIPTION</base>
|
||||
<trans>Any IP address listed in whitelisthosts will be exempted from any further validation during the 'connect' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthosts</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_DESCRIPTION</base>
|
||||
<trans>Any host that issues a HELO matching an entry in whitelisthelo will be exempted from further validation during the 'helo' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (host.domain or user@host.domain) matching an entry in whitelistsenders will be exempted from further validation during the 'mail' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_LABEL</base>
|
||||
<trans>qpsmtpd whitelistsenders</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in whitelist_from will be exempted from spamassassin rejection.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_LABEL</base>
|
||||
<trans>spamassassin whitelist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_LABEL</base>
|
||||
<trans>spamassassin blacklist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in blacklist_from will be rejected by spamassassin.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_LABEL</base>
|
||||
<trans>RHSBL (qpsmtpd SBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_DESCRIPTION</base>
|
||||
<trans>RHS block list - 'right hand side' of senders host/domain will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_LABEL</base>
|
||||
<trans>DNSBL Zones (qpsmtpd RBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_DESCRIPTION</base>
|
||||
<trans>DNS Block List - senders IP address will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBL_TITLE</base>
|
||||
<trans>Real-time Blackhole Lists are disabled by default. To help reduce spam you can enable RBLs here.</trans>
|
||||
</entry>
|
||||
</lexicon>
|
191
root/etc/e-smith/locale/pt-br/etc/e-smith/web/functions/wbl
Normal file
191
root/etc/e-smith/locale/pt-br/etc/e-smith/web/functions/wbl
Normal file
@ -0,0 +1,191 @@
|
||||
<lexicon lang="pt-br">
|
||||
<!-- vim: ft=xml:
|
||||
-->
|
||||
|
||||
# WBL_BUTTONS
|
||||
|
||||
<entry>
|
||||
<base>SAVE</base>
|
||||
<trans>Salvar</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>PERFORM</base>
|
||||
<trans>Executar</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_FIRST
|
||||
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>E-mail WBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>OPERATION_STATUS_REPORT</base>
|
||||
<trans>Relatório de status da operação</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WBL_DESCRIPTION</base>
|
||||
<trans>O tráfego de e-mail é escaneado e pode ser bloqueado devido a vários métodos de procura habilitados. Você pode usar este painel para definir as listas Branca e Negra de e-mail.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST_DESCRIPTION</base>
|
||||
<trans>Listas RBL's são usadas para configurar DNSBL e RHSBL.</trans>
|
||||
</entry>
|
||||
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST</base>
|
||||
<trans>Lista RBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST_DESCRIPTION</base>
|
||||
<trans>Listas negras são usadas para rejeitar o tráfego de e-mail.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST</base>
|
||||
<trans>Lista Negra</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST_DESCRIPTION</base>
|
||||
<trans>Listas Brancas são usadas para aceitar tráfego de e-mali.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST</base>
|
||||
<trans>Lista Branca</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_BLACK
|
||||
|
||||
<entry>
|
||||
<base>BLACK_TITLE</base>
|
||||
<trans>Este servidor inclui suporte interno para que o admin defina o uso de Lista Negra, badhelo e badmailrom.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_DESCRIPTION</base>
|
||||
<trans>DNSBL é uma abreviação para "DNS blacklist". É uma lista de endereços IP conhecidos como sendo de spammers.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_LABEL</base>
|
||||
<trans>status da DNSBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_DESCRIPTION</base>
|
||||
<trans>RHSBL é uma abreviação para "Right Hand Side Blacklist". É uma lista de nomes de domínio conhecidos como serem spammers.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_LABEL</base>
|
||||
<trans>status da RHSBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_DESCRIPTION</base>
|
||||
<trans>Checar uma mensagem HELO durante a conexão do host. Rejeitar qualquer uma que apareça in badhelo durante o estágio 'helo'.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_LABEL</base>
|
||||
<trans>qpsmtpd badhelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_DESCRIPTION</base>
|
||||
<trans>Verificar envelope para endereço do remetente. Rejeitar qualquer coisa (@host ou usuario@host) constante do badmailfrom durante o estagio 'mail'.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_LABEL</base>
|
||||
<trans>qmail badmailfrom</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_WHITELIST
|
||||
|
||||
<entry>
|
||||
<base>WHITE_TITLE</base>
|
||||
<trans>Use este painel para modificar as configurações de Lista Branca do seu servidor. Todas entradas serão habilitadas por padrão</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RRFH_LABEL</base>
|
||||
<trans>Status das Listas Brancas</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_DESCRIPTION</base>
|
||||
<trans>Qualquer endereço IP listado em whitelisthosts será isentado de qualquer outra validação durante o estágio 'connect'.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthosts</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_DESCRIPTION</base>
|
||||
<trans>Qualquer host que emitir um HELO igual a uma entrada em whitelisthelo será isentado de qualquer outra validação durante o estagio 'helo'.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_DESCRIPTION</base>
|
||||
<trans>Qualquer envelope do e-mail de remetente (@host ou usuario@dominio. host) correspondendo a uma entrada em whitelistsenders será isentado de qualquer outra validação durante o estágio 'mail'.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_LABEL</base>
|
||||
<trans>qpsmtpd whitelistsenders</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_DESCRIPTION</base>
|
||||
<trans>Qualquer envelope do e-mail de remetente (*@host ou usuario@host) correspondendo a uma entrada em whitelist_from ficará isento de rejeição pelo spamassassin.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_LABEL</base>
|
||||
<trans>spamassassin whitelist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_LABEL</base>
|
||||
<trans>spamassassin blacklist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_DESCRIPTION</base>
|
||||
<trans>Qualquer remetente de e-mail (*@host ou usuario@host) igual a uma entrada de Lista Negra será rejeitado pelo spamassassin.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_LABEL</base>
|
||||
<trans>RHSBL (qpsmtpd SBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_DESCRIPTION</base>
|
||||
<trans>RHS block list - 'right hand side' ou a lista do lado da mão certa é uma lista de servidores/domínios que será verificada contra os seguintes servidores</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_LABEL</base>
|
||||
<trans>DNSBL Zones (qpsmtpd RBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_DESCRIPTION</base>
|
||||
<trans>Lista de DNS Bloqueados - o endereços IP do remetente será verificado nos seguintes servidores</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBL_TITLE</base>
|
||||
<trans>Listas RBL (Real-time Blackhole Lists) são desligadas por padrão. Para ajudar a reduzir o SPAM você pode habilitar as RBLs aqui.</trans>
|
||||
</entry>
|
||||
</lexicon>
|
191
root/etc/e-smith/locale/pt/etc/e-smith/web/functions/wbl
Normal file
191
root/etc/e-smith/locale/pt/etc/e-smith/web/functions/wbl
Normal file
@ -0,0 +1,191 @@
|
||||
<lexicon lang="pt">
|
||||
<!-- vim: ft=xml:
|
||||
-->
|
||||
|
||||
# WBL_BUTTONS
|
||||
|
||||
<entry>
|
||||
<base>SAVE</base>
|
||||
<trans>Salvar</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>PERFORM</base>
|
||||
<trans>Executar</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_FIRST
|
||||
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>E-mail WBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>OPERATION_STATUS_REPORT</base>
|
||||
<trans>Relarório de status de operação</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WBL_DESCRIPTION</base>
|
||||
<trans>E-mail traffic is scanned and may be blocked due to the various screening methods enabled. You may use this panel to define e-mail white/black lists.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST_DESCRIPTION</base>
|
||||
<trans>RBL's List is used to adjust DNSBL and RHSBL.</trans>
|
||||
</entry>
|
||||
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST</base>
|
||||
<trans>RBL's List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST_DESCRIPTION</base>
|
||||
<trans>Black lists are used for rejecting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST</base>
|
||||
<trans>Black List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST_DESCRIPTION</base>
|
||||
<trans>White lists are used for accepting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST</base>
|
||||
<trans>White List</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_BLACK
|
||||
|
||||
<entry>
|
||||
<base>BLACK_TITLE</base>
|
||||
<trans>This server includes built-in support for using the admin defined black lists, badhelo and badmailfrom.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_DESCRIPTION</base>
|
||||
<trans>DNSBL is an abbreviation for "DNS blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_LABEL</base>
|
||||
<trans>DNSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_DESCRIPTION</base>
|
||||
<trans>RHSBL is an abbreviation for "Right Hand Side Blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_LABEL</base>
|
||||
<trans>RHSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_DESCRIPTION</base>
|
||||
<trans>Check a HELO message delivered from a connecting host. Reject any that appear in badhelo during the 'helo' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_LABEL</base>
|
||||
<trans>qpsmtpd badhelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_DESCRIPTION</base>
|
||||
<trans>Check envelope sender addresses. Reject any that appear (@host or user@host) in badmailfrom during the 'mail' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_LABEL</base>
|
||||
<trans>qmail badmailfrom</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_WHITELIST
|
||||
|
||||
<entry>
|
||||
<base>WHITE_TITLE</base>
|
||||
<trans>Use this panel to modify your servers White List settings. All entries will be enabled by default</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RRFH_LABEL</base>
|
||||
<trans>Whitelists status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_DESCRIPTION</base>
|
||||
<trans>Any IP address listed in whitelisthosts will be exempted from any further validation during the 'connect' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthosts</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_DESCRIPTION</base>
|
||||
<trans>Any host that issues a HELO matching an entry in whitelisthelo will be exempted from further validation during the 'helo' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (host.domain or user@host.domain) matching an entry in whitelistsenders will be exempted from further validation during the 'mail' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_LABEL</base>
|
||||
<trans>qpsmtpd whitelistsenders</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in whitelist_from will be exempted from spamassassin rejection.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_LABEL</base>
|
||||
<trans>spamassassin whitelist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_LABEL</base>
|
||||
<trans>spamassassin blacklist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in blacklist_from will be rejected by spamassassin.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_LABEL</base>
|
||||
<trans>RHSBL (qpsmtpd SBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_DESCRIPTION</base>
|
||||
<trans>RHS block list - 'right hand side' of senders host/domain will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_LABEL</base>
|
||||
<trans>DNSBL Zones (qpsmtpd RBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_DESCRIPTION</base>
|
||||
<trans>DNS Block List - senders IP address will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBL_TITLE</base>
|
||||
<trans>Real-time Blackhole Lists are disabled by default. To help reduce spam you can enable RBLs here.</trans>
|
||||
</entry>
|
||||
</lexicon>
|
191
root/etc/e-smith/locale/ro/etc/e-smith/web/functions/wbl
Normal file
191
root/etc/e-smith/locale/ro/etc/e-smith/web/functions/wbl
Normal file
@ -0,0 +1,191 @@
|
||||
<lexicon lang="ro">
|
||||
<!-- vim: ft=xml:
|
||||
-->
|
||||
|
||||
# WBL_BUTTONS
|
||||
|
||||
<entry>
|
||||
<base>SAVE</base>
|
||||
<trans>Salvează</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>PERFORM</base>
|
||||
<trans>Execută</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_FIRST
|
||||
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>E-mail WBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>OPERATION_STATUS_REPORT</base>
|
||||
<trans>Raport operațiune</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WBL_DESCRIPTION</base>
|
||||
<trans>E-mail traffic is scanned and may be blocked due to the various screening methods enabled. You may use this panel to define e-mail white/black lists.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST_DESCRIPTION</base>
|
||||
<trans>RBL's List is used to adjust DNSBL and RHSBL.</trans>
|
||||
</entry>
|
||||
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST</base>
|
||||
<trans>RBL's List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST_DESCRIPTION</base>
|
||||
<trans>Black lists are used for rejecting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST</base>
|
||||
<trans>Black List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST_DESCRIPTION</base>
|
||||
<trans>White lists are used for accepting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST</base>
|
||||
<trans>White List</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_BLACK
|
||||
|
||||
<entry>
|
||||
<base>BLACK_TITLE</base>
|
||||
<trans>This server includes built-in support for using the admin defined black lists, badhelo and badmailfrom.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_DESCRIPTION</base>
|
||||
<trans>DNSBL is an abbreviation for "DNS blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_LABEL</base>
|
||||
<trans>DNSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_DESCRIPTION</base>
|
||||
<trans>RHSBL is an abbreviation for "Right Hand Side Blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_LABEL</base>
|
||||
<trans>RHSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_DESCRIPTION</base>
|
||||
<trans>Check a HELO message delivered from a connecting host. Reject any that appear in badhelo during the 'helo' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_LABEL</base>
|
||||
<trans>qpsmtpd badhelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_DESCRIPTION</base>
|
||||
<trans>Check envelope sender addresses. Reject any that appear (@host or user@host) in badmailfrom during the 'mail' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_LABEL</base>
|
||||
<trans>qmail badmailfrom</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_WHITELIST
|
||||
|
||||
<entry>
|
||||
<base>WHITE_TITLE</base>
|
||||
<trans>Use this panel to modify your servers White List settings. All entries will be enabled by default</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RRFH_LABEL</base>
|
||||
<trans>Whitelists status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_DESCRIPTION</base>
|
||||
<trans>Any IP address listed in whitelisthosts will be exempted from any further validation during the 'connect' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthosts</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_DESCRIPTION</base>
|
||||
<trans>Any host that issues a HELO matching an entry in whitelisthelo will be exempted from further validation during the 'helo' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (host.domain or user@host.domain) matching an entry in whitelistsenders will be exempted from further validation during the 'mail' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_LABEL</base>
|
||||
<trans>qpsmtpd whitelistsenders</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in whitelist_from will be exempted from spamassassin rejection.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_LABEL</base>
|
||||
<trans>spamassassin whitelist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_LABEL</base>
|
||||
<trans>spamassassin blacklist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in blacklist_from will be rejected by spamassassin.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_LABEL</base>
|
||||
<trans>RHSBL (qpsmtpd SBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_DESCRIPTION</base>
|
||||
<trans>RHS block list - 'right hand side' of senders host/domain will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_LABEL</base>
|
||||
<trans>DNSBL Zones (qpsmtpd RBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_DESCRIPTION</base>
|
||||
<trans>DNS Block List - senders IP address will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBL_TITLE</base>
|
||||
<trans>Real-time Blackhole Lists are disabled by default. To help reduce spam you can enable RBLs here.</trans>
|
||||
</entry>
|
||||
</lexicon>
|
191
root/etc/e-smith/locale/ru/etc/e-smith/web/functions/wbl
Normal file
191
root/etc/e-smith/locale/ru/etc/e-smith/web/functions/wbl
Normal file
@ -0,0 +1,191 @@
|
||||
<lexicon lang="ru">
|
||||
<!-- vim: ft=xml:
|
||||
-->
|
||||
|
||||
# WBL_BUTTONS
|
||||
|
||||
<entry>
|
||||
<base>SAVE</base>
|
||||
<trans>Сохранить</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>PERFORM</base>
|
||||
<trans>Выполнить</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_FIRST
|
||||
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>E-mail WBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>OPERATION_STATUS_REPORT</base>
|
||||
<trans>Данные о состоянии функционирования</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WBL_DESCRIPTION</base>
|
||||
<trans>E-mail traffic is scanned and may be blocked due to the various screening methods enabled. You may use this panel to define e-mail white/black lists.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST_DESCRIPTION</base>
|
||||
<trans>RBL's List is used to adjust DNSBL and RHSBL.</trans>
|
||||
</entry>
|
||||
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST</base>
|
||||
<trans>RBL's List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST_DESCRIPTION</base>
|
||||
<trans>Black lists are used for rejecting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST</base>
|
||||
<trans>Black List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST_DESCRIPTION</base>
|
||||
<trans>White lists are used for accepting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST</base>
|
||||
<trans>White List</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_BLACK
|
||||
|
||||
<entry>
|
||||
<base>BLACK_TITLE</base>
|
||||
<trans>This server includes built-in support for using the admin defined black lists, badhelo and badmailfrom.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_DESCRIPTION</base>
|
||||
<trans>DNSBL is an abbreviation for "DNS blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_LABEL</base>
|
||||
<trans>Состояние DNSBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_DESCRIPTION</base>
|
||||
<trans>RHSBL is an abbreviation for "Right Hand Side Blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_LABEL</base>
|
||||
<trans>Состояние RHSBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_DESCRIPTION</base>
|
||||
<trans>Check a HELO message delivered from a connecting host. Reject any that appear in badhelo during the 'helo' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_LABEL</base>
|
||||
<trans>qpsmtpd badhelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_DESCRIPTION</base>
|
||||
<trans>Check envelope sender addresses. Reject any that appear (@host or user@host) in badmailfrom during the 'mail' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_LABEL</base>
|
||||
<trans>qmail badmailfrom</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_WHITELIST
|
||||
|
||||
<entry>
|
||||
<base>WHITE_TITLE</base>
|
||||
<trans>Используйте эту панель, чтобы изменить настройки White List серверов.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RRFH_LABEL</base>
|
||||
<trans>Состояние whitelists</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_DESCRIPTION</base>
|
||||
<trans>Any IP address listed in whitelisthosts will be exempted from any further validation during the 'connect' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthosts</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_DESCRIPTION</base>
|
||||
<trans>Any host that issues a HELO matching an entry in whitelisthelo will be exempted from further validation during the 'helo' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (host.domain or user@host.domain) matching an entry in whitelistsenders will be exempted from further validation during the 'mail' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_LABEL</base>
|
||||
<trans>qpsmtpd whitelistsenders</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in whitelist_from will be exempted from spamassassin rejection.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_LABEL</base>
|
||||
<trans>spamassassin whitelist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_LABEL</base>
|
||||
<trans>spamassassin whitelist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in blacklist_from will be rejected by spamassassin.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_LABEL</base>
|
||||
<trans>RHSBL (qpsmtpd SBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_DESCRIPTION</base>
|
||||
<trans>RHS block list - 'right hand side' of senders host/domain will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_LABEL</base>
|
||||
<trans>DNSBL Zones (qpsmtpd RBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_DESCRIPTION</base>
|
||||
<trans>DNS Block List - senders IP address will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBL_TITLE</base>
|
||||
<trans>Real-time Blackhole Lists are disabled by default. To help reduce spam you can enable RBLs here.</trans>
|
||||
</entry>
|
||||
</lexicon>
|
191
root/etc/e-smith/locale/sl/etc/e-smith/web/functions/wbl
Normal file
191
root/etc/e-smith/locale/sl/etc/e-smith/web/functions/wbl
Normal file
@ -0,0 +1,191 @@
|
||||
<lexicon lang="sl">
|
||||
<!-- vim: ft=xml:
|
||||
-->
|
||||
|
||||
# WBL_BUTTONS
|
||||
|
||||
<entry>
|
||||
<base>SAVE</base>
|
||||
<trans>Shrani</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>PERFORM</base>
|
||||
<trans>Izvedi</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_FIRST
|
||||
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>E-mail WBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>OPERATION_STATUS_REPORT</base>
|
||||
<trans>Porocilo o delovanju</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WBL_DESCRIPTION</base>
|
||||
<trans>E-mail traffic is scanned and may be blocked due to the various screening methods enabled. You may use this panel to define e-mail white/black lists.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST_DESCRIPTION</base>
|
||||
<trans>RBL's List is used to adjust DNSBL and RHSBL.</trans>
|
||||
</entry>
|
||||
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST</base>
|
||||
<trans>RBL's List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST_DESCRIPTION</base>
|
||||
<trans>Black lists are used for rejecting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST</base>
|
||||
<trans>Black List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST_DESCRIPTION</base>
|
||||
<trans>White lists are used for accepting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST</base>
|
||||
<trans>White List</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_BLACK
|
||||
|
||||
<entry>
|
||||
<base>BLACK_TITLE</base>
|
||||
<trans>This server includes built-in support for using the admin defined black lists, badhelo and badmailfrom.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_DESCRIPTION</base>
|
||||
<trans>DNSBL is an abbreviation for "DNS blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_LABEL</base>
|
||||
<trans>DNSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_DESCRIPTION</base>
|
||||
<trans>RHSBL is an abbreviation for "Right Hand Side Blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_LABEL</base>
|
||||
<trans>RHSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_DESCRIPTION</base>
|
||||
<trans>Check a HELO message delivered from a connecting host. Reject any that appear in badhelo during the 'helo' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_LABEL</base>
|
||||
<trans>qpsmtpd badhelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_DESCRIPTION</base>
|
||||
<trans>Check envelope sender addresses. Reject any that appear (@host or user@host) in badmailfrom during the 'mail' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_LABEL</base>
|
||||
<trans>qmail badmailfrom</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_WHITELIST
|
||||
|
||||
<entry>
|
||||
<base>WHITE_TITLE</base>
|
||||
<trans>Use this panel to modify your servers White List settings. All entries will be enabled by default</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RRFH_LABEL</base>
|
||||
<trans>Whitelists status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_DESCRIPTION</base>
|
||||
<trans>Any IP address listed in whitelisthosts will be exempted from any further validation during the 'connect' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthosts</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_DESCRIPTION</base>
|
||||
<trans>Any host that issues a HELO matching an entry in whitelisthelo will be exempted from further validation during the 'helo' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (host.domain or user@host.domain) matching an entry in whitelistsenders will be exempted from further validation during the 'mail' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_LABEL</base>
|
||||
<trans>qpsmtpd whitelistsenders</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in whitelist_from will be exempted from spamassassin rejection.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_LABEL</base>
|
||||
<trans>spamassassin whitelist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_LABEL</base>
|
||||
<trans>spamassassin blacklist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in blacklist_from will be rejected by spamassassin.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_LABEL</base>
|
||||
<trans>RHSBL (qpsmtpd SBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_DESCRIPTION</base>
|
||||
<trans>RHS block list - 'right hand side' of senders host/domain will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_LABEL</base>
|
||||
<trans>DNSBL Zones (qpsmtpd RBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_DESCRIPTION</base>
|
||||
<trans>DNS Block List - senders IP address will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBL_TITLE</base>
|
||||
<trans>Real-time Blackhole Lists are disabled by default. To help reduce spam you can enable RBLs here.</trans>
|
||||
</entry>
|
||||
</lexicon>
|
191
root/etc/e-smith/locale/sv/etc/e-smith/web/functions/wbl
Normal file
191
root/etc/e-smith/locale/sv/etc/e-smith/web/functions/wbl
Normal file
@ -0,0 +1,191 @@
|
||||
<lexicon lang="sv">
|
||||
<!-- vim: ft=xml:
|
||||
-->
|
||||
|
||||
# WBL_BUTTONS
|
||||
|
||||
<entry>
|
||||
<base>SAVE</base>
|
||||
<trans>Spara</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>PERFORM</base>
|
||||
<trans>Verkställ</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_FIRST
|
||||
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>E-post WBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>OPERATION_STATUS_REPORT</base>
|
||||
<trans>Statusrapport över operationerna</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WBL_DESCRIPTION</base>
|
||||
<trans>E-mail traffic is scanned and may be blocked due to the various screening methods enabled. You may use this panel to define e-mail white/black lists.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST_DESCRIPTION</base>
|
||||
<trans>RBL's List is used to adjust DNSBL and RHSBL.</trans>
|
||||
</entry>
|
||||
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST</base>
|
||||
<trans>RBL's List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST_DESCRIPTION</base>
|
||||
<trans>Black lists are used for rejecting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST</base>
|
||||
<trans>Black List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST_DESCRIPTION</base>
|
||||
<trans>White lists are used for accepting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST</base>
|
||||
<trans>White List</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_BLACK
|
||||
|
||||
<entry>
|
||||
<base>BLACK_TITLE</base>
|
||||
<trans><![CDATA[ <p>Denna server har inbyggt stöd för nyttjande av två externa svartlistningsmetoder, DNSBL och RHSBL. Servern stödjer också administratörsdefinierade svartlistor, badhelo och badmailfrom.</p> ]]></trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_DESCRIPTION</base>
|
||||
<trans>DNSBL är en förkortning av "DNS blacklist". Det är en lista över IP-adressen som är kända för att vara spammare.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_LABEL</base>
|
||||
<trans>DNSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_DESCRIPTION</base>
|
||||
<trans>RHSBL är en förkortning av "Right Hand Side Blacklist". Det är en lista över domännamn som är kända för att vara spammare.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_LABEL</base>
|
||||
<trans>RHSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_DESCRIPTION</base>
|
||||
<trans>Kontrollera HELO-meddelandet som levereras från en anslutande värd. Förkasta alla som syns i badhelo under 'helo'-stadiet.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_LABEL</base>
|
||||
<trans>qpsmtpd badhelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_DESCRIPTION</base>
|
||||
<trans>Kontrollera meddelandets avsändaradress. Förkasta alla som finns (@host eller i user@host) i dåligtmeddelandefrån under 'mail'-processen.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_LABEL</base>
|
||||
<trans>qmail dåligtmeddelandefrån (badmailfrom)</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_WHITELIST
|
||||
|
||||
<entry>
|
||||
<base>WHITE_TITLE</base>
|
||||
<trans>Använd denna panel för att modifiera din servers inställningar för vitlista.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RRFH_LABEL</base>
|
||||
<trans>Vitlistans status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_DESCRIPTION</base>
|
||||
<trans>Alla IP-adresser som finns på vitlistans värdar kommer att undantas från all kommande validering under 'skapa kontakt'-stadiet.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_LABEL</base>
|
||||
<trans>qpsmtpd värdar på vitlistan</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_DESCRIPTION</base>
|
||||
<trans>Alla värdar som ger en HELO och som stämmer överens med ett värde i vitlitans helo kommer att undantas från fortsatt validering under 'helo'-stadiet.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_LABEL</base>
|
||||
<trans>qpsmtpd vitlista över helo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_DESCRIPTION</base>
|
||||
<trans>Alla avsändare av e-post (@host eller user@host) som stämmer överens med ett värde i vitlistans avsändare kommer att undantas från kommande validering under 'mail'-stadiet.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_LABEL</base>
|
||||
<trans>qpsmtpd vitlistans avsändare</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_DESCRIPTION</base>
|
||||
<trans>Alla avsändare av e-postmeddelande (*@host eller user@host) som stämmer överens med ett värde i vitlistans_från kommer att undantas från förkastning av spamassassin.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_LABEL</base>
|
||||
<trans>spamassassin vitlista_från</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_LABEL</base>
|
||||
<trans>spamassassin blacklist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in blacklist_from will be rejected by spamassassin.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_LABEL</base>
|
||||
<trans>RHSBL (qpsmtpd SBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_DESCRIPTION</base>
|
||||
<trans>RHS block list - 'right hand side' of senders host/domain will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_LABEL</base>
|
||||
<trans>DNSBL Zones (qpsmtpd RBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_DESCRIPTION</base>
|
||||
<trans>DNS Block List - senders IP address will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBL_TITLE</base>
|
||||
<trans>Real-time Blackhole Lists are disabled by default. To help reduce spam you can enable RBLs here.</trans>
|
||||
</entry>
|
||||
</lexicon>
|
191
root/etc/e-smith/locale/th/etc/e-smith/web/functions/wbl
Normal file
191
root/etc/e-smith/locale/th/etc/e-smith/web/functions/wbl
Normal file
@ -0,0 +1,191 @@
|
||||
<lexicon lang="th">
|
||||
<!-- vim: ft=xml:
|
||||
-->
|
||||
|
||||
# WBL_BUTTONS
|
||||
|
||||
<entry>
|
||||
<base>SAVE</base>
|
||||
<trans>บันทึก</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>PERFORM</base>
|
||||
<trans>ดำเนินงาน</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_FIRST
|
||||
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>E-mail WBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>OPERATION_STATUS_REPORT</base>
|
||||
<trans>รายงานสถานะการทำงาน</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WBL_DESCRIPTION</base>
|
||||
<trans>E-mail traffic is scanned and may be blocked due to the various screening methods enabled. You may use this panel to define e-mail white/black lists.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST_DESCRIPTION</base>
|
||||
<trans>RBL's List is used to adjust DNSBL and RHSBL.</trans>
|
||||
</entry>
|
||||
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST</base>
|
||||
<trans>RBL's List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST_DESCRIPTION</base>
|
||||
<trans>Black lists are used for rejecting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST</base>
|
||||
<trans>Black List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST_DESCRIPTION</base>
|
||||
<trans>White lists are used for accepting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST</base>
|
||||
<trans>White List</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_BLACK
|
||||
|
||||
<entry>
|
||||
<base>BLACK_TITLE</base>
|
||||
<trans>This server includes built-in support for using the admin defined black lists, badhelo and badmailfrom.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_DESCRIPTION</base>
|
||||
<trans>DNSBL is an abbreviation for "DNS blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_LABEL</base>
|
||||
<trans>DNSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_DESCRIPTION</base>
|
||||
<trans>RHSBL is an abbreviation for "Right Hand Side Blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_LABEL</base>
|
||||
<trans>RHSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_DESCRIPTION</base>
|
||||
<trans>Check a HELO message delivered from a connecting host. Reject any that appear in badhelo during the 'helo' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_LABEL</base>
|
||||
<trans>qpsmtpd badhelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_DESCRIPTION</base>
|
||||
<trans>Check envelope sender addresses. Reject any that appear (@host or user@host) in badmailfrom during the 'mail' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_LABEL</base>
|
||||
<trans>qmail badmailfrom</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_WHITELIST
|
||||
|
||||
<entry>
|
||||
<base>WHITE_TITLE</base>
|
||||
<trans>Use this panel to modify your servers White List settings. All entries will be enabled by default</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RRFH_LABEL</base>
|
||||
<trans>Whitelists status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_DESCRIPTION</base>
|
||||
<trans>Any IP address listed in whitelisthosts will be exempted from any further validation during the 'connect' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthosts</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_DESCRIPTION</base>
|
||||
<trans>Any host that issues a HELO matching an entry in whitelisthelo will be exempted from further validation during the 'helo' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (host.domain or user@host.domain) matching an entry in whitelistsenders will be exempted from further validation during the 'mail' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_LABEL</base>
|
||||
<trans>qpsmtpd whitelistsenders</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in whitelist_from will be exempted from spamassassin rejection.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_LABEL</base>
|
||||
<trans>spamassassin whitelist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_LABEL</base>
|
||||
<trans>spamassassin blacklist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in blacklist_from will be rejected by spamassassin.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_LABEL</base>
|
||||
<trans>RHSBL (qpsmtpd SBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_DESCRIPTION</base>
|
||||
<trans>RHS block list - 'right hand side' of senders host/domain will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_LABEL</base>
|
||||
<trans>DNSBL Zones (qpsmtpd RBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_DESCRIPTION</base>
|
||||
<trans>DNS Block List - senders IP address will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBL_TITLE</base>
|
||||
<trans>Real-time Blackhole Lists are disabled by default. To help reduce spam you can enable RBLs here.</trans>
|
||||
</entry>
|
||||
</lexicon>
|
191
root/etc/e-smith/locale/tr/etc/e-smith/web/functions/wbl
Normal file
191
root/etc/e-smith/locale/tr/etc/e-smith/web/functions/wbl
Normal file
@ -0,0 +1,191 @@
|
||||
<lexicon lang="tr">
|
||||
<!-- vim: ft=xml:
|
||||
-->
|
||||
|
||||
# WBL_BUTTONS
|
||||
|
||||
<entry>
|
||||
<base>SAVE</base>
|
||||
<trans>Kaydet</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>PERFORM</base>
|
||||
<trans>Uygula</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_FIRST
|
||||
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>E-mail WBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>OPERATION_STATUS_REPORT</base>
|
||||
<trans>İşlem durum raporu</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WBL_DESCRIPTION</base>
|
||||
<trans>E-mail traffic is scanned and may be blocked due to the various screening methods enabled. You may use this panel to define e-mail white/black lists.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST_DESCRIPTION</base>
|
||||
<trans>RBL's List is used to adjust DNSBL and RHSBL.</trans>
|
||||
</entry>
|
||||
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST</base>
|
||||
<trans>RBL's List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST_DESCRIPTION</base>
|
||||
<trans>Black lists are used for rejecting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST</base>
|
||||
<trans>Black List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST_DESCRIPTION</base>
|
||||
<trans>White lists are used for accepting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST</base>
|
||||
<trans>White List</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_BLACK
|
||||
|
||||
<entry>
|
||||
<base>BLACK_TITLE</base>
|
||||
<trans>This server includes built-in support for using the admin defined black lists, badhelo and badmailfrom.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_DESCRIPTION</base>
|
||||
<trans>DNSBL is an abbreviation for "DNS blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_LABEL</base>
|
||||
<trans>DNSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_DESCRIPTION</base>
|
||||
<trans>RHSBL is an abbreviation for "Right Hand Side Blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_LABEL</base>
|
||||
<trans>RHSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_DESCRIPTION</base>
|
||||
<trans>Check a HELO message delivered from a connecting host. Reject any that appear in badhelo during the 'helo' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_LABEL</base>
|
||||
<trans>qpsmtpd badhelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_DESCRIPTION</base>
|
||||
<trans>Check envelope sender addresses. Reject any that appear (@host or user@host) in badmailfrom during the 'mail' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_LABEL</base>
|
||||
<trans>qmail badmailfrom</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_WHITELIST
|
||||
|
||||
<entry>
|
||||
<base>WHITE_TITLE</base>
|
||||
<trans>Use this panel to modify your servers White List settings. All entries will be enabled by default</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RRFH_LABEL</base>
|
||||
<trans>Whitelists status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_DESCRIPTION</base>
|
||||
<trans>Any IP address listed in whitelisthosts will be exempted from any further validation during the 'connect' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthosts</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_DESCRIPTION</base>
|
||||
<trans>Any host that issues a HELO matching an entry in whitelisthelo will be exempted from further validation during the 'helo' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (host.domain or user@host.domain) matching an entry in whitelistsenders will be exempted from further validation during the 'mail' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_LABEL</base>
|
||||
<trans>qpsmtpd whitelistsenders</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in whitelist_from will be exempted from spamassassin rejection.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_LABEL</base>
|
||||
<trans>spamassassin whitelist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_LABEL</base>
|
||||
<trans>spamassassin blacklist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in blacklist_from will be rejected by spamassassin.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_LABEL</base>
|
||||
<trans>RHSBL (qpsmtpd SBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_DESCRIPTION</base>
|
||||
<trans>RHS block list - 'right hand side' of senders host/domain will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_LABEL</base>
|
||||
<trans>DNSBL Zones (qpsmtpd RBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_DESCRIPTION</base>
|
||||
<trans>DNS Block List - senders IP address will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBL_TITLE</base>
|
||||
<trans>Real-time Blackhole Lists are disabled by default. To help reduce spam you can enable RBLs here.</trans>
|
||||
</entry>
|
||||
</lexicon>
|
191
root/etc/e-smith/locale/zh-cn/etc/e-smith/web/functions/wbl
Normal file
191
root/etc/e-smith/locale/zh-cn/etc/e-smith/web/functions/wbl
Normal file
@ -0,0 +1,191 @@
|
||||
<lexicon lang="zh-cn">
|
||||
<!-- vim: ft=xml:
|
||||
-->
|
||||
|
||||
# WBL_BUTTONS
|
||||
|
||||
<entry>
|
||||
<base>SAVE</base>
|
||||
<trans>保存</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>PERFORM</base>
|
||||
<trans>执行</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_FIRST
|
||||
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>E-mail WBL</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>OPERATION_STATUS_REPORT</base>
|
||||
<trans>操作报告</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WBL_DESCRIPTION</base>
|
||||
<trans>E-mail traffic is scanned and may be blocked due to the various screening methods enabled. You may use this panel to define e-mail white/black lists.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST_DESCRIPTION</base>
|
||||
<trans>RBL's List is used to adjust DNSBL and RHSBL.</trans>
|
||||
</entry>
|
||||
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST</base>
|
||||
<trans>RBL's List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST_DESCRIPTION</base>
|
||||
<trans>Black lists are used for rejecting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST</base>
|
||||
<trans>Black List</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST_DESCRIPTION</base>
|
||||
<trans>White lists are used for accepting e-mail traffic.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST</base>
|
||||
<trans>White List</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_BLACK
|
||||
|
||||
<entry>
|
||||
<base>BLACK_TITLE</base>
|
||||
<trans>This server includes built-in support for using the admin defined black lists, badhelo and badmailfrom.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_DESCRIPTION</base>
|
||||
<trans>DNSBL is an abbreviation for "DNS blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_LABEL</base>
|
||||
<trans>DNSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_DESCRIPTION</base>
|
||||
<trans>RHSBL is an abbreviation for "Right Hand Side Blacklist".</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_LABEL</base>
|
||||
<trans>RHSBL status</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_DESCRIPTION</base>
|
||||
<trans>Check a HELO message delivered from a connecting host. Reject any that appear in badhelo during the 'helo' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_LABEL</base>
|
||||
<trans>qpsmtpd badhelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_DESCRIPTION</base>
|
||||
<trans>Check envelope sender addresses. Reject any that appear (@host or user@host) in badmailfrom during the 'mail' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_LABEL</base>
|
||||
<trans>qmail 恶意邮件来源</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_WHITELIST
|
||||
|
||||
<entry>
|
||||
<base>WHITE_TITLE</base>
|
||||
<trans>通过这个面板来修改服务器的白名单设置。</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RRFH_LABEL</base>
|
||||
<trans>白名单状态</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_DESCRIPTION</base>
|
||||
<trans>任何出现在“白名单主机”的IP地址在连接阶段时将跳过验证。</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_LABEL</base>
|
||||
<trans>qpsmtpd 白名单主机</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_DESCRIPTION</base>
|
||||
<trans>Any host that issues a HELO matching an entry in whitelisthelo will be exempted from further validation during the 'helo' stage.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_LABEL</base>
|
||||
<trans>qpsmtpd whitelisthelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_DESCRIPTION</base>
|
||||
<trans>任何出现在“白名单主机”的IP地址在连接阶段时将跳过验证。</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_LABEL</base>
|
||||
<trans>发件人白名单</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in whitelist_from will be exempted from spamassassin rejection.</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_LABEL</base>
|
||||
<trans>spamassassin 发件人白名单</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_LABEL</base>
|
||||
<trans>spamassassin 发件人白名单</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_DESCRIPTION</base>
|
||||
<trans>任何出现在“白名单主机”的IP地址在连接阶段时将跳过验证。</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_LABEL</base>
|
||||
<trans>RHSBL (qpsmtpd SBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_DESCRIPTION</base>
|
||||
<trans>RHS block list - 'right hand side' of senders host/domain will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_LABEL</base>
|
||||
<trans>DNSBL Zones (qpsmtpd RBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_DESCRIPTION</base>
|
||||
<trans>DNS Block List - senders IP address will be checked against the following servers</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBL_TITLE</base>
|
||||
<trans>Real-time Blackhole Lists are disabled by default. To help reduce spam you can enable RBLs here.</trans>
|
||||
</entry>
|
||||
</lexicon>
|
191
root/etc/e-smith/locale/zh-tw/etc/e-smith/web/functions/wbl
Normal file
191
root/etc/e-smith/locale/zh-tw/etc/e-smith/web/functions/wbl
Normal file
@ -0,0 +1,191 @@
|
||||
<lexicon lang="zh-tw">
|
||||
<!-- vim: ft=xml:
|
||||
-->
|
||||
|
||||
# WBL_BUTTONS
|
||||
|
||||
<entry>
|
||||
<base>SAVE</base>
|
||||
<trans>儲存</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>PERFORM</base>
|
||||
<trans>效能</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_FIRST
|
||||
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>E-mail 黑白名單列表</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>OPERATION_STATUS_REPORT</base>
|
||||
<trans>運作狀態回報</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WBL_DESCRIPTION</base>
|
||||
<trans>電子郵件流量被掃描而且基於各種篩選技術的啟用很可能被阻擋。您能使用此介面以定義電子郵件的黑/白名單。</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST_DESCRIPTION</base>
|
||||
<trans>RBL 黑名單被用來調整 DNSBL 與 RHSBL 黑名單資料庫。</trans>
|
||||
</entry>
|
||||
|
||||
|
||||
<entry>
|
||||
<base>RBL_LIST</base>
|
||||
<trans>RBL 黑名單</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST_DESCRIPTION</base>
|
||||
<trans>黑名單被用來拒絕電子郵件流量。</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BLACK_LIST</base>
|
||||
<trans>黑名單</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST_DESCRIPTION</base>
|
||||
<trans>白名單被用來接受電子郵件流量。</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITE_LIST</base>
|
||||
<trans>白名單</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_BLACK
|
||||
|
||||
<entry>
|
||||
<base>BLACK_TITLE</base>
|
||||
<trans><![CDATA[ <p>此伺服器內建支援兩種外部黑名單機制DNSBL與RHSBL。亦支援可由管理者自行定義的badhelo與badmailfrom。</p> ]]></trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_DESCRIPTION</base>
|
||||
<trans>DNSBL是"DNS blacklist"縮寫。其為已知垃圾郵件IP位址名單。</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>DNSBL_LABEL</base>
|
||||
<trans>DNSBL 狀態</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_DESCRIPTION</base>
|
||||
<trans> RHSBL是"Right Hand Side Blacklist"縮寫。其為已知垃圾郵件網域名稱之名單。</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RHSBL_LABEL</base>
|
||||
<trans>RHSBL 狀態</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_DESCRIPTION</base>
|
||||
<trans>確認從已連結主機的HELO訊息傳送。在'helo'區域,拒絕任何顯示在badhelo名單的郵件。</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADHELO_LABEL</base>
|
||||
<trans>qpsmtpd badhelo</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_DESCRIPTION</base>
|
||||
<trans>檢查信封上的寄件人地址。在'mail'階段,拒絕任何(@host or user@host)顯示在不良郵件名單的出處。</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>BADMAILFROM_LABEL</base>
|
||||
<trans>qmail 壞郵件名單</trans>
|
||||
</entry>
|
||||
|
||||
# WBL_PAGE_WHITELIST
|
||||
|
||||
<entry>
|
||||
<base>WHITE_TITLE</base>
|
||||
<trans>通過此控制台來修正伺服器的白名單設定。所有輸入值將被預設為啟動。</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>RRFH_LABEL</base>
|
||||
<trans>白名單狀態</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_DESCRIPTION</base>
|
||||
<trans>任何出現在「白名單主機」的IP位址在連接階段時將跳過進一步驗證。</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHOSTS_LABEL</base>
|
||||
<trans>qpsmtpd 白名單主機</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_DESCRIPTION</base>
|
||||
<trans>任何出現在「HELO白名單」的主機在'helo'階段時將跳過進一步驗證。</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTHELO_LABEL</base>
|
||||
<trans>qpsmtpd 白名單列表問候</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_DESCRIPTION</base>
|
||||
<trans>郵件(@host or user@host)符合「寄件者白名單」中的信件上的任何寄件人在'mail'階段時將跳過進一步驗證。</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTSENDERS_LABEL</base>
|
||||
<trans>qpsmtpd 白名單列表寄件者</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_DESCRIPTION</base>
|
||||
<trans>郵件(*@host or user@host)符合「發信白名單」中的信件上的任何寄件人在垃圾郵件攔截階段時將跳過進一步驗證。</trans>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<base>WHITELISTFROM_LABEL</base>
|
||||
<trans>spamassassin 寄件人白名單</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_LABEL</base>
|
||||
<trans>spamassassin blacklist_from</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>BLACKLISTFROM_DESCRIPTION</base>
|
||||
<trans>Any envelope sender of a mail (*@host or user@host) matching an entry in blacklist_from will be rejected by spamassassin.</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_LABEL</base>
|
||||
<trans>RHSBL (qpsmtpd SBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SBLLIST_DESCRIPTION</base>
|
||||
<trans>RHS阻擋表列 - 'RHS'的寄件人的主機/網域將被檢核以對照接下來的伺服器。</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_LABEL</base>
|
||||
<trans>DNSBL 區域 (qpsmtpd RBLList)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBLLIST_DESCRIPTION</base>
|
||||
<trans>DNS 阻擋表列 - 寄件人的 IP 位址將再被檢核以阻擋下列伺服器</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>RBL_TITLE</base>
|
||||
<trans>RBL黑名單預設值是關閉。您能啟動RBLs黑名單阻擋以降低垃圾郵件。</trans>
|
||||
</entry>
|
||||
</lexicon>
|
@ -0,0 +1,18 @@
|
||||
{
|
||||
use esmith::ConfigDB;
|
||||
|
||||
my $wdb = esmith::ConfigDB->open_ro('wbl')
|
||||
|| die "Unable to open wbl configuration dbase.";
|
||||
my %list = $wdb->get('badmailfrom')->props;
|
||||
|
||||
$OUT = '';
|
||||
my $parameter = "";
|
||||
my $value = "";
|
||||
while (($parameter,$value) = each(%list)) {
|
||||
if ($parameter eq "type") {next;}
|
||||
|
||||
if ($value eq "Black") {
|
||||
$OUT .= "$parameter\n";
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
{
|
||||
use esmith::ConfigDB;
|
||||
|
||||
my $wdb = esmith::ConfigDB->open_ro('wbl')
|
||||
|| die "Unable to open wbl configuration dbase.";
|
||||
my %list = $wdb->get('badhelo')->props;
|
||||
|
||||
$OUT = '';
|
||||
my $parameter = "";
|
||||
my $value = "";
|
||||
while (($parameter,$value) = each(%list)) {
|
||||
if ($parameter eq "type") {next;}
|
||||
|
||||
if ($value eq "Black") {
|
||||
$OUT .= "$parameter\n";
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
{
|
||||
use esmith::ConfigDB;
|
||||
|
||||
my $wdb = esmith::ConfigDB->open_ro('wbl')
|
||||
|| die "Unable to open wbl configuration dbase.";
|
||||
my %list = $wdb->get('badmailfrom')->props;
|
||||
|
||||
$OUT = '';
|
||||
my $parameter = "";
|
||||
my $value = "";
|
||||
while (($parameter,$value) = each(%list)) {
|
||||
if ($parameter eq "type") {next;}
|
||||
|
||||
if ($value eq "Black") {
|
||||
$OUT .= "$parameter\n";
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,4 @@
|
||||
{
|
||||
return ("whitelist") ;
|
||||
# for SME 8 and after RequireResolvableFromHost key is obsolete and always on
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
{
|
||||
use esmith::ConfigDB;
|
||||
|
||||
my $wdb = esmith::ConfigDB->open_ro('wbl')
|
||||
|| die "Unable to open wbl configuration dbase.";
|
||||
my %list = $wdb->get('whitelisthelo')->props;
|
||||
|
||||
$OUT = '';
|
||||
my $parameter = "";
|
||||
my $value = "";
|
||||
while (($parameter,$value) = each(%list)) {
|
||||
if ($parameter eq "type") {next;}
|
||||
|
||||
if ($value eq "White") {
|
||||
$OUT .= "$parameter\n";
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
{
|
||||
use esmith::ConfigDB;
|
||||
|
||||
my $wdb = esmith::ConfigDB->open_ro('wbl')
|
||||
|| die "Unable to open wbl configuration dbase.";
|
||||
my %list = $wdb->get('whitelisthosts')->props;
|
||||
|
||||
$OUT = '';
|
||||
my $parameter = "";
|
||||
my $value = "";
|
||||
while (($parameter,$value) = each(%list)) {
|
||||
if ($parameter eq "type") {next;}
|
||||
|
||||
if ($value eq "White") {
|
||||
$OUT .= "$parameter\n";
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
{
|
||||
use esmith::ConfigDB;
|
||||
|
||||
my $wdb = esmith::ConfigDB->open_ro('wbl')
|
||||
|| die "Unable to open wbl configuration dbase.";
|
||||
my %list = $wdb->get('whitelistsenders')->props;
|
||||
|
||||
$OUT = '';
|
||||
my $parameter = "";
|
||||
my $value = "";
|
||||
while (($parameter,$value) = each(%list)) {
|
||||
if ($parameter eq "type") {next;}
|
||||
|
||||
if ($value eq "White") {
|
||||
$OUT .= "$parameter\n";
|
||||
}
|
||||
}
|
||||
}
|
179
root/etc/e-smith/web/functions/wbl
Normal file
179
root/etc/e-smith/web/functions/wbl
Normal file
@ -0,0 +1,179 @@
|
||||
#!/usr/bin/perl -wT
|
||||
# vim: ft=xml:
|
||||
|
||||
#----------------------------------------------------------------------
|
||||
# heading : Configuration
|
||||
# description : E-mail WBL
|
||||
# navigation : 6000 6710
|
||||
#----------------------------------------------------------------------
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use esmith::FormMagick::Panel::wbl;
|
||||
|
||||
my $f = esmith::FormMagick::Panel::wbl->new();
|
||||
$f->display();
|
||||
|
||||
__DATA__
|
||||
<form
|
||||
title="FORM_TITLE"
|
||||
header="/etc/e-smith/web/common/head.tmpl"
|
||||
footer="/etc/e-smith/web/common/foot.tmpl">
|
||||
|
||||
<page name="First" pre-event="print_status_message()">
|
||||
|
||||
<field type="literal" id="client_label" value="">
|
||||
<description>WBL_DESCRIPTION</description>
|
||||
</field>
|
||||
|
||||
|
||||
<field type="literal" id="client_label" value="">
|
||||
<description>RBL_LIST_DESCRIPTION</description>
|
||||
</field>
|
||||
|
||||
<subroutine src="print_custom_button('RBL_LIST', 'WBL_PAGE_RBL')"/>
|
||||
|
||||
<field type="literal" id="client_label" value="">
|
||||
<description>BLACK_LIST_DESCRIPTION</description>
|
||||
</field>
|
||||
|
||||
<subroutine src="print_custom_button('BLACK_LIST', 'WBL_PAGE_BLACK')"/>
|
||||
|
||||
<field type="literal" id="client_label" value="">
|
||||
<description>WHITE_LIST_DESCRIPTION</description>
|
||||
</field>
|
||||
|
||||
<subroutine src="print_custom_button('WHITE_LIST', 'WBL_PAGE_WHITE')"/>
|
||||
|
||||
|
||||
</page>
|
||||
<page name="WBL_PAGE_RBL"
|
||||
pre-event="turn_off_buttons()"
|
||||
post-event="create_modify_rbl" >
|
||||
<description>RBL_TITLE</description>
|
||||
|
||||
<field
|
||||
type="select"
|
||||
id="dnsbl"
|
||||
options="'enabled' => 'ENABLED',
|
||||
'disabled' => 'DISABLED'"
|
||||
value="get_dnsbl()"
|
||||
validation="nonblank">
|
||||
<label>DNSBL_LABEL</label>
|
||||
<description>DNSBL_DESCRIPTION</description>
|
||||
</field>
|
||||
<field
|
||||
type="textarea"
|
||||
id="rbllist"
|
||||
size="80"
|
||||
value="get_rbllist()"
|
||||
validation="">
|
||||
<label>RBLLIST_LABEL</label>
|
||||
<description>RBLLIST_DESCRIPTION</description>
|
||||
</field>
|
||||
<field
|
||||
type="select"
|
||||
id="rhsbl"
|
||||
options="'enabled' => 'ENABLED',
|
||||
'disabled' => 'DISABLED'"
|
||||
value="get_rhsbl()"
|
||||
validation="nonblank">
|
||||
<label>RHSBL_LABEL</label>
|
||||
<description>RHSBL_DESCRIPTION</description>
|
||||
</field>
|
||||
<field
|
||||
type="textarea"
|
||||
id="sbllist"
|
||||
size="80"
|
||||
value="get_sbllist()"
|
||||
validation="">
|
||||
<label>SBLLIST_LABEL</label>
|
||||
<description>SBLLIST_DESCRIPTION</description>
|
||||
</field>
|
||||
|
||||
<subroutine src="print_button('SAVE')" />
|
||||
</page>
|
||||
|
||||
<page name="WBL_PAGE_BLACK"
|
||||
pre-event="turn_off_buttons()"
|
||||
post-event="create_modify_black" >
|
||||
|
||||
<description>BLACK_TITLE</description>
|
||||
|
||||
<field
|
||||
type="textarea"
|
||||
id="badhelo"
|
||||
value="get_badhelo()"
|
||||
validation="">
|
||||
<label>BADHELO_LABEL</label>
|
||||
<description>BADHELO_DESCRIPTION</description>
|
||||
</field>
|
||||
|
||||
<field
|
||||
type="textarea"
|
||||
id="badmailfrom"
|
||||
value="get_badmailfrom()"
|
||||
validation="">
|
||||
<label>BADMAILFROM_LABEL</label>
|
||||
<description>BADMAILFROM_DESCRIPTION</description>
|
||||
</field>
|
||||
|
||||
<field
|
||||
type="textarea"
|
||||
id="blacklistfrom"
|
||||
value="get_blacklistfrom()"
|
||||
validation="">
|
||||
<label>BLACKLISTFROM_LABEL</label>
|
||||
<description>BLACKLISTFROM_DESCRIPTION</description>
|
||||
</field>
|
||||
|
||||
<subroutine src="print_button('SAVE')" />
|
||||
</page>
|
||||
|
||||
<page name="WBL_PAGE_WHITE"
|
||||
pre-event="turn_off_buttons()"
|
||||
post-event="create_modify_white" >
|
||||
|
||||
<description>WHITE_TITLE</description>
|
||||
|
||||
<field
|
||||
type="textarea"
|
||||
id="whitelisthosts"
|
||||
value="get_whitelisthosts()"
|
||||
validation="">
|
||||
<label>WHITELISTHOSTS_LABEL</label>
|
||||
<description>WHITELISTHOSTS_DESCRIPTION</description>
|
||||
</field>
|
||||
|
||||
<field
|
||||
type="textarea"
|
||||
id="whitelisthelo"
|
||||
value="get_whitelisthelo()"
|
||||
validation="">
|
||||
<label>WHITELISTHELO_LABEL</label>
|
||||
<description>WHITELISTHELO_DESCRIPTION</description>
|
||||
</field>
|
||||
|
||||
<field
|
||||
type="textarea"
|
||||
id="whitelistsenders"
|
||||
value="get_whitelistsenders()"
|
||||
validation="">
|
||||
<label>WHITELISTSENDERS_LABEL</label>
|
||||
<description>WHITELISTSENDERS_DESCRIPTION</description>
|
||||
</field>
|
||||
|
||||
<field
|
||||
type="textarea"
|
||||
id="whitelistfrom"
|
||||
value="get_whitelistfrom()"
|
||||
validation="">
|
||||
<label>WHITELISTFROM_LABEL</label>
|
||||
<description>WHITELISTFROM_DESCRIPTION</description>
|
||||
</field>
|
||||
|
||||
<subroutine src="print_button('SAVE')" />
|
||||
</page>
|
||||
|
||||
</form>
|
415
root/usr/share/perl5/vendor_perl/esmith/FormMagick/Panel/wbl.pm
Normal file
415
root/usr/share/perl5/vendor_perl/esmith/FormMagick/Panel/wbl.pm
Normal file
@ -0,0 +1,415 @@
|
||||
#!/usr/bin/perl -w
|
||||
package esmith::FormMagick::Panel::wbl;
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use esmith::FormMagick;
|
||||
use esmith::ConfigDB;
|
||||
use esmith::cgi;
|
||||
use esmith::util;
|
||||
use File::Basename;
|
||||
use Exporter;
|
||||
use Carp qw(verbose);
|
||||
|
||||
our @ISA = qw(esmith::FormMagick Exporter);
|
||||
|
||||
our @EXPORT = qw();
|
||||
|
||||
our $VERSION = sprintf '%d.%03d', q$Revision: 1.1 $ =~ /: (\d+).(\d+)/;
|
||||
|
||||
our $db = esmith::ConfigDB->open() or die "Couldn't open ConfigDB\n";
|
||||
our $wdb = esmith::ConfigDB->open('wbl') or die "Couldn't open wbl dbase\n";
|
||||
our $sdb = esmith::ConfigDB->open('spamassassin') or die "Couldn't open spamassassin dbase\n";
|
||||
|
||||
sub get_dnsbl
|
||||
{
|
||||
return ($db->get_prop('qpsmtpd', 'DNSBL') || 'disabled');
|
||||
}
|
||||
|
||||
sub get_rhsbl
|
||||
{
|
||||
return ($db->get_prop('qpsmtpd', 'RHSBL') || 'disabled');
|
||||
}
|
||||
|
||||
sub get_sbllist
|
||||
{
|
||||
my $sbllistform = $db->get_prop('qpsmtpd', 'SBLList') || '';
|
||||
$sbllistform =~ s/,/\n/g;
|
||||
return $sbllistform;
|
||||
}
|
||||
|
||||
sub get_rbllist
|
||||
{
|
||||
my $rbllistform = $db->get_prop('qpsmtpd', 'RBLList') || '';
|
||||
$rbllistform =~ s/,/\n/g;
|
||||
return $rbllistform;
|
||||
}
|
||||
|
||||
sub get_badhelo
|
||||
{
|
||||
my %list = $wdb->get('badhelo')->props;
|
||||
|
||||
my @badhelo = ();
|
||||
my $parameter = "";
|
||||
my $value = "";
|
||||
while (($parameter,$value) = each(%list)) {
|
||||
if ($parameter eq "type") {next;}
|
||||
|
||||
if ($value eq "Black") {
|
||||
push @badhelo, $parameter;
|
||||
}
|
||||
}
|
||||
|
||||
return "" unless (scalar @badhelo);
|
||||
|
||||
return join "\n", sort(@badhelo);
|
||||
}
|
||||
|
||||
sub get_badmailfrom
|
||||
{
|
||||
my %list = $wdb->get('badmailfrom')->props;
|
||||
|
||||
my @badmailfrom = ();
|
||||
my $parameter = "";
|
||||
my $value = "";
|
||||
while (($parameter,$value) = each(%list)) {
|
||||
if ($parameter eq "type") {next;}
|
||||
|
||||
if ($value eq "Black") {
|
||||
push @badmailfrom, $parameter;
|
||||
}
|
||||
}
|
||||
|
||||
return "" unless (scalar @badmailfrom);
|
||||
|
||||
return join "\n", sort(@badmailfrom);
|
||||
}
|
||||
|
||||
sub get_whitelisthosts
|
||||
{
|
||||
my %list = $wdb->get('whitelisthosts')->props;
|
||||
|
||||
my @whitelisthosts = ();
|
||||
my $parameter = "";
|
||||
my $value = "";
|
||||
while (($parameter,$value) = each(%list)) {
|
||||
if ($parameter eq "type") {next;}
|
||||
|
||||
if ($value eq "White") {
|
||||
push @whitelisthosts, $parameter;
|
||||
}
|
||||
}
|
||||
|
||||
return "" unless (scalar @whitelisthosts);
|
||||
|
||||
return join "\n", sort(@whitelisthosts);
|
||||
}
|
||||
|
||||
sub get_whitelisthelo
|
||||
{
|
||||
my %list = $wdb->get('whitelisthelo')->props;
|
||||
|
||||
my @whitelisthelo = ();
|
||||
my $parameter = "";
|
||||
my $value = "";
|
||||
while (($parameter,$value) = each(%list)) {
|
||||
if ($parameter eq "type") {next;}
|
||||
|
||||
if ($value eq "White") {
|
||||
push @whitelisthelo, $parameter;
|
||||
}
|
||||
}
|
||||
|
||||
return "" unless (scalar @whitelisthelo);
|
||||
|
||||
return join "\n", sort(@whitelisthelo);
|
||||
}
|
||||
|
||||
sub get_whitelistsenders
|
||||
{
|
||||
my %list = $wdb->get('whitelistsenders')->props;
|
||||
|
||||
my @whitelistsenders = ();
|
||||
my $parameter = "";
|
||||
my $value = "";
|
||||
while (($parameter,$value) = each(%list)) {
|
||||
if ($parameter eq "type") {next;}
|
||||
|
||||
if ($value eq "White") {
|
||||
push @whitelistsenders, $parameter;
|
||||
}
|
||||
}
|
||||
|
||||
return "" unless (scalar @whitelistsenders);
|
||||
|
||||
return join "\n", sort(@whitelistsenders);
|
||||
}
|
||||
|
||||
sub get_whitelistfrom
|
||||
{
|
||||
my %list = $sdb->get('wbl.global')->props;
|
||||
|
||||
my @whitelistfrom = ();
|
||||
my $parameter = "";
|
||||
my $value = "";
|
||||
while (($parameter,$value) = each(%list)) {
|
||||
if ($parameter eq "type") {next;}
|
||||
|
||||
if ($value eq "White") {
|
||||
push @whitelistfrom, $parameter;
|
||||
}
|
||||
}
|
||||
|
||||
return "" unless (scalar @whitelistfrom);
|
||||
|
||||
return join "\n", sort(@whitelistfrom);
|
||||
}
|
||||
|
||||
sub create_modify_black
|
||||
{
|
||||
my $fm = shift;
|
||||
my $q = $fm->{'cgi'};
|
||||
|
||||
# qmail badhelo
|
||||
my %list = $wdb->get('badhelo')->props;
|
||||
my $parameter = "";
|
||||
my $value = "";
|
||||
while (($parameter,$value) = each(%list)) {
|
||||
if ($parameter eq "type") {next;}
|
||||
|
||||
if ($value eq "Black") {
|
||||
$wdb->get_prop_and_delete('badhelo', "$parameter");
|
||||
}
|
||||
}
|
||||
|
||||
my $BadHelo = $q->param("badhelo");
|
||||
$BadHelo =~ s/\r\n/,/g;
|
||||
my @BadHelo = sort(split /,/, $BadHelo);
|
||||
foreach $BadHelo (@BadHelo)
|
||||
{
|
||||
$wdb->set_prop('badhelo', "$BadHelo", 'Black');
|
||||
}
|
||||
|
||||
# qmail badmailfrom
|
||||
my %list_badmailfrom = $wdb->get('badmailfrom')->props;
|
||||
my $parameter_badmailfrom = "";
|
||||
my $value_badmailfrom = "";
|
||||
while (($parameter_badmailfrom,$value_badmailfrom) = each(%list_badmailfrom)) {
|
||||
if ($parameter_badmailfrom eq "type") {next;}
|
||||
|
||||
if ($value_badmailfrom eq "Black") {
|
||||
$wdb->get_prop_and_delete('badmailfrom', "$parameter_badmailfrom");
|
||||
}
|
||||
}
|
||||
|
||||
my $BadMailFrom = $q->param("badmailfrom");
|
||||
$BadMailFrom =~ s/\r\n/,/g;
|
||||
my @BadMailFrom = sort(split /,/, $BadMailFrom);
|
||||
foreach $BadMailFrom (@BadMailFrom){
|
||||
$wdb->set_prop('badmailfrom', "$BadMailFrom", 'Black');
|
||||
}
|
||||
# spamassassin blacklist_from
|
||||
my %list_wblglobal = $sdb->get('wbl.global')->props;
|
||||
my $parameter_wblglobal = "";
|
||||
my $value_wblglobal = "";
|
||||
while (($parameter_wblglobal,$value_wblglobal) = each(%list_wblglobal)) {
|
||||
if ($parameter_wblglobal eq "type") {next;}
|
||||
|
||||
if ($value_wblglobal eq "Black") {
|
||||
$sdb->get_prop_and_delete('wbl.global', "$parameter_wblglobal");
|
||||
}
|
||||
}
|
||||
|
||||
my $BlacklistFrom = $q->param("blacklistfrom");
|
||||
$BlacklistFrom =~ s/\r\n/,/g;
|
||||
my @BlacklistFrom = sort(split /,/, $BlacklistFrom);
|
||||
foreach $BlacklistFrom (@BlacklistFrom){
|
||||
$sdb->set_prop('wbl.global', "$BlacklistFrom", 'Black');
|
||||
}
|
||||
|
||||
##Update email settings
|
||||
unless ( system ("/sbin/e-smith/signal-event", "wbl-update") == 0 ){
|
||||
$fm->error('ERROR_UPDATING');
|
||||
return undef;
|
||||
}
|
||||
|
||||
$fm->success('SUCCESS');
|
||||
}
|
||||
|
||||
sub create_modify_white
|
||||
{
|
||||
my $fm = shift;
|
||||
my $q = $fm->{'cgi'};
|
||||
|
||||
# qpsmtpd whitelisthosts
|
||||
my %list = $wdb->get('whitelisthosts')->props;
|
||||
my $parameter = "";
|
||||
my $value = "";
|
||||
while (($parameter,$value) = each(%list)) {
|
||||
if ($parameter eq "type") {next;}
|
||||
|
||||
if ($value eq "White") {
|
||||
$wdb->get_prop_and_delete('whitelisthosts', "$parameter");
|
||||
}
|
||||
}
|
||||
|
||||
my $WhitelistHosts = $q->param("whitelisthosts");
|
||||
$WhitelistHosts =~ s/\r\n/,/g;
|
||||
my @WhitelistHosts = sort(split /,/, $WhitelistHosts);
|
||||
foreach $WhitelistHosts (@WhitelistHosts)
|
||||
{
|
||||
$wdb->set_prop('whitelisthosts', "$WhitelistHosts", 'White');
|
||||
}
|
||||
|
||||
# qpsmtpd whitelisthelo
|
||||
my %list_whitelisthelo = $wdb->get('whitelisthelo')->props;
|
||||
my $parameter_whitelisthelo = "";
|
||||
my $value_whitelisthelo = "";
|
||||
while (($parameter_whitelisthelo,$value_whitelisthelo) = each(%list_whitelisthelo)) {
|
||||
if ($parameter_whitelisthelo eq "type") {next;}
|
||||
|
||||
if ($value_whitelisthelo eq "White") {
|
||||
$wdb->get_prop_and_delete('whitelisthelo', "$parameter_whitelisthelo");
|
||||
}
|
||||
}
|
||||
|
||||
my $WhitelistHelo = $q->param("whitelisthelo");
|
||||
$WhitelistHelo =~ s/\r\n/,/g;
|
||||
my @WhitelistHelo = sort(split /,/, $WhitelistHelo);
|
||||
foreach $WhitelistHelo (@WhitelistHelo)
|
||||
{
|
||||
$wdb->set_prop('whitelisthelo', "$WhitelistHelo", 'White');
|
||||
}
|
||||
|
||||
# qpsmtpd whitelistsenders
|
||||
my %list_whitelistsenders = $wdb->get('whitelistsenders')->props;
|
||||
my $parameter_whitelistsenders = "";
|
||||
my $value_whitelistsenders = "";
|
||||
while (($parameter_whitelistsenders,$value_whitelistsenders) = each(%list_whitelistsenders)) {
|
||||
if ($parameter_whitelistsenders eq "type") {next;}
|
||||
|
||||
if ($value_whitelistsenders eq "White") {
|
||||
$wdb->get_prop_and_delete('whitelistsenders', "$parameter_whitelistsenders");
|
||||
}
|
||||
}
|
||||
|
||||
my $WhitelistSenders = $q->param("whitelistsenders");
|
||||
$WhitelistSenders =~ s/\r\n/,/g;
|
||||
my @WhitelistSenders = sort(split /,/, $WhitelistSenders);
|
||||
foreach $WhitelistSenders (@WhitelistSenders)
|
||||
{
|
||||
$wdb->set_prop('whitelistsenders', "$WhitelistSenders", 'White');
|
||||
}
|
||||
|
||||
# spamassassin whitelist_from
|
||||
my %list_wblglobal = $sdb->get('wbl.global')->props;
|
||||
my $parameter_wblglobal = "";
|
||||
my $value_wblglobal = "";
|
||||
while (($parameter_wblglobal,$value_wblglobal) = each(%list_wblglobal)) {
|
||||
if ($parameter_wblglobal eq "type") {next;}
|
||||
|
||||
if ($value_wblglobal eq "White") {
|
||||
$sdb->get_prop_and_delete('wbl.global', "$parameter_wblglobal");
|
||||
}
|
||||
}
|
||||
|
||||
my $WhitelistFrom = $q->param("whitelistfrom");
|
||||
$WhitelistFrom =~ s/\r\n/,/g;
|
||||
my @WhitelistFrom = sort(split /,/, $WhitelistFrom);
|
||||
foreach $WhitelistFrom (@WhitelistFrom){
|
||||
$sdb->set_prop('wbl.global', "$WhitelistFrom", 'White');
|
||||
}
|
||||
|
||||
##Update email settings
|
||||
unless ( system ("/sbin/e-smith/signal-event", "wbl-update") == 0 ){
|
||||
$fm->error('ERROR_UPDATING');
|
||||
return undef;
|
||||
}
|
||||
|
||||
$fm->success('SUCCESS');
|
||||
}
|
||||
|
||||
sub email_update
|
||||
{
|
||||
my $fm = shift;
|
||||
my $q = $fm->{'cgi'};
|
||||
|
||||
unless ( system ("/sbin/e-smith/signal-event", "wbl-update") == 0 )
|
||||
{
|
||||
$fm->error('ERROR_UPDATING');
|
||||
return undef;
|
||||
}
|
||||
|
||||
$fm->success('SUCCESS');
|
||||
|
||||
}
|
||||
|
||||
sub get_blacklistfrom
|
||||
{
|
||||
my %list = $sdb->get('wbl.global')->props;
|
||||
|
||||
my @blacklistfrom = ();
|
||||
my $parameter = "";
|
||||
my $value = "";
|
||||
while (($parameter,$value) = each(%list)) {
|
||||
if ($parameter eq "type") {next;}
|
||||
|
||||
if ($value eq "Black") {
|
||||
push @blacklistfrom, $parameter;
|
||||
}
|
||||
}
|
||||
|
||||
return "" unless (scalar @blacklistfrom);
|
||||
|
||||
return join "\n", sort(@blacklistfrom);
|
||||
}
|
||||
sub create_modify_rbl
|
||||
{
|
||||
my $fm = shift;
|
||||
my $q = $fm->{'cgi'};
|
||||
|
||||
my $dnsbl = $q->param('dnsbl');
|
||||
$db->set_prop('qpsmtpd', 'DNSBL', "$dnsbl");
|
||||
|
||||
my $rhsbl = $q->param('rhsbl');
|
||||
$db->set_prop('qpsmtpd', 'RHSBL', "$rhsbl");
|
||||
|
||||
|
||||
my $sbllistcgi = $q->param('sbllist');
|
||||
my @sbllistcgi = split /\s{2,}/, $sbllistcgi;
|
||||
my $sbllistdb = '';
|
||||
foreach (@sbllistcgi) { $sbllistdb = $sbllistdb . ',' . $_; }
|
||||
$sbllistdb =~ s/^,//;
|
||||
|
||||
$db->set_prop('qpsmtpd', 'SBLList', "$sbllistdb");
|
||||
|
||||
|
||||
my $rbllistcgi = $q->param('rbllist');
|
||||
my @rbllistcgi = split /\s{2,}/, $rbllistcgi;
|
||||
my $rbllistdb = '';
|
||||
foreach (@rbllistcgi) { $rbllistdb = $rbllistdb . ',' . $_; }
|
||||
$rbllistdb =~ s/^,//;
|
||||
|
||||
$db->set_prop('qpsmtpd', 'RBLList', "$rbllistdb");
|
||||
|
||||
##Update email settings
|
||||
|
||||
unless ( system ("/sbin/e-smith/signal-event", "wbl-update") == 0 ){
|
||||
$fm->error('ERROR_UPDATING');
|
||||
return undef;
|
||||
}
|
||||
|
||||
$fm->success('SUCCESS');
|
||||
}
|
||||
|
||||
#Subroutine to display buttons
|
||||
sub print_custom_button{
|
||||
my ($fm,$desc,$url) = @_;
|
||||
my $q = $fm->{cgi};
|
||||
$url="wbl?page=0&page_stack=&Next=Next&wherenext=".$url;
|
||||
print " <tr>\n <td colspan='2'>\n";
|
||||
print $q->p($q->a({href => $url, -class => "button-like"},$fm->localise($desc)));
|
||||
print qq(</tr>\n);
|
||||
return undef;
|
||||
}
|
||||
1;
|
553
root/usr/share/smanager/lib/SrvMngr/Controller/Wbl.pm
Normal file
553
root/usr/share/smanager/lib/SrvMngr/Controller/Wbl.pm
Normal file
@ -0,0 +1,553 @@
|
||||
package SrvMngr::Controller::Wbl;
|
||||
|
||||
#----------------------------------------------------------------------
|
||||
# heading : System
|
||||
# description : E-mail WBL
|
||||
# navigation : 4000 550
|
||||
|
||||
# name : wbl, method : get, url : /wbl, ctlact : wbl#main
|
||||
# name : wbldis, method : post, url : /wbl, ctlact : wbl#do_display
|
||||
# name : wblupc, method : get, url : /wbl2, ctlact : wbl#do_update
|
||||
# name : wblupd, method : post, url : /wbl2, ctlact : wbl#do_update
|
||||
#
|
||||
# routes : end
|
||||
#----------------------------------------------------------------------
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use Mojo::Base 'Mojolicious::Controller';
|
||||
|
||||
use Locale::gettext;
|
||||
use SrvMngr::I18N;
|
||||
|
||||
use SrvMngr qw( theme_list init_session );
|
||||
|
||||
use Exporter;
|
||||
our @EXPORT_OK = qw(
|
||||
get_contrib_desc
|
||||
get_contrib_routes
|
||||
);
|
||||
|
||||
our $db = esmith::ConfigDB->open() or die "Couldn't open ConfigDB\n";
|
||||
our $wdb = esmith::ConfigDB->open('wbl') or die "Couldn't open wbl dbase\n";
|
||||
our $sdb = esmith::ConfigDB->open('spamassassin') or die "Couldn't open spamassassin dbase\n";
|
||||
|
||||
|
||||
sub main {
|
||||
|
||||
my $c = shift;
|
||||
$c->app->log->info($c->log_req);
|
||||
|
||||
my %wbl_datas = ();
|
||||
my $title = $c->l('wbl_FORM_TITLE');
|
||||
|
||||
$wbl_datas{'trt'} = 'CHOICE';
|
||||
|
||||
$c->stash( title => $title, wbl_datas => \%wbl_datas);
|
||||
$c->render_maybe('wbl') or $c->render('wbl');
|
||||
};
|
||||
|
||||
|
||||
sub do_display {
|
||||
|
||||
my $c = shift;
|
||||
$c->app->log->info($c->log_req);
|
||||
|
||||
my $trt = $c->param('list') || 'CHOICE';
|
||||
|
||||
my %wbl_datas = ();
|
||||
my $title = $c->l('wbl_FORM_TITLE');
|
||||
|
||||
$wbl_datas{'trt'} = $trt;
|
||||
|
||||
if ( $trt eq 'RBL' ) {
|
||||
|
||||
# dnsbl - returns 'enabled/disabled
|
||||
$wbl_datas{'dnsbl'} = get_dnsbl();
|
||||
|
||||
# rhsbl - returns 'enabled/disabled
|
||||
$wbl_datas{'rhsbl'} = get_rhsbl();
|
||||
|
||||
# uribl - returns 'enabled/disabled
|
||||
$wbl_datas{'uribl'} = get_uribl();
|
||||
}
|
||||
|
||||
if ( $trt eq 'BLACK' ) {
|
||||
# For Black List
|
||||
}
|
||||
|
||||
if ( $trt eq 'WHITE' ) {
|
||||
# For WBL List
|
||||
}
|
||||
|
||||
if ( $trt eq 'CHOICE' ) {
|
||||
#
|
||||
}
|
||||
|
||||
$c->stash( title => $title, wbl_datas => \%wbl_datas );
|
||||
$c->render( template => 'wbl' );
|
||||
|
||||
};
|
||||
|
||||
|
||||
sub do_update {
|
||||
|
||||
my $c = shift;
|
||||
$c->app->log->info($c->log_req);
|
||||
|
||||
my %wbl_datas = ();
|
||||
my ($res, $result) = "";
|
||||
|
||||
my $title = $c->l('wbl_FORM_TITLE');
|
||||
|
||||
my $trt = ($c->param('trt') || '???');
|
||||
$wbl_datas{'trt'} = $trt;
|
||||
|
||||
#### $wbl_datas{'dnsbl'} = get_dnsbl(); etc...
|
||||
if ($trt eq 'RBL') {
|
||||
|
||||
# controls, validate
|
||||
#if (xxx) {
|
||||
# $result .= $c->l('XXXXXXX');
|
||||
#}
|
||||
|
||||
##$result .= ' ** Blocked for testing ** !';
|
||||
|
||||
if ( ! $result ) {
|
||||
$res = $c->create_modify_rbl();
|
||||
$result .= $res unless $res eq 'OK';
|
||||
if ( ! $result ) {
|
||||
$wbl_datas{trt} = 'SUC';
|
||||
$result = $c->l('SUCCESS').' RBL';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if ($trt eq 'BLACK') {
|
||||
|
||||
# controls, validate
|
||||
#if (xxx) {
|
||||
# $result .= $c->l('XXXXXXX');
|
||||
#}
|
||||
|
||||
##$result .= ' ** Blocked for testing ** !';
|
||||
|
||||
if ( ! $result ) {
|
||||
$res = $c->create_modify_black();
|
||||
$result .= $res unless $res eq 'OK';
|
||||
if ( ! $result ) {
|
||||
$wbl_datas{trt} = 'SUC';
|
||||
$result = $c->l('SUCCESS').' BLACK';
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
if ($trt eq 'WHITE') {
|
||||
|
||||
# controls, validate
|
||||
#if (xxx) {
|
||||
# $result .= $c->l('XXXXXXX');
|
||||
#}
|
||||
|
||||
##$result .= ' ** Blocked for testing ** !';
|
||||
|
||||
if ( ! $result ) {
|
||||
$res = $c->create_modify_white();
|
||||
$result .= $res unless $res eq 'OK';
|
||||
if ( ! $result ) {
|
||||
$wbl_datas{trt} = 'SUC';
|
||||
$result = $c->l('SUCCESS').' WHITE';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
# common part
|
||||
$c->stash( title => $title, wbl_datas => \%wbl_datas );
|
||||
if ($wbl_datas{trt} ne 'SUC') {
|
||||
$c->flash(error => $result);
|
||||
$wbl_datas{'trt'} = $trt;
|
||||
return $c->render(template => 'wbl');
|
||||
}
|
||||
|
||||
# successfully terminated
|
||||
my $message = $trt . ' updates DONE';
|
||||
$c->app->log->info($message);
|
||||
$c->flash(success => $result);
|
||||
|
||||
#return to 'wbl' route !!!
|
||||
$c->redirect_to('wbl');
|
||||
|
||||
}
|
||||
|
||||
|
||||
sub get_dnsbl {
|
||||
return ($db->get_prop('qpsmtpd', 'DNSBL') || 'disabled');
|
||||
}
|
||||
|
||||
|
||||
sub get_rhsbl {
|
||||
return ($db->get_prop('qpsmtpd', 'RHSBL') || 'disabled');
|
||||
}
|
||||
|
||||
|
||||
sub get_uribl {
|
||||
return ($db->get_prop('qpsmtpd', 'URIBL') || 'disabled');
|
||||
}
|
||||
|
||||
|
||||
sub get_sbllist {
|
||||
|
||||
my $sbllistform = $db->get_prop('qpsmtpd', 'SBLList') || '';
|
||||
my @list = (split /,/, $sbllistform);
|
||||
return \@list;
|
||||
}
|
||||
|
||||
|
||||
sub get_rbllist {
|
||||
|
||||
my $rbllistform = $db->get_prop('qpsmtpd', 'RBLList') || '';
|
||||
my @list = (split /,/, $rbllistform);
|
||||
return \@list;
|
||||
}
|
||||
|
||||
|
||||
sub get_ubllist {
|
||||
|
||||
my $ubllistform = $db->get_prop('qpsmtpd', 'UBLList') || '';
|
||||
my @list = ($ubllistform);
|
||||
return \@list;
|
||||
}
|
||||
|
||||
|
||||
sub get_wbllist {
|
||||
|
||||
my $c = shift;
|
||||
return [[$c->l('wbl_RBL_LIST') => 'RBL'],
|
||||
[$c->l('wbl_BLACK_LIST') => 'BLACK'],
|
||||
[$c->l('wbl_WHITE_LIST') => 'WHITE']];
|
||||
}
|
||||
|
||||
|
||||
sub get_badhelo {
|
||||
|
||||
my %list = $wdb->get('badhelo')->props;
|
||||
|
||||
my @badhelo = ();
|
||||
my ($parameter, $value) = "";
|
||||
while (($parameter,$value) = each(%list)) {
|
||||
next if ($parameter eq "type");
|
||||
push @badhelo, $parameter if ($value eq "Black");
|
||||
}
|
||||
my @badh = sort(@badhelo);
|
||||
return \@badh;
|
||||
}
|
||||
|
||||
|
||||
sub get_badmailfrom {
|
||||
|
||||
my %list = $wdb->get('badmailfrom')->props;
|
||||
|
||||
my @badmailfrom = ();
|
||||
my ($parameter, $value) = "";
|
||||
while (($parameter,$value) = each(%list)) {
|
||||
next if ($parameter eq "type");
|
||||
push @badmailfrom, $parameter if ($value eq "Black");
|
||||
}
|
||||
my @badmf = sort(@badmailfrom);
|
||||
return \@badmf;
|
||||
}
|
||||
|
||||
|
||||
sub get_blacklistfrom {
|
||||
|
||||
my %list = $sdb->get('wbl.global')->props;
|
||||
|
||||
my @blacklistfrom = ();
|
||||
my ($parameter, $value) = "";
|
||||
|
||||
while (($parameter,$value) = each(%list)) {
|
||||
next if ($parameter eq "type");
|
||||
push @blacklistfrom, $parameter if ($value eq "Black");
|
||||
}
|
||||
my @blacklf = sort(@blacklistfrom);
|
||||
return \@blacklf;
|
||||
}
|
||||
|
||||
|
||||
sub get_whitelisthosts {
|
||||
|
||||
my %list = $wdb->get('whitelisthosts')->props;
|
||||
|
||||
my @whitelisthosts = ();
|
||||
my ($parameter, $value) = "";
|
||||
|
||||
while (($parameter,$value) = each(%list)) {
|
||||
next if ($parameter eq "type");
|
||||
push @whitelisthosts, $parameter if ($value eq "White");
|
||||
}
|
||||
my @whitelh = sort(@whitelisthosts);
|
||||
return \@whitelh;
|
||||
}
|
||||
|
||||
|
||||
sub get_whitelisthelo {
|
||||
|
||||
my %list = $wdb->get('whitelisthelo')->props;
|
||||
|
||||
my @whitelisthelo = ();
|
||||
my ($parameter, $value) = "";
|
||||
|
||||
while (($parameter,$value) = each(%list)) {
|
||||
next if ($parameter eq "type");
|
||||
push @whitelisthelo, $parameter if ($value eq "White");
|
||||
}
|
||||
my @whitelh = sort(@whitelisthelo);
|
||||
return \@whitelh;
|
||||
}
|
||||
|
||||
|
||||
sub get_whitelistsenders {
|
||||
|
||||
my %list = $wdb->get('whitelistsenders')->props;
|
||||
|
||||
my @whitelistsenders = ();
|
||||
my ($parameter, $value) = "";
|
||||
|
||||
while (($parameter,$value) = each(%list)) {
|
||||
next if ($parameter eq "type");
|
||||
push @whitelistsenders, $parameter if ($value eq "White");
|
||||
}
|
||||
my @whitels = sort(@whitelistsenders);
|
||||
return \@whitels;
|
||||
}
|
||||
|
||||
|
||||
sub get_whitelistfrom {
|
||||
|
||||
my %list = $sdb->get('wbl.global')->props;
|
||||
|
||||
my @whitelistfrom = ();
|
||||
my ($parameter, $value) = "";
|
||||
|
||||
while (($parameter,$value) = each(%list)) {
|
||||
next if ($parameter eq "type");
|
||||
push @whitelistfrom, $parameter if ($value eq "White");
|
||||
}
|
||||
my @whitels = sort(@whitelistfrom);
|
||||
return \@whitels;
|
||||
}
|
||||
|
||||
|
||||
sub create_modify_rbl {
|
||||
|
||||
my $c = shift;
|
||||
|
||||
my $dnsbl = $c->param('Dnsbl');
|
||||
$db->set_prop('qpsmtpd', 'DNSBL', "$dnsbl");
|
||||
|
||||
my $rhsbl = $c->param('Rhsbl');
|
||||
$db->set_prop('qpsmtpd', 'RHSBL', "$rhsbl");
|
||||
|
||||
|
||||
my $sbllistcgi = $c->param('Sbllist');
|
||||
my @sbllistcgi = split /\s{2,}/, $sbllistcgi;
|
||||
my $sbllistdb = '';
|
||||
foreach (@sbllistcgi) { $sbllistdb = $sbllistdb . ',' . $_; }
|
||||
$sbllistdb =~ s/^,//;
|
||||
|
||||
$db->set_prop('qpsmtpd', 'SBLList', "$sbllistdb");
|
||||
|
||||
my $rbllistcgi = $c->param('Rbllist');
|
||||
my @rbllistcgi = split /\s{2,}/, $rbllistcgi;
|
||||
my $rbllistdb = '';
|
||||
foreach (@rbllistcgi) { $rbllistdb = $rbllistdb . ',' . $_; }
|
||||
$rbllistdb =~ s/^,//;
|
||||
|
||||
$db->set_prop('qpsmtpd', 'RBLList', "$rbllistdb");
|
||||
|
||||
#Update email settings
|
||||
unless ( system ("/sbin/e-smith/signal-event", "wbl-update") == 0 ){
|
||||
return 'RBL : ' . $c->l('wbl_ERROR_UPDATING');
|
||||
}
|
||||
|
||||
return 'OK';
|
||||
}
|
||||
|
||||
|
||||
sub create_modify_black {
|
||||
|
||||
my $c = shift;
|
||||
|
||||
#-------------------------------
|
||||
# qmail badhelo
|
||||
#-------------------------------
|
||||
my %list = $wdb->get('badhelo')->props;
|
||||
my ($parameter, $value) = '';
|
||||
|
||||
while (($parameter,$value) = each(%list)) {
|
||||
next if ($parameter eq "type");
|
||||
if ($value eq "Black") {
|
||||
$wdb->get_prop_and_delete('badhelo', "$parameter");
|
||||
}
|
||||
}
|
||||
|
||||
my $BadHelo = $c->param("Badhelo");
|
||||
$BadHelo =~ s/\r\n/,/g;
|
||||
my @BadHelo = sort(split /,/, $BadHelo);
|
||||
foreach $BadHelo (@BadHelo) {
|
||||
$wdb->set_prop('badhelo', "$BadHelo", 'Black');
|
||||
}
|
||||
|
||||
#-------------------------------
|
||||
# qmail badmailfrom
|
||||
#-------------------------------
|
||||
my %list_badmailfrom = $wdb->get('badmailfrom')->props;
|
||||
my ($parameter_badmailfrom, $value_badmailfrom) = "";
|
||||
|
||||
while (($parameter_badmailfrom,$value_badmailfrom) = each(%list_badmailfrom)) {
|
||||
next if ($parameter_badmailfrom eq "type");
|
||||
if ($value_badmailfrom eq "Black") {
|
||||
$wdb->get_prop_and_delete('badmailfrom', "$parameter_badmailfrom");
|
||||
}
|
||||
}
|
||||
|
||||
my $BadMailFrom = $c->param("Badmailfrom");
|
||||
$BadMailFrom =~ s/\r\n/,/g;
|
||||
my @BadMailFrom = sort(split /,/, $BadMailFrom);
|
||||
foreach $BadMailFrom (@BadMailFrom){
|
||||
$wdb->set_prop('badmailfrom', "$BadMailFrom", 'Black');
|
||||
}
|
||||
#-------------------------------
|
||||
# spamassassin blacklist_from
|
||||
#-------------------------------
|
||||
my %list_wblglobal = $sdb->get('wbl.global')->props;
|
||||
my ($parameter_wblglobal, $value_wblglobal) = "";
|
||||
|
||||
while (($parameter_wblglobal,$value_wblglobal) = each(%list_wblglobal)) {
|
||||
next if ($parameter_wblglobal eq "type");
|
||||
if ($value_wblglobal eq "Black") {
|
||||
$sdb->get_prop_and_delete('wbl.global', "$parameter_wblglobal");
|
||||
}
|
||||
}
|
||||
|
||||
my $BlacklistFrom = $c->param("Blacklistfrom");
|
||||
$BlacklistFrom =~ s/\r\n/,/g;
|
||||
my @BlacklistFrom = sort(split /,/, $BlacklistFrom);
|
||||
foreach $BlacklistFrom (@BlacklistFrom){
|
||||
$sdb->set_prop('wbl.global', "$BlacklistFrom", 'Black');
|
||||
}
|
||||
|
||||
#Update email settings
|
||||
unless ( system ("/sbin/e-smith/signal-event", "wbl-update") == 0 ) {
|
||||
return 'BLACK: '. $c->l('wbl_ERROR_UPDATING');
|
||||
}
|
||||
|
||||
return 'OK';
|
||||
}
|
||||
|
||||
|
||||
sub create_modify_white {
|
||||
|
||||
my $c = shift;
|
||||
|
||||
#-------------------------------
|
||||
# qpsmtpd whitelisthosts
|
||||
#-------------------------------
|
||||
my %list = $wdb->get('whitelisthosts')->props;
|
||||
my $parameter = "";
|
||||
my $value = "";
|
||||
while (($parameter,$value) = each(%list)) {
|
||||
if ($parameter eq "type") {next;}
|
||||
|
||||
if ($value eq "White") {
|
||||
$wdb->get_prop_and_delete('whitelisthosts', "$parameter");
|
||||
}
|
||||
}
|
||||
|
||||
my $WhitelistHosts = $c->param("Whitelisthosts");
|
||||
$WhitelistHosts =~ s/\r\n/,/g;
|
||||
my @WhitelistHosts = sort(split /,/, $WhitelistHosts);
|
||||
foreach $WhitelistHosts (@WhitelistHosts)
|
||||
{
|
||||
$wdb->set_prop('whitelisthosts', "$WhitelistHosts", 'White');
|
||||
}
|
||||
|
||||
#-------------------------------
|
||||
# qpsmtpd whitelisthelo
|
||||
#-------------------------------
|
||||
my %list_whitelisthelo = $wdb->get('whitelisthelo')->props;
|
||||
my $parameter_whitelisthelo = "";
|
||||
my $value_whitelisthelo = "";
|
||||
while (($parameter_whitelisthelo,$value_whitelisthelo) = each(%list_whitelisthelo)) {
|
||||
if ($parameter_whitelisthelo eq "type") {next;}
|
||||
|
||||
if ($value_whitelisthelo eq "White") {
|
||||
$wdb->get_prop_and_delete('whitelisthelo', "$parameter_whitelisthelo");
|
||||
}
|
||||
}
|
||||
|
||||
my $WhitelistHelo = $c->param("Whitelisthelo");
|
||||
$WhitelistHelo =~ s/\r\n/,/g;
|
||||
my @WhitelistHelo = sort(split /,/, $WhitelistHelo);
|
||||
foreach $WhitelistHelo (@WhitelistHelo)
|
||||
{
|
||||
$wdb->set_prop('whitelisthelo', "$WhitelistHelo", 'White');
|
||||
}
|
||||
|
||||
#-------------------------------
|
||||
# qpsmtpd whitelistsenders
|
||||
#-------------------------------
|
||||
my %list_whitelistsenders = $wdb->get('whitelistsenders')->props;
|
||||
my $parameter_whitelistsenders = "";
|
||||
my $value_whitelistsenders = "";
|
||||
while (($parameter_whitelistsenders,$value_whitelistsenders) = each(%list_whitelistsenders)) {
|
||||
if ($parameter_whitelistsenders eq "type") {next;}
|
||||
|
||||
if ($value_whitelistsenders eq "White") {
|
||||
$wdb->get_prop_and_delete('whitelistsenders', "$parameter_whitelistsenders");
|
||||
}
|
||||
}
|
||||
|
||||
my $WhitelistSenders = $c->param("Whitelistsenders");
|
||||
$WhitelistSenders =~ s/\r\n/,/g;
|
||||
my @WhitelistSenders = sort(split /,/, $WhitelistSenders);
|
||||
foreach $WhitelistSenders (@WhitelistSenders)
|
||||
{
|
||||
$wdb->set_prop('whitelistsenders', "$WhitelistSenders", 'White');
|
||||
}
|
||||
|
||||
#-------------------------------
|
||||
# spamassassin whitelist_from
|
||||
#-------------------------------
|
||||
my %list_wblglobal = $sdb->get('wbl.global')->props;
|
||||
my $parameter_wblglobal = "";
|
||||
my $value_wblglobal = "";
|
||||
while (($parameter_wblglobal,$value_wblglobal) = each(%list_wblglobal)) {
|
||||
if ($parameter_wblglobal eq "type") {next;}
|
||||
|
||||
if ($value_wblglobal eq "White") {
|
||||
$sdb->get_prop_and_delete('wbl.global', "$parameter_wblglobal");
|
||||
}
|
||||
}
|
||||
|
||||
my $WhitelistFrom = $c->param("Whitelistfrom");
|
||||
$WhitelistFrom =~ s/\r\n/,/g;
|
||||
my @WhitelistFrom = sort(split /,/, $WhitelistFrom);
|
||||
foreach $WhitelistFrom (@WhitelistFrom){
|
||||
$sdb->set_prop('wbl.global', "$WhitelistFrom", 'White');
|
||||
}
|
||||
|
||||
#Update email settings
|
||||
unless ( system ("/sbin/e-smith/signal-event", "wbl-update") == 0 ) {
|
||||
return 'WHITE: '. $c->l('wbl_ERROR_UPDATING');
|
||||
}
|
||||
|
||||
return 'OK';
|
||||
}
|
||||
|
||||
|
||||
1;
|
||||
|
@ -0,0 +1,42 @@
|
||||
'wbl_SAVE' => 'Save',
|
||||
'wbl_PERFORM' => 'Perform',
|
||||
'wbl_FORM_TITLE' => 'E-mail WBL',
|
||||
'wbl_OPERATION_STATUS_REPORT' => 'Operation status report',
|
||||
'wbl_WBL_DESCRIPTION' => 'E-mail traffic is scanned and may be blocked due to the various screening methods enabled.
|
||||
You may use this panel to define e-mail white/black lists.',
|
||||
'wbl_RBL_LIST_DESCRIPTION' => 'RBL\'s List is used to adjust DNSBL and RHSBL.',
|
||||
'wbl_RBL_LIST' => 'RBL\'s List',
|
||||
'wbl_BLACK_LIST_DESCRIPTION' => 'Black lists are used for rejecting e-mail traffic.',
|
||||
'wbl_BLACK_LIST' => 'Black List',
|
||||
'wbl_WHITE_LIST_DESCRIPTION' => 'White lists are used for accepting e-mail traffic.',
|
||||
'wbl_WHITE_LIST' => 'White List',
|
||||
'wbl_BLACK_TITLE' => 'This server includes built-in support for using the admin defined black lists, badhelo and
|
||||
badmailfrom.',
|
||||
'wbl_DNSBL_DESCRIPTION' => 'DNSBL is an abbreviation for "DNS blacklist".',
|
||||
'wbl_DNSBL_LABEL' => 'DNSBL status',
|
||||
'wbl_RHSBL_DESCRIPTION' => 'RHSBL is an abbreviation for "Right Hand Side Blacklist". ',
|
||||
'wbl_RHSBL_LABEL' => 'RHSBL status',
|
||||
'wbl_BADHELO_DESCRIPTION' => 'Check a HELO message delivered from a connecting host.Reject any
|
||||
that appear in badhelo during the \'helo\' stage.',
|
||||
'wbl_BADHELO_LABEL' => 'qpsmtpd badhelo',
|
||||
'wbl_BADMAILFROM_DESCRIPTION' => 'Check envelope sender addresses. Reject any
|
||||
that appear (@host or user@host) in badmailfrom during the \'mail\' stage.',
|
||||
'wbl_BADMAILFROM_LABEL' => 'qmail badmailfrom',
|
||||
'wbl_WHITE_TITLE' => 'Use this panel to modify your servers White List settings. All entries will be enabled by default',
|
||||
'wbl_RRFH_LABEL' => 'Whitelists status',
|
||||
'wbl_WHITELISTHOSTS_DESCRIPTION' => 'Any IP address listed in whitelisthosts will be exempted
|
||||
from any further validation during the \'connect\' stage.',
|
||||
'wbl_WHITELISTHOSTS_LABEL' => 'qpsmtpd whitelisthosts',
|
||||
'wbl_WHITELISTHELO_DESCRIPTION' => 'be exempted from further validation during the \'helo\' stage.',
|
||||
'wbl_WHITELISTHELO_LABEL' => 'qpsmtpd whitelisthelo',
|
||||
'wbl_WHITELISTSENDERS_DESCRIPTION' => 'will be exempted from further validation during the \'mail\' stage.',
|
||||
'wbl_WHITELISTSENDERS_LABEL' => 'qpsmtpd whitelistsenders',
|
||||
'wbl_WHITELISTFROM_DESCRIPTION' => 'will be exempted from spamassassin rejection.',
|
||||
'wbl_WHITELISTFROM_LABEL' => 'spamassassin whitelist_from',
|
||||
'wbl_BLACKLISTFROM_LABEL' => 'spamassassin blacklist_from',
|
||||
'wbl_BLACKLISTFROM_DESCRIPTION' => 'will be rejected by spamassassin.',
|
||||
'wbl_SBLLIST_LABEL' => 'RHSBL (qpsmtpd SBLList)',
|
||||
'wbl_SBLLIST_DESCRIPTION' => 'RHS block list - \'right hand side\' of senders host/domain will be checked against the following servers',
|
||||
'wbl_RBLLIST_LABEL' => 'DNSBL Zones (qpsmtpd RBLList)',
|
||||
'wbl_RBLLIST_DESCRIPTION' => 'DNS Block List - senders IP address will be checked against the following servers',
|
||||
'wbl_RBL_TITLE' => 'Real-time Blackhole Lists are disabled by default. To help reduce spam you can enable RBLs here.',
|
@ -0,0 +1,37 @@
|
||||
'wbl_SAVE' => 'Sauvegarder',
|
||||
'wbl_PERFORM' => 'Exécuter',
|
||||
'wbl_FORM_TITLE' => 'WBL courriel',
|
||||
'wbl_OPERATION_STATUS_REPORT' => 'Rapport d\'état de l\'opération',
|
||||
'wbl_WBL_DESCRIPTION' => 'Le trafic courriel est scanné et peut être bloqué en raison des différentes méthodes de dépistage activées. Vous pouvez utiliser ce panneau pour définir les listes blanches / noires de courriels.',
|
||||
'wbl_RBL_LIST_DESCRIPTION' => 'La liste RBL est utilisée pour ajuster DNSBL et RHSBL.',
|
||||
'wbl_RBL_LIST' => 'Liste RBL',
|
||||
'wbl_BLACK_LIST_DESCRIPTION' => 'Les listes noires sont utilisées pour refuser le trafic de courriels.',
|
||||
'wbl_BLACK_LIST' => 'Liste noire',
|
||||
'wbl_WHITE_LIST_DESCRIPTION' => 'Les listes blanches sont utilisées pour accepter le trafic de courriels.',
|
||||
'wbl_WHITE_LIST' => 'Liste blanche',
|
||||
'wbl_BLACK_TITLE' => 'Ce serveur inclus un support intégré permettant à l\'administrateur de définir des listes noires, badhelo et badmailfrom.',
|
||||
'wbl_DNSBL_DESCRIPTION' => 'DNSBL est une abréviation Anglaise pour "Liste noire DNS".',
|
||||
'wbl_DNSBL_LABEL' => 'Statut DNSBL',
|
||||
'wbl_RHSBL_DESCRIPTION' => 'RHSBL est une abréviation pour "Right Hand Side Blacklist".',
|
||||
'wbl_RHSBL_LABEL' => 'Rapport d\'état de RHSBL',
|
||||
'wbl_BADHELO_DESCRIPTION' => 'Vérifie un message HELO livré par un hôte se connectant. Ceci refuse tout ceux qui apparaissent dans badhelo au moment de la phase \'helo\'.',
|
||||
'wbl_BADHELO_LABEL' => 'qpsmtpd badhelo',
|
||||
'wbl_BADMAILFROM_DESCRIPTION' => 'Vérifie l\'adresse de l\'expéditeur. Refuse tout ce qui apparaît (@hôte ou utilisateur@hôte) dans\'badmailfrom\' pendant la phase \'mail\'',
|
||||
'wbl_BADMAILFROM_LABEL' => 'qmail \'badmailfrom\'',
|
||||
'wbl_WHITE_TITLE' => 'Utilisez cette page pour modifier les paramètres de liste blanche de de votre serveur. Toutes les entrées seront activées par default',
|
||||
'wbl_RRFH_LABEL' => 'État des listes blanches',
|
||||
'wbl_WHITELISTHOSTS_DESCRIPTION' => 'Toute IP présente dans whitelisthosts sera exemptée de toutes validations supplémentaires pendant la phase \'connexion\'',
|
||||
'wbl_WHITELISTHOSTS_LABEL' => 'Qpsmtpd whitelisthosts',
|
||||
'wbl_WHITELISTHELO_DESCRIPTION' => 'Tout hôte qui émet un HELO correspondant à une entrée dans whitelisthelo sera exempté de toute autre validation pendant la phase \'helo\'',
|
||||
'wbl_WHITELISTHELO_LABEL' => 'qpsmtpd whitelisthelo',
|
||||
'wbl_WHITELISTSENDERS_DESCRIPTION' => 'Tout expéditeur d\'un courriel (hôte.domaine ou utilisateur@hôte.domaine) correspondant à une entrée dans la liste blanche des expéditeurs (whitelistsenders) sera exempté de toutes validations supplémentaires durant la phase \'mail\'.',
|
||||
'wbl_WHITELISTSENDERS_LABEL' => 'qpsmtpd whitelistsenders',
|
||||
'wbl_WHITELISTFROM_DESCRIPTION' => 'Tout expéditeur d\'un courriel (*@hôte ou utilisateur@hôte) correspondant à une entrée dans whitelist_from sera exempté d\'un rejet par spamassassin.',
|
||||
'wbl_WHITELISTFROM_LABEL' => 'spamassassin whitelist_from',
|
||||
'wbl_BLACKLISTFROM_LABEL' => 'spamassassin blacklist_from',
|
||||
'wbl_BLACKLISTFROM_DESCRIPTION' => 'Tout expéditeur d\'un courriel (*@hôte ou utilisateur@hôte) correspondant à une entrée dans blacklist_from sera rejeté par spamassassin.',
|
||||
'wbl_SBLLIST_LABEL' => 'RHSBL (qpsmtpd SBLList)',
|
||||
'wbl_SBLLIST_DESCRIPTION' => 'Liste de blocage RHS - (Right Hand Side) des expéditeurs hôte / domaine sera vérifié contre les serveurs suivants',
|
||||
'wbl_RBLLIST_LABEL' => 'DNSBL Zones (qpsmtpd RBLList)',
|
||||
'wbl_RBLLIST_DESCRIPTION' => 'Liste de bloquage DNS -L\'adresse IP des expéditeurs sera vérifiée à partir des serveurs suivants.',
|
||||
'wbl_RBL_TITLE' => 'Les listes noires en temps réel sont désactivés par défaut. Pour aider à réduire le spam vous pouvez activer les RBLs ici.',
|
@ -0,0 +1,50 @@
|
||||
<div>
|
||||
% my $btn = l 'SAVE';
|
||||
%= form_for '/wbl2' => (method => 'POST') => begin
|
||||
|
||||
%= hidden_field 'trt' => $wbl_datas->{trt}
|
||||
|
||||
<h3>
|
||||
%=l 'wbl_BLACK_LIST_DESCRIPTION'
|
||||
</h3>
|
||||
%=l 'wbl_BLACK_TITLE'
|
||||
|
||||
<p>
|
||||
%=l 'wbl_BADHELO_DESCRIPTION'
|
||||
<br><br><span class=label>
|
||||
%=l 'wbl_BADHELO_LABEL'
|
||||
</span><span class=data2>
|
||||
%= text_area 'Badhelo' => (cols => 40) => begin
|
||||
% for (@{ $c->get_badhelo() }) {
|
||||
%= $_
|
||||
%}
|
||||
%end
|
||||
</span></p><br>
|
||||
|
||||
<p>
|
||||
%=l 'wbl_BADMAILFROM_DESCRIPTION'
|
||||
<br><br><span class=label>
|
||||
%=l 'wbl_BADMAILFROM_LABEL'
|
||||
</span><span class=data2>
|
||||
%= text_area 'Badmailfrom' => (cols => 40) => begin
|
||||
% for (@{ $c->get_badmailfrom() }) {
|
||||
%= $_
|
||||
% }
|
||||
%end
|
||||
</span></p><br>
|
||||
|
||||
<p>
|
||||
%=l 'wbl_BLACKLISTFROM_DESCRIPTION'
|
||||
<br><br><span class=label>
|
||||
%=l 'wbl_BLACKLISTFROM_LABEL'
|
||||
</span><span class=data2>
|
||||
%= text_area 'Blacklistfrom' => (cols => 40) => begin
|
||||
% for (@{ $c->get_blacklistfrom() }) {
|
||||
%= $_
|
||||
% }
|
||||
%end
|
||||
</span></p><br>
|
||||
|
||||
%= submit_button "$btn", class => 'action'
|
||||
%end
|
||||
</div>
|
@ -0,0 +1,24 @@
|
||||
<div id='wbl_choice'>
|
||||
|
||||
% my $btn = l 'NEXT';
|
||||
%= form_for '/wbl' => (method => 'POST') => begin
|
||||
<p><span class=label>
|
||||
%=l 'wbl_RBL_LIST_DESCRIPTION'
|
||||
</span><br>
|
||||
|
||||
<span class=label>
|
||||
%=l 'wbl_BLACK_LIST_DESCRIPTION'
|
||||
</span><span class=data>
|
||||
% param 'list' => $wbl_datas->{list} unless param 'list';
|
||||
%= select_field 'list' => $c->get_wbllist(), class => 'input'
|
||||
</span><br>
|
||||
|
||||
<span class=label>
|
||||
%=l 'wbl_WHITE_LIST_DESCRIPTION'
|
||||
</span></p>
|
||||
|
||||
<p><br>
|
||||
%= submit_button "$btn", class => 'action'
|
||||
</p>
|
||||
%end
|
||||
</div>
|
@ -0,0 +1,62 @@
|
||||
<div>
|
||||
|
||||
% my $btn = l 'SAVE';
|
||||
%= form_for '/wbl2' => (method => 'POST') => begin
|
||||
|
||||
%= hidden_field 'trt' => $wbl_datas->{trt}
|
||||
|
||||
<!-- # For URLList List
|
||||
# my @ubllist = get_ubllist();
|
||||
# $c->stash( ubllist => \@ubllist ); -->
|
||||
|
||||
<h3>
|
||||
%=l 'wbl_RBL_LIST_DESCRIPTION'
|
||||
</h3><br>
|
||||
%=l 'wbl_RBL_TITLE'
|
||||
|
||||
<p>
|
||||
%=l 'wbl_DNSBL_DESCRIPTION'
|
||||
<br><span class=label>
|
||||
%=l 'wbl_DNSBL_LABEL'
|
||||
</span><span class=data2>
|
||||
% param 'Dnsbl' => $wbl_datas->{dnsbl} unless param 'Dnsbl';
|
||||
%= select_field 'Dnsbl' => [[(l 'ENABLED') => 'enabled'], [(l 'DISABLED') => 'disabled']], class => 'input'
|
||||
</span></p>
|
||||
|
||||
<p>
|
||||
%=l 'wbl_RBLLIST_DESCRIPTION'
|
||||
<br><br><span class=label>
|
||||
%=l 'wbl_RBLLIST_LABEL'
|
||||
</span><span class=data2>
|
||||
%= text_area 'Rbllist' => (cols => 40) => begin
|
||||
% for ( @{$c->get_rbllist()} ) {
|
||||
%= $_
|
||||
%}
|
||||
%end
|
||||
</span></p><br>
|
||||
|
||||
<p>
|
||||
%=l 'wbl_RHSBL_DESCRIPTION'
|
||||
<br><span class=label>
|
||||
%=l 'wbl_RHSBL_LABEL'
|
||||
</span><span class=data2>
|
||||
% param 'Rhsbl' => $wbl_datas->{rhsbl} unless param 'Rhsbl';
|
||||
%= select_field 'Rhsbl' => [[(l 'ENABLED') => 'enabled'], [(l 'DISABLED') => 'disabled']], class => 'input'
|
||||
</span></p>
|
||||
|
||||
<p>
|
||||
%=l 'wbl_SBLLIST_DESCRIPTION'
|
||||
<br><br><span class=label>
|
||||
%=l 'wbl_SBLLIST_LABEL'
|
||||
</span><span class=data2>
|
||||
%= text_area 'Sbllist' => (cols => 40) => begin
|
||||
% for ( @{$c->get_sbllist()} ) {
|
||||
%= $_
|
||||
% }
|
||||
%end
|
||||
</span></p><br>
|
||||
|
||||
%= submit_button "$btn", class => 'action'
|
||||
%end
|
||||
|
||||
</div>
|
@ -0,0 +1,65 @@
|
||||
<div>
|
||||
% my $btn = l 'SAVE';
|
||||
%= form_for '/wbl2' => (method => 'POST') => begin
|
||||
|
||||
%= hidden_field 'trt' => $wbl_datas->{trt}
|
||||
|
||||
<h3>
|
||||
%=l 'wbl_WHITE_LIST_DESCRIPTION'
|
||||
</h3>
|
||||
%=l 'wbl_WHITE_TITLE'
|
||||
|
||||
<p>
|
||||
%=l 'wbl_WHITELISTHOSTS_DESCRIPTION'
|
||||
<br><br><span class=label>
|
||||
%=l 'wbl_WHITELISTHOSTS_LABEL'
|
||||
</span><span class=data2>
|
||||
%= text_area 'Whitelisthosts' => (cols => 40) => begin
|
||||
% for (@{ $c->get_whitelisthosts() }) {
|
||||
%= $_
|
||||
%}
|
||||
%end
|
||||
</span></p><br>
|
||||
|
||||
<p>
|
||||
%=l 'wbl_WHITELISTHELO_DESCRIPTION'
|
||||
<br><br><span class=label>
|
||||
%=l 'wbl_WHITELISTHELO_LABEL'
|
||||
</span><span class=data2>
|
||||
%= text_area 'Whitelisthelo' => (cols => 40) => begin
|
||||
% for (@{ $c->get_whitelisthelo() }) {
|
||||
%= $_
|
||||
% }
|
||||
%end
|
||||
</span></p><br>
|
||||
|
||||
<p>
|
||||
%=l 'wbl_WHITELISTSENDERS_DESCRIPTION'
|
||||
<br><br><span class=label>
|
||||
%=l 'wbl_WHITELISTSENDERS_LABEL'
|
||||
</span><span class=data2>
|
||||
%= text_area 'Whitelistsenders' => (cols => 40) => begin
|
||||
% for (@{ $c->get_whitelistsenders() }) {
|
||||
%= $_
|
||||
% }
|
||||
%end
|
||||
</span>
|
||||
</p>
|
||||
<br>
|
||||
<p>
|
||||
%=l 'wbl_WHITELISTFROM_DESCRIPTION'
|
||||
<br><br>
|
||||
<span class=label>
|
||||
%=l 'wbl_WHITELISTFROM_LABEL'
|
||||
</span><span class=data2>
|
||||
%= text_area 'Whitelistfrom' => (cols => 40) => begin
|
||||
% for (@{ $c->get_whitelistfrom() }) {
|
||||
%= $_
|
||||
% }
|
||||
%end
|
||||
</span>
|
||||
</p>
|
||||
<br>
|
||||
%= submit_button "$btn", class => 'action'
|
||||
%end
|
||||
</div>
|
33
root/usr/share/smanager/themes/default/templates/wbl.html.ep
Normal file
33
root/usr/share/smanager/themes/default/templates/wbl.html.ep
Normal file
@ -0,0 +1,33 @@
|
||||
% layout 'default', title => "Sme server 2 - wbl", share_dir => '';
|
||||
|
||||
% content_for 'module' => begin
|
||||
|
||||
|
||||
<div id="module" class="module wbl-panel">
|
||||
|
||||
%if ($config->{debug} == 1) {
|
||||
<p>
|
||||
%= dumper $c->current_route
|
||||
%= dumper $wbl_datas
|
||||
</p>
|
||||
%}
|
||||
|
||||
<h1><%= $title %></h1>
|
||||
|
||||
<br>
|
||||
%= l('wbl_WBL_DESCRIPTION')
|
||||
<br>
|
||||
|
||||
% if ($wbl_datas->{trt} eq 'RBL') {
|
||||
%= include 'partials/_wbl_rbl'
|
||||
%} elsif ($wbl_datas->{trt} eq 'BLACK') {
|
||||
%= include 'partials/_wbl_black'
|
||||
%} elsif ($wbl_datas->{trt} eq 'WHITE') {
|
||||
%= include 'partials/_wbl_white'
|
||||
%} else {
|
||||
%= include 'partials/_wbl_choice'
|
||||
%}
|
||||
|
||||
</div>
|
||||
%end
|
||||
|
89
smeserver-wbl.spec
Normal file
89
smeserver-wbl.spec
Normal file
@ -0,0 +1,89 @@
|
||||
Summary: E-mail white/black lists for SME Server
|
||||
%define name smeserver-wbl
|
||||
Name: %{name}
|
||||
%define version 0.5.0
|
||||
%define release 10
|
||||
Version: %{version}
|
||||
Release: %{release}%{?dist}
|
||||
License: GPL
|
||||
Group: SME Server/addon
|
||||
Source: %{name}-%{version}.tar.xz
|
||||
|
||||
BuildRoot: /var/tmp/%{name}-%{version}
|
||||
BuildArchitectures: noarch
|
||||
BuildRequires: e-smith-devtools
|
||||
#Requires: smeserver-manager => 0.1.0-23
|
||||
Requires: smeserver-release => 10.0
|
||||
Requires: qpsmtpd >= 0.96-19
|
||||
AutoReqProv: no
|
||||
#Patch0: smeserver-wbl-0.5.0-init.patch
|
||||
|
||||
%description
|
||||
%name is an addon for SME Server that provides the following WBLs:
|
||||
qpsmtpd check_badmailfrom /var/qmail/control/badmailfrom
|
||||
qpsmtpd check_spamhelo /var/service/qpsmtpd/config/badhelo
|
||||
qpsmtpd whitelist_soft /var/service/qpsmtpd/config/whitelisthosts whitelisthelo whitelistsenders
|
||||
spamassassin /etc/mail/spammassassin/local.cf whitelist_from
|
||||
|
||||
%changelog
|
||||
* Sat Sep 07 2024 cvs2git.sh aka Brian Read <brianr@koozali.org> 0.5.0-10.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 Mar 01 2024 Brian Read <brianr@koozali.org> 0.5.0-9.sme
|
||||
- Edit Menu entry to conform to new arrangements [SME: 12493]
|
||||
|
||||
* Sun Feb 25 2024 Jean-Philippe Pialasse <tests@pialasse.com> 0.5.0-8.sme
|
||||
- reload qpsmtpd config on panel update [SME: 12490]
|
||||
- apply smeserver-wbl-0.5.0-locale-2024-02-25
|
||||
|
||||
* Sun Apr 17 2022 Jean-Philippe Pialasse <tests@pialasse.com> 0.5.0-7.sme
|
||||
- fix multiple rpm owned files [SME: 11678]
|
||||
- fix long update time [SME: 11955]
|
||||
|
||||
* Wed Jan 05 2022 Brian Read <brianr@bjsystems.co.uk> 0.5.0-6.sme
|
||||
- Add in class def in overall div in ep file [SME: 11828]
|
||||
|
||||
* Wed Sep 08 2021 Terry Fage <tfage@yahoo.com.au> 0.5.0-5.sme
|
||||
- fix reference update in server manager [SME: 11687]
|
||||
|
||||
* Wed Aug 25 2021 Terry Fage <tfage@yahoo.com.au> 0.5.0-4.sme
|
||||
- apply locale 2021-08-25 patch
|
||||
|
||||
* Mon Mar 15 2021 Jean-Philippe Pialasse <tests@pialasse.com> 0.5.0-3.sme
|
||||
- fix reference to spamd and panel link [SME: 10948]
|
||||
|
||||
* Sat Nov 28 2020 Michel Begue <mab974@gmail.com> 0.5.0-02.sme
|
||||
- Back to compatibility with e-smith-manager [SME: 10948]
|
||||
|
||||
* Mon Jun 08 2020 Michel Begue <mab974@gmail.com> 0.5.0-01.sme
|
||||
- initial release for smeserver-manager (sme10)
|
||||
- [0.3.0-19.sme9]
|
||||
|
||||
%prep
|
||||
%setup
|
||||
|
||||
%build
|
||||
perl createlinks
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
(cd root ; find . -depth -print | cpio -dump $RPM_BUILD_ROOT)
|
||||
/sbin/e-smith/genfilelist $RPM_BUILD_ROOT > %{name}-%{version}-filelist
|
||||
echo "%doc " >> %{name}-%{version}-filelist
|
||||
|
||||
%post
|
||||
if (systemctl list-unit-files |grep smanager) then
|
||||
echo "Smanager restart in spec file"
|
||||
/sbin/e-smith/signal-event smanager-refresh;
|
||||
fi
|
||||
|
||||
%clean
|
||||
cd ..
|
||||
rm -rf %{name}-%{version}
|
||||
|
||||
%files -f %{name}-%{version}-filelist
|
||||
%defattr(-,root,root)
|
Loading…
Reference in New Issue
Block a user