- Removed SMTP input validations
- Updated version no.
- Added todo for removing SMTP all together in future revisions
This commit is contained in:
Toby Chui 2025-02-16 09:08:08 +08:00
parent 5d8bec7f24
commit 36c1f149e6
2 changed files with 5 additions and 1 deletions

View File

@ -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 */

View File

@ -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",