Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
feature: Separate SMTP Credentials
This feature adds the ability to separate the IMAP/POP and SMTP credentials for a System Email. This adds a checkbox next to the Authentication Required setting where, if Enabled, will show two additional inputs for the SMTP Username and Password. If Authentication Required is set to No the SMTP Username and Password inputs will disappear as they are not needed. If the checkbox is Disabled the system will use the IMAP/POP credentials for SMTP.
- Loading branch information
Showing
with
100 additions
and 6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -1 +1 @@ | ||
87d4a3233469728d83b86d3ee2f066e1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,15 @@ | ||
/** | ||
* @signature 87d4a3233469728d83b86d3ee2f066e1 | ||
* @version v1.14-rc3 | ||
* @title Add new SMTP Settings to emails | ||
* | ||
*/ | ||
ALTER TABLE `%TABLE_PREFIX%email` | ||
ADD `smtp_auth_creds` int(11) DEFAULT '0' AFTER `smtp_auth`, | ||
ADD `smtp_userid` varchar(255) NOT NULL AFTER `smtp_auth_creds`, | ||
ADD `smtp_userpass` varchar(255) CHARACTER SET ascii NOT NULL AFTER `smtp_userid`; | ||
|
||
-- Finished with patch | ||
UPDATE `%TABLE_PREFIX%config` | ||
SET `value` = '87d4a3233469728d83b86d3ee2f066e1' | ||
WHERE `key` = 'schema_signature' AND `namespace` = 'core'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters