mirror of
https://github.com/tobychui/zoraxy.git
synced 2025-06-06 23:57:21 +02:00
Fixed #497
- Removed SMTP input validations - Updated version no. - Added todo for removing SMTP all together in future revisions
This commit is contained in:
parent
5d8bec7f24
commit
36c1f149e6
@ -42,7 +42,7 @@ import (
|
|||||||
const (
|
const (
|
||||||
/* Build Constants */
|
/* Build Constants */
|
||||||
SYSTEM_NAME = "Zoraxy"
|
SYSTEM_NAME = "Zoraxy"
|
||||||
SYSTEM_VERSION = "3.1.7"
|
SYSTEM_VERSION = "3.1.8"
|
||||||
DEVELOPMENT_BUILD = false /* Development: Set to false to use embedded web fs */
|
DEVELOPMENT_BUILD = false /* Development: Set to false to use embedded web fs */
|
||||||
|
|
||||||
/* System Constants */
|
/* System Constants */
|
||||||
|
@ -259,6 +259,8 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
SMTP Settings
|
SMTP Settings
|
||||||
|
|
||||||
|
TODO: Remove SMTP support in future versions
|
||||||
*/
|
*/
|
||||||
|
|
||||||
//Bind events to the form
|
//Bind events to the form
|
||||||
@ -273,11 +275,13 @@
|
|||||||
adminAddr: $('input[name=recvAddr]').val()
|
adminAddr: $('input[name=recvAddr]').val()
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
var inputValid = validateSMTPInputs();
|
var inputValid = validateSMTPInputs();
|
||||||
if (!inputValid){
|
if (!inputValid){
|
||||||
msgbox("SMTP input not valid", false, 5000);
|
msgbox("SMTP input not valid", false, 5000);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
$.cjax({
|
$.cjax({
|
||||||
type: "POST",
|
type: "POST",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user