Skip to content

Commit e146fe8

Browse files
author
Marius Cramer
committed
Merge branch 'master' into 'master'
Master See merge request !173
2 parents cab4ba3 + d9bc892 commit e146fe8

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

interface/web/dns/form/dns_cname.tform.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
'type' => 'TOLOWER')
8787
),
8888
'validators' => array ( 0 => array ( 'type' => 'REGEX',
89-
'regex' => '/^[a-zA-Z0-9\.\-\*]{0,255}$/',
89+
'regex' => '/^[a-zA-Z0-9\.\-\*\_]{0,255}$/',
9090
'errmsg'=> 'name_error_regex'),
9191
),
9292
'default' => '',

server/plugins-available/backup_plugin.inc.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,7 @@ public function backup_action($action_name, $data) {
156156
}
157157
}
158158
}
159+
if( $server_config['backup_dir_is_mount'] == 'y' ) $app->system->umount_backup_dir($backup_dir);
159160
} else {
160161
$app->log('Backup directory not ready.', LOGLEVEL_DEBUG);
161162
}
@@ -227,6 +228,7 @@ public function backup_action_mail($action_name, $data) {
227228
}
228229
}
229230
}
231+
if( $server_config['backup_dir_is_mount'] == 'y' ) $app->system->umount_backup_dir($backup_dir);
230232
} else {
231233
$app->log('Backup directory not ready.', LOGLEVEL_DEBUG);
232234
}

server/plugins-available/mail_plugin_dkim.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@ function onLoad() {
7575
*/
7676
function get_amavis_config() {
7777
$pos_config=array(
78-
'/etc/amavisd.conf',
7978
'/etc/amavisd.conf/50-user',
8079
'/etc/amavis/conf.d/50-user',
80+
'/etc/amavisd.conf',
8181
'/etc/amavisd/amavisd.conf'
8282
);
8383
$amavis_configfile='';

0 commit comments

Comments
 (0)