[Web] Allow actions in quarantine modal, fixes #1991

[Web] Fixes for Source Sans Pro font
[Rspamd] Add global rcpt blacklist and whitelist
[Compose] New Rspamd image
This commit is contained in:
root
2018-11-27 10:20:42 +01:00
parent 6620ee2fff
commit d445d7d2e7
13 changed files with 38 additions and 7 deletions

View File

@@ -60,6 +60,12 @@ jQuery(function($){
$( "#qid_error" ).text(data.error);
$( "#qid_error" ).show();
}
$( "li" ).each(function( index ) {
console.log( index + ": " + $( this ).text() );
});
$('[data-id="qitems_single"]').each(function( index ) {
$(this).attr("data-item", qitem);
});
$('#qid_detail_subj').text(data.subject);
$('#qid_detail_text').text(data.text_plain);
$('#qid_detail_text_from_html').text(data.text_html);