public
nobgit
read
NobMail
Based on mailcow: dockerized
Languages
Repository composition by tracked source files.
PHP
49%
JavaScript
35%
HTML
9%
CSS
4%
Shell
2%
Python
1%
Lua
0%
Perl
0%
Ruby
0%
SCSS
0%
Create file
Wiki Documentation
Clone
https://nobgit.com/orgs/nobgit/nobmail.git
ssh://[email protected]:2222/orgs/nobgit/nobmail.git
<?php
function presets($_action, $_kind) {
switch ($_action) {
case 'get':
if ($_SESSION['mailcow_cc_role'] != "admin" && $_SESSION['mailcow_cc_role'] != "domainadmin") {
return false;
}
$presets = array();
$kind = strtolower(trim($_kind));
$lang_base = 'admin';
$presets_path = __DIR__ . '/presets/' . $kind;
if (!in_array($kind, ['rspamd', 'sieve'], true)) {
return array();
}
if ($kind === 'sieve') {
$lang_base = 'mailbox';
}
foreach (glob($presets_path . '/*.yml') as $filename) {
$presets[] = getPresetFromFilePath($filename, $lang_base);
}
return $presets;
break;
}
return array();
}
function getPresetFromFilePath($filePath, $lang_base) {
global $lang;
$preset = Spyc::YAMLLoad($filePath);
$preset = ['name' => basename($filePath, '.yml')] + $preset;
/* get translated headlines */
if (isset($preset['headline']) && strpos($preset['headline'], 'lang.') === 0) {
$langTextName = trim(substr($preset['headline'], 5));
if (isset($lang[$lang_base][$langTextName])) {
$preset['headline'] = $lang[$lang_base][$langTextName];
}
}
return $preset;
}