add check config buton to edit_global

This commit is contained in:
Kay Marquardt (Gnadelwartz)
2017-06-10 00:31:40 +02:00
parent 019b0f0625
commit 375436621e
21 changed files with 62 additions and 64 deletions

View File

@@ -191,7 +191,7 @@ month_8=August 
month_9=September 
no=Nein
ok=OK
fail=Failed
fail=Problem
pam_header=Anmelden an Webmin
pam_login=Fortsetzen
pam_mesg=Sie müssen auf die Frage unten antworten um sich am Webmin-Server $1 anmelden zu können.

View File

@@ -9,11 +9,11 @@ use Fcntl ':mode';
$conf = &get_config();
eval { require "$config{'program_dir'}/majordomo_version.pl"; };
&ui_print_header(undef, $text{'check_title'}, "", undef, 1, 1, 0,
&ui_print_header(undef, $text{'check_title'}, "", undef, 1, 0, 0,
&mdom_help(),
undef, undef, &text('index_version', $majordomo_version));
&check_mdom_config($conf);
#&check_mdom_config($conf);
$aliases_files = &get_aliases_file();
$email = &find_value("whoami", $conf); $email =~ s/\@.*$//g;
@@ -23,6 +23,7 @@ $owner = &find_value("whoami_owner", $conf); $owner =~ s/\@.*$//g;
local $cdiv='<div style="margin-left: 20%;">', $ediv='</div>';
local $ok="<div style=\"padding: .3em;\"><font color=\"green\">".&text('ok')."</font></div>";
local $fail="<div style=\"padding: .3em;\"><font color=\"red\">".&text('fail')."</font></div>";
local $possible="<div style=\"padding: .3em;\"><font color=\"orange\">".&text('check_possible')."</font></div>";
local $res=$ok, $tocheck, $sec;
# init / start table
@@ -53,13 +54,13 @@ if ( $res eq $ok) {
"$gconfig{'webprefix'}/config.cgi?$module_name"); }
print &ui_columns_row(["<b>&nbsp; Majordomo programm dir</b>", $tocheck, $res] , \@tds);
if ($res eq $ok) {
$res="$cdiv $ok $edviv";
$sec=$cdiv.&text('check_perm').$ediv;
$res=$ok;
$sec=$cdiv.&text('check_perm').":";
$tocheck=$config{'program_dir'};
if (((stat($tocheck)) [2] & S_IXOTH) != 0) { $res=$fail; $sec .= ": world executable!"; }
if (((stat($tocheck)) [2] & S_IROTH) != 0) { $res=$fail; $sec .= ": world readable!"; }
if (((stat($tocheck)) [2] & S_IWOTH) != 0) { $res=$fail; $sec .= ": world writeable!"; }
print &ui_columns_row(["", $sec, $res] , \@tds);
if (((stat($tocheck)) [2] & S_IXOTH) != 0) { $res=$fail; $sec .= " ".&text('check_exec'); }
if (((stat($tocheck)) [2] & S_IROTH) != 0) { $res=$fail; $sec .= " ".&text('check_read'); }
if (((stat($tocheck)) [2] & S_IWOTH) != 0) { $res=$fail; $sec .= " ".&text('check_write'); }
print &ui_columns_row(["", $sec.$ediv, $res] , \@tds);
$res=$ok;
$tocheck=$majordomo_version;
if ($tocheck eq "" || $tocheck < 1.94 || $tocheck >= 2) { $res=$fail; $tocheck .= ": ".$text{'index_eversion'}; }
@@ -68,28 +69,29 @@ if ( $res eq $ok) {
# Check home / list / archive dir from majordomo.cf
$res=$ok;
local $home=&find_value("homedir", $conf);
local $home=&find_value("homedir2", $conf);
$tocheck=$home;
if (!&homedir_valid($conf)) { $res=$fail; $tocheck = &text('index_ehomedir', "<tt>$home</tt>"); }
print &ui_columns_row(["<b>&nbsp; Majordomo HOME dir</b>", $tocheck, $res] , \@tds);
$res="$cdiv $ok $edviv";
$sec=$cdiv.&text('check_perm').$ediv;
$tocheck=$home;
if (((stat($tocheck)) [2] & S_IXOTH) != 0) { $res=$fail; $sec .= ": world executable!"; }
if (((stat($tocheck)) [2] & S_IROTH) != 0) { $res=$fail; $sec .= ": world readable!"; }
if (((stat($tocheck)) [2] & S_IWOTH) != 0) { $res=$fail; $sec .= ": world writeable!"; }
print &ui_columns_row(["", $sec, $res] , \@tds);
if (! -d $tocheck) { $res=$fail; $tocheck = &text('index_emdomdir', '$homedir2', $home); }
print &ui_columns_row(["<b>&nbsp; Majordomo HOME2 dir</b>", $tocheck, $res] , \@tds);
if ($res eq $ok) {
$res=$ok;
$sec=$cdiv.&text('check_perm').":";
$tocheck=$home;
if (((stat($tocheck)) [2] & S_IXOTH) != 0) { $res=$possible; $sec .= " ".&text('check_exec'); }
if (((stat($tocheck)) [2] & S_IROTH) != 0) { $res=$possible; $sec .= " ".&text('check_read'); }
if (((stat($tocheck)) [2] & S_IWOTH) != 0) { $res=$possible; $sec .= " ".&text('check_write'); }
print &ui_columns_row(["", $sec.$ediv, $res] , \@tds);
}
$res=$ok;
$tocheck = &perl_var_replace(&find_value("listdir", $conf), $conf);
if (!-d $tocheck) { $res=$fail; $tocheck = &text('index_elistdir', '$listdir', $tocheck); }
if (!-d $tocheck) { $res=$fail; $tocheck = &text('index_emdomdir', '$listdir', $tocheck); }
print &ui_columns_row(["<b>&nbsp; Majordomo LIST directory</b>", $tocheck, $res] , \@tds);
$res=$ok;
$tocheck = &perl_var_replace(&find_value("filedir", $conf), $conf);
if (!-d $tocheck) { $res=$fail; $tocheck = &text('index_elistdir', '$filedir', $tocheck); }
if (!-d $tocheck) { $res=$fail; $tocheck = &text('index_emdomdir', '$filedir', $tocheck); }
print &ui_columns_row(["<b>&nbsp; Majordomo ARCHIVE directory</b>", $tocheck, $res] , \@tds);
}
print &ui_columns_end();
&ui_print_footer("/", $text{'index'});
irint&ui_columns_row(\@cols, \@tds);
&ui_print_footer("index.cgi", $text{'index'});

View File

@@ -44,7 +44,9 @@ print "</tr>\n";
print "<tr> <td colspan=4>$text{'access_taboo'}</td> </tr>\n";
print "</table></td></tr></table>\n";
print "<input type=submit value=\"$text{'save'}\"></form>\n";
print &ui_submit($text{'save'}),"</form>\n";
print "<form action=\"check_inst.cgi\" method=\"post\">",
&ui_submit($text{'check_title'})."</form>\n";
&ui_print_footer("", $text{'index_return'});

View File

@@ -3,8 +3,7 @@ index_econfig=El fitxer de configuraci
index_eprograms=El directori $1 del majordomo no existeix. Pot ser que la <a href='$2'>configuració del mòdul</a> sigui incorrecta, o bé que el majordomo no estigui instal·lat.
index_eversion=Aquesta versió del majordomo no està suportada per Webmin. Només estan suportades les versions 1.94 i posteriors.
index_eversion2=No s'ha trobat el fitxer $1 de versió de Majordomo al directori de programes $2. Pot ser que la <a href='$3'>configuració del mòdul</a> sigui incorrecta, o bé que majordomo no estigui instal·lat.
index_ehomedir=La variable <tt>$homedir</tt> del fitxer de configuració del majordomo està establerta a $1, que no existeix.
index_elistdir=La variable <tt>$listdir</tt> del fitxer de configuració del majordomo està establerta a $1, que no existeix.
index_emdomdir=La variable <tt>$1</tt> del fitxer de configuració del majordomo està establerta a $1, que no existeix.
index_esendmail2=Sendmail no està instal·lat al sistema o bé no està configurat adequadament. Comprova la configuració del <a href=$2>mòdul Sendmail</a>.
index_epostfix=O bé Postfix no està instal·lat al sistema, o bé no està adequadament configurat. Comprova la configuració del <a href='$1'>mòdul Postfix</a>.
index_esendmail3=El mòdul Sendmail de Webmin necessari per gestionar àlies no està instal·lat.

View File

@@ -2,8 +2,7 @@ index_title=Majordomo mana
index_econfig=Majordomo konfigurační soubor $1 neexistuje. Možná vaše <a href='$2'>konfigurace modulu</a> není správná, nebo majordomo není nainstalován.
index_eprograms=Majordomo adresář $1 neexistuje. Možná vaše <a href='$2'>konfigurace modulu</a> není správná, nebo majordomo není nainstalován.
index_eversion=Verze vašeho majordomunení Webminem podporována. Jsou podporovány pouze verze 1.94 a vyšší.
index_ehomedir=Proměnná <tt>$homedir</tt> v konfiguračním souboru vašeho majordomu je nastavena na $1, avšak tato hodnota není platná.
index_elistdir=Proměnná <tt>$listdir</tt> v konfiguračním souboru vašeho majordomu je nastavena na $1, avšak tato hodnota není platná.
index_emdomdir=Proměnná <tt>$1</tt> v konfiguračním souboru vašeho majordomu je nastavena na $1, avšak tato hodnota není platná.
index_esendmail=Konfigurační soubor Sendmailu $1 neexistuje. Zkontrolujte vaši konfiguraci <a href=/sendmail/>modulu Sendmailu</a>.
index_esendmailversion=Sendmail konfigurační soubor nevyhovuje posledním verzím Sendmailu. Webmin podporuje pouze verze 8.8 a vyšší.
index_setupdesc=Majordomo je ve vašem systému nainstalován, není však pravděpodobně správně nastaven v souburu Sendmail aliasů.

View File

@@ -116,8 +116,7 @@ index_add=Neue Mailingliste
index_count=# Teilnehmer
index_digest=Neue &#220;bersichtsliste
index_econfig=Die Majordomo-Konfigurationsdatei $1 gibt es nicht. Vielleicht ist Ihre <a href='$2'>Modulkonfiguration</a> falsch oder Majordomo ist nicht installiert.
index_ehomedir=Die <tt>$homedir</tt> Variable in Ihrer Majordomo-Konfigurationsdatei ist auf $1 eingestellt. Dieses existiert jedoch nicht.
index_elistdir=Die <tt>$1</tt> Variable in Ihrer Majordomo-Konfigurationsdatei ist auf $2 eingestellt. Dieses existiert jedoch nicht.
index_emdomdir=Die <tt>$1</tt> Variable in Ihrer Majordomo-Konfigurationsdatei ist auf $2 eingestellt. Dieses existiert jedoch nicht.
index_epostfix=Postfix ist entweder nicht installiert oder nicht richtig auf Ihrem System eingestellt. Pr&#252;fe die <a href='$1'>Postfix Modul</a> Konfiguration.
index_eprograms=Das Majordomo-Verzeichnis $1 gibt es nicht. Vielleicht ist Ihre <a href='$2'>Modulkonfiguration</a> falsch oder Majordomo ist nicht installiert.
index_esendmail2=Sendmail ist entweder nicht nicht installiert oder nicht richtig auf Ihrem System eingerichtet. Pr&#252;fen Sie bitte die <a href=$2>Modulkonfiguration</a>.
@@ -227,6 +226,10 @@ subs_uopen=Jeder kann sich selbst k&#252;ndigen
subs_welcome=Soll die einleitende Mitteilung versandt werden?
check_title=Testen der Majordomo Konfiguration
check_test=Test f&uumlr ...
check_result=Ergebis / weitere Tests
check_result=Ergebnis / weitere Tests
check_perm=Zugriffsrechte
check_status=Status
check_exec=f&uuml;r alle ausf&uuml;hrbar!
check_write=f&uuml;r alle schreibbar!
check_possible=Eventuelles Problem
check_read=f&uuml;r alle lesbar!

View File

@@ -116,8 +116,7 @@ index_add=Neue Mailingliste
index_count=# Teilnehmer
index_digest=Neue Übersichtsliste
index_econfig=Die Majordomo-Konfigurationsdatei $1 gibt es nicht. Vielleicht ist Ihre <a href='$2'>Modulkonfiguration</a> falsch oder Majordomo ist nicht installiert.
index_ehomedir=Die <tt>$homedir</tt> Variable in Ihrer Majordomo-Konfigurationsdatei ist auf $1 eingestellt. Dieses existiert jedoch nicht.
index_elistdir=Die <tt>$1</tt> Variable in Ihrer Majordomo-Konfigurationsdatei ist auf $2 eingestellt. Dieses existiert jedoch nicht.
index_emdomdir=Die <tt>$1</tt> Variable in Ihrer Majordomo-Konfigurationsdatei ist auf $2 eingestellt. Dieses existiert jedoch nicht.
index_epostfix=Postfix ist entweder nicht installiert oder nicht richtig auf Ihrem System eingestellt. Prüfe die <a href='$1'>Postfix Modul</a> Konfiguration.
index_eprograms=Das Majordomo-Verzeichnis $1 gibt es nicht. Vielleicht ist Ihre <a href='$2'>Modulkonfiguration</a> falsch oder Majordomo ist nicht installiert.
index_esendmail2=Sendmail ist entweder nicht nicht installiert oder nicht richtig auf Ihrem System eingerichtet. Prüfen Sie bitte die <a href=$2>Modulkonfiguration</a>.
@@ -228,6 +227,10 @@ subs_welcome=Soll die einleitende Mitteilung versandt werden?
check_title=Testen der Majordomo Konfiguration
check_test=Test f&uumlr ...
check_result=Ergebis / weitere Tests
check_result=Ergebnis / weitere Tests
check_status=Status
check_exec=f&uuml;r alle ausf&uuml;hrbar!
check_write=f&uuml;r alle schreibbar!
check_read=f&uuml;r alle lesbar!
check_possible=Eventuelles Problem
check_perm=Zugriffsrechte

View File

@@ -3,8 +3,7 @@ index_econfig=The majordomo config file $1 does not exist. Maybe your <a href='$
index_eprograms=The majordomo directory $1 does not exist. Maybe your <a href='$2'>module configuration</a> is incorrect, or majordomo is not installed.
index_eversion=Your majordomo version is not supported by Webmin. Only versions 1.94 and above are supported.
index_eversion2=The Majordomo version file $1 was not found under the programs directory $2. Maybe your <a href='$3'>module configuration</a> is incorrect, or majordomo is not installed.
index_ehomedir=The <tt>$homedir</tt> variable in your majordomo config file is set to $1, which does not exist.
index_elistdir=The <tt>$1</tt> variable in your majordomo config file is set to $2, which does not exist.
index_emdomdir=The <tt>$1</tt> variable in your majordomo config file is set to $2, which does not exist.
index_esendmail2=Sendmail is either not installed or not properly set up on your system. Check the <a href=$2>Sendmail module</a> configuration.
index_epostfix=Postfix is either not installed or not properly set up on your system. Check the <a href='$1'>Postfix module</a> configuration.
index_esendmail3=The Sendmail Webmin module needed to manage aliases is not installed.
@@ -247,4 +246,7 @@ check_test=Test for ...
check_result=Result / additional check
check_status=Status
check_perm=Permissions
check_exec=world executable!
check_write=world writeable!
check_read=world readable!
check_possible=Possible problem

View File

@@ -113,8 +113,7 @@ head_title=Cabeceras y Pies
index_add=A&#241;adir una nueva lista de correo
index_digest=A&#241;adir una nueva lista de resumen
index_econfig=El archivo de configuraci&#243;n de majordomo $1 no existe. Quiz&#225;s tu <a href='$2'>configuraci&#243;n del m&#243;dulo</a> sea incorrecta o majordomo no est&#225; instalado.
index_ehomedir=La variable <tt>$homedir</tt> de tu archivo de configuraci&#243;n de majordomo est&#225; configurada con el valor $1, el cual no existe.
index_elistdir=La variable <tt>$listdir</tt> de tu archivo de configuraci&#243;n de majordomo est&#225; configurada con el valor $1, el cual no existe.
index_emdomdir=La variable <tt>$1</tt> de tu archivo de configuraci&#243;n de majordomo est&#225; configurada con el valor $1, el cual no existe.
index_eprograms=El directorio de majordomo $1 no existe. Quiz&#225;s tu <a href='$2'>configuraci&#243;n del m&#243;dulo</a> sea incorrecta o majordomo no est&#225; instalado.
index_esendmail2=Sendmail o bien no est&#225; instalado o bien no est&#225; adecuadamente configurado en su sistema. Compruebe la configuraci&#243;n del <a href=$2>m&#243;dulo Sendmail</a>.
index_esendmailversion=Tu archivo de configuraci&#243;n de sendmail no parece ser el de la &#250;ltima versi&#243;n de sendmail. Webmin s&#243;lo soporta versiones 8.8 y superiores.

View File

@@ -2,8 +2,7 @@ index_title=Majordomo
index_econfig=Majordomo 設定ファイル $1 は存在しません。<a href='$2'>モジュール設定</a>が不正か、majordomo がインストールされていない可能性があります。
index_eprograms=Majordomo ディレクトリ $1 は存在しません。<a href='$2'>モジュール設定</a> が不正か、majordomo がインストールされていません。
index_eversion=Webmin は、ご使用の majordomo のバージョンをサポートしていません。バージョン 1.94 以降がサポートされています。
index_ehomedir=Majordomo 設定ファイル内の<tt>$homedir</tt> 変数が $1 に設定されていますが、それは存在しません。
index_elistdir=Majordomo 設定ファイル内の<tt>$listdir</tt> 変数が $1 に設定されていますが、それは存在しません。
index_emdomdir=Majordomo 設定ファイル内の<tt>$1</tt> 変数が $2 に設定されていますが、それは存在しません。
index_esendmail=sendmail 設定ファイル $1 は存在しません。<a href=/sendmail/>sendmail モジュール</a>設定を確認して下さい。
index_esendmailversion=このsendmail 設定ファイルは最新の sendmail バージョン用でないように思われます。Webmin はバージョン 8.8 以降のみサポートします。
index_setupdesc=Majordomo はシステムにインストールされていますが、sendmail エイリアス ファイルで正しく設定されていません。

View File

@@ -2,8 +2,7 @@ index_title=Majordomo
index_econfig=Majordomo 設定ファイル $1 は存在しません。<a href='$2'>モジュール設定</a>が不正か、majordomo がインストールされていない可能性があります。
index_eprograms=Majordomo ディレクトリ $1 は存在しません。<a href='$2'>モジュール設定</a> が不正か、majordomo がインストールされていません。
index_eversion=Webmin は、ご使用の majordomo のバージョンをサポートしていません。バージョン 1.94 以降がサポートされています。
index_ehomedir=Majordomo 設定ファイル内の<tt>$homedir</tt> 変数が $1 に設定されていますが、それは存在しません。
index_elistdir=Majordomo 設定ファイル内の<tt>$listdir</tt> 変数が $1 に設定されていますが、それは存在しません。
index_emdomdir=Majordomo 設定ファイル内の<tt>$1</tt> 変数が $2 に設定されていますが、それは存在しません。
index_esendmail=sendmail 設定ファイル $1 は存在しません。<a href=/sendmail/>sendmail モジュール</a>設定を確認して下さい。
index_esendmailversion=このsendmail 設定ファイルは最新の sendmail バージョン用でないように思われます。Webmin はバージョン 8.8 以降のみサポートします。
index_setupdesc=Majordomo はシステムにインストールされていますが、sendmail エイリアス ファイルで正しく設定されていません。

View File

@@ -2,8 +2,7 @@ index_title=majordomo
index_econfig=majordomo 구성 파일 $1이(가) 존재하지 않습니다. <a href='$2'>모듈 구성</a>이 정확하지 않거나 majordomo가 설치되지 않았을 수 있습니다.
index_eprograms=majordomo 디렉토리 $1이(가) 존재하지 않습니다. <a href='$2'>모듈 구성</a>이 정확하지 않거나 majordomo가 설치되지 않았을 수 있습니다.
index_eversion=Webmin에서 지원하지 않는 majordomo 버전입니다. Webmin에서는 1.94 이상 버전만 지원합니다.
index_ehomedir=majordomo 구성 파일의<tt>$homedir</tt> 변수가 존재하지 않는 $1(으)로 설정되어 있습니다.
index_elistdir=majordomo 구성 파일의<tt>$listdir</tt> 변수가 존재하지 않는 $1(으)로 설정되어 있습니다.
index_emdomdir=majordomo 구성 파일의<tt>$1</tt> 변수가 존재하지 않는 $1(으)로 설정되어 있습니다.
index_esendmail=sendmail 구성 파일 $1이(가) 존재하지 않습니다. <a href=/sendmail/>sendmail 모듈</a> 구성을 검사하십시오.
index_esendmailversion=sendmail 구성 파일이 최신 sendmail 버전용이 아닙니다. Webmin에서는 8.8 이상 버전만 지원합니다.
index_setupdesc=majordomo가 시스템에 설치되어 있지만 sendmail 별칭 파일에서 올바르게 설정되지 않았습니다.

View File

@@ -113,8 +113,7 @@ head_title=Headers en Footers
index_add=Toevoegen nieuwe email lijst
index_digest=Toevoegen nieuwe samenvatting lijst.
index_econfig=De Majordomo config file $1 bestaat niet. Misschien is uw <a href='$2'>module configuratie</a> niet correct, of Majordomo is niet geinstalleerd.
index_ehomedir=De <tt>$homedir</tt> variabel in uw Majordomo config file is ingesteld naar $1, en die bestaat niet.
index_elistdir=De <tt>$listdir</tt> variabel in uw Majordomo config file is ingesteld naar $1, en die bestaat niet.
index_emdomdir=De <tt>$1</tt> variabel in uw Majordomo config file is ingesteld naar $1, en die bestaat niet.
index_epostfix=Postfix is of niet geinstalleerd of niet goed geconfigureerd op uw systeem. Controleer de <a href='$1'>Postfix module</a> configuratie.
index_eprograms=De Majordomo directory $1 bestaat niet. Misschien is uw <a href='$2'>module configuratie</a> niet correct, of Majordomo is niet geinstalleerd.
index_esendmail2=Sendmail is of niet geinstalleerd of niet goed geconfigureerd op uw systeem. Controleer de <a href='$2'>Sendmail module</a> configuratie.

View File

@@ -113,8 +113,7 @@ head_title=Topp- og bunntekster
index_add=Legg til en ny e-post liste.
index_digest=Legg til en ny sammendrag liste.
index_econfig=Majordomo konfig.filen $1 finnes ikke. Kanskje <a href='$2'>modulkonfigurasjonen</a> er feil, eller s&#229; er majordomo ikke installert.
index_ehomedir=<tt>$homedir</tt> variablene i fin majordomo konfig.fil er satt til $1. Denne katalogen finnes ikke.
index_elistdir=<tt>$listdir</tt> variablene i fin majordomo konfig.fil er satt til $1. Denne katalogen finnes ikke.
index_emdomdir=<tt>$1</tt> variablene i fin majordomo konfig.fil er satt til $1. Denne katalogen finnes ikke.
index_epostfix=Postfix er enten ikke installert eller ikke riktig satt opp p&#229; systemet ditt. Sjekk <a href='$1'>Postfix modulens</a> konfigurasjon.
index_eprograms=Majordomo katalogen $1 finnes ikke. Kanskje <a href='$2'>modulkonfigurasjonen</a> er feil, eller s&#229; er majordomo ikke installert.
index_esendmail2=Sendmail er enten ikke installert eller satt opp riktig p&#229; systemet ditt. Sjekk <a href=$2>Sendmail modul</a> konfigurasjonen.

View File

@@ -63,7 +63,6 @@ access_res1=
access_adv=Включить этот список в ответ на команду <tt>lists</tt> для..
mesg_bulk=Нужное
access_res2=Адреса в файле
index_ehomedir=Переменная <tt>$homedir</tt> в вашем файле настроек majordomo установлена в $1, чего не существует.
access_who=Доступ к команде <tt>who</tt>
index_global=Редактирование настроек Majordomo
edit_return=список рассылки
@@ -125,7 +124,7 @@ create_emoderator=
global_title=Общие параметры
info_intro=Вводное сообщение, отправляемое вновь подписанным на список
digest_maxdays=Возраст самого старого сообщения перед отправкой
index_elistdir=Переменная <tt>$listdir</tt> в вашем файле настроек majordomo установлена в $1, чего не существует.
index_emdomdir=Переменная <tt>$1</tt> в вашем файле настроек majordomo установлена в $1, чего не существует.
create_err=ошибка при создании списка рассылки
members_rem=Удалить
digest_header=Параметры создания дайджеста

View File

@@ -2,8 +2,7 @@ index_title=
index_econfig=Файл настроек majordomo $1 не существует. Возможно некорректны <a href='$2'>настройки модуля</a>, либо majordomo не установлен.
index_eprograms=Каталог majordomo $1 не существует. Возможно некорректны <a href='$2'>настройки модуля</a>, либо majordomo не установлен.
index_eversion=Ваша версия majordomo не поддерживается Webmin. Поддерживаются только версии 1.94 и выше.
index_ehomedir=Переменная <tt>$homedir</tt> в вашем файле настроек majordomo установлена в $1, чего не существует.
index_elistdir=Переменная <tt>$listdir</tt> в вашем файле настроек majordomo установлена в $1, чего не существует.
index_emdomdir=Переменная <tt>$1</tt> в вашем файле настроек majordomo установлена в $1, чего не существует.
index_esendmail=Файл настроек sendmail $1 не существует. Проверьте настройки <a href=/sendmail/>модуля Sendmail</a>.
index_esendmailversion=Ваш файл настроек sendmail предназначен для старых версий sendmail. Webmin поддерживает только версии 8.8 и выше.
index_setupdesc=Majordomo установлен на вашей системе, но не настроен в файле псевдонимов sendmail (aliases).

View File

@@ -2,8 +2,7 @@ index_title=Majordomos listhanterare
index_econfig=Konfigurationsfilen $1 för majordomo finns inte. Dina <a href='$2'>modulinställningar</a> kanske är felaktiga, eller också har majordomo inte installerats.
index_eprograms=Majordomo-katalogen $1 finns inte. Dina <a href='$2'>modulinställningar</a> kanske är felaktiga, eller också har majordomo inte installerats.
index_eversion=Din version av majordomo stöds inte av Webmin. Endast versionerna 1.94 och högre stöds.
index_ehomedir=Variabeln <tt>$homedir</tt> i din konfigurationsfil för majordomo är satt till $1, som inte finns.
index_elistdir=Variabeln <tt>$listdir</tt> i din konfigurationsfil för majordomo är satt till $1, som inte finns.
index_emdomdir=Variabeln <tt>$1</tt> i din konfigurationsfil för majordomo är satt till $1, som inte finns.
index_esendmail=Konfigurationsfilen $1 för sendmail finns inte. Kontrollera inställningarna för din <a href=/sendmail/>Sendmail-modul</a>.
index_esendmailversion=Din konfigurationsfil för sendmail verkar inte höra till den senaste sendmail-versionen. Webmin stödjer endast version 8.8 och uppåt.
index_setupdesc=Majordomo är installerat på systemet, men har inte satts upp ordentligt i sendmails aliasfil.

View File

@@ -2,8 +2,7 @@ index_title=Majordomo Liste Y
index_econfig=Majordomo yapılandırma dosyası $1 mevcut değil. <a href='$2'>Modül yapılandırması</a> yanlış ya da, majordomo kurulmamış olabilir.
index_eprograms=Majordomo dizini $1 mevcut değil. <a href='$2'>Modül yapılandırması</a> yanlış ya da, majordomo kurulmamış olabilir.
index_eversion=Majordomo sürümünüz Webmin tarafından desteklenmemektedir. Sadece 1.94 ve üzeri sürümler desteklenmektedir
index_ehomedir=Majordomo yapılandırma dosyasındaki <tt>$homedir</tt> değişkeni olan $1 mevcut değildir.
index_elistdir=Majordomo yapılandırma dosyasındaki <tt>$listdir</tt> değişkeni olan $1 mevcut değildir.
index_emdomdir=Majordomo yapılandırma dosyasındaki <tt>$1</tt> değişkeni olan $2 mevcut değildir.
index_esendmail=Sendmail yapılandırma dosyası $1 mevcut değildir. <a href=/sendmail/>Sendmail modül</a> yapılandırmanızı kontrol ediniz.
index_esendmailversion=Sendmail yapılandırma dosyanız en son sürüm sendmail'e sahip değilsiniz gibi görünüyor. Webmin sadece 8.8 ve daha üstü sürümleri desteklemektedir.
index_setupdesc=Majordomo sisteminizde kurulu fakat sendmail takma isimler dosyanız değiştirilmemiş.

View File

@@ -63,7 +63,6 @@ access_res1=
access_adv=Уключити цей список у відповідь на команду <tt>lists</tt> для..
mesg_bulk=Потрібне
access_res2=Адреси у файлі
index_ehomedir=Перемінна <tt>$homedir</tt> у вашому файлі настроювань majordomo встановлена в $1, чого не існує.
access_who=Доступ до команди <tt>who</tt>
index_global=Редагування настроювань Majordomo
edit_return=список розсилання
@@ -125,7 +124,7 @@ create_emoderator=
global_title=Загальні параметри
info_intro=Вступне повідомлення, що відправляється знову підписаним на список
digest_maxdays=Вік самого старого повідомлення перед відправленням
index_elistdir=Перемінна <tt>$listdir</tt> у вашому файлі настроювань majordomo встановлена в $1, чого не існує.
index_emdomdir=Перемінна <tt>$1</tt> у вашому файлі настроювань majordomo встановлена в $1, чого не існує.
create_err=помилка при створенні списку розсилання
members_rem=Видалити
digest_header=Параметри створення дайджесту

View File

@@ -2,8 +2,7 @@ index_title=Majordomo
index_econfig=Majordomo 配置文件 $1 不存在.可能您的<a href='$2'>模块配置</a>不正确,或者 Majordomo 没有安装。
index_eprograms=Majordomo 目录 $1 不存在.可能您的<a href='$2'>模块配置</a>不正确,或者 Majordomo 没有安装。
index_eversion=Webmin 不支持您的 Majordomo 版本,它仅支持1.94或更高版本的Majordomo。
index_ehomedir=您的 Majordomo 配置文件中的<tt>$homedir</tt>变量设置为 $1但它不存在。
index_elistdir=您的 Majordomo 配置文件中的<tt>$listdir</tt>变量设置为 $1,但它不存>在。
index_emdomdir=您的 Majordomo 配置文件中的<tt>$1</tt>变量设置为 $1,但它不存>在。
index_esendmail=Sendmail 配置文件 $1不存在,请检查您的<a href=/sendmail/>Sendmail 模块</a> 配置。
index_esendmailversion=您的 sendmail 配置文件可能不是最新的版本, Webmin只能支持8.8或更高版本。
index_setupdesc=Majordomo 已经安装在您的系统上,但未在 sendmail aliase 文件中正确设置。

View File

@@ -480,14 +480,14 @@ if ($majordomo_version < 1.94 || $majordomo_version >= 2) {
}
# Check $homedir in majordomo.cf
if (!&homedir_valid($conf)) {
print &text('index_ehomedir', "<tt>$homedir</tt>"),"<p>\n";
print &text('index_emdomdir', '$homedir', $homedir),"<p>\n";
&ui_print_footer("/", $text{'index'});
exit;
}
# Check $listdir in majordomo.cf
local $listdir = &perl_var_replace(&find_value("listdir", $conf), $conf);
if (!-d $listdir) {
print &text('index_elistdir', "<tt>$listdir</tt>"),"<p>\n";
print &text('index_emdomdir', '$listdir', $listdir),"<p>\n";
&ui_print_footer("/", $text{'index'});
exit 1;
}