mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2025-12-24 07:11:32 +00:00
Merge branch 'nightly' into feat/nightly-separated-login
This commit is contained in:
@@ -179,9 +179,8 @@ $(document).ready(function() {
|
||||
// Get script_data textarea content from form the button was clicked in
|
||||
var script = $('textarea[name="script_data"]', $(this).parents('form:first')).val();
|
||||
$.ajax({
|
||||
dataType: 'json',
|
||||
url: "/inc/ajax/sieve_validation.php",
|
||||
type: "get",
|
||||
type: "post",
|
||||
data: { script: script },
|
||||
complete: function(data) {
|
||||
var response = (data.responseText);
|
||||
|
||||
@@ -214,6 +214,14 @@ jQuery(function($){
|
||||
data: 'address',
|
||||
defaultContent: ''
|
||||
},
|
||||
{
|
||||
title: lang.description,
|
||||
data: 'description',
|
||||
defaultContent: '',
|
||||
render: function (data, type) {
|
||||
return escapeHtml(data);
|
||||
}
|
||||
},
|
||||
{
|
||||
title: lang.alias_valid_until,
|
||||
data: 'validity',
|
||||
|
||||
Reference in New Issue
Block a user