Version Description
- SMTP Password Saving Bug Fixed
Download this release
Release Info
Developer | contact-banker |
Plugin | WP Mail Bank: WordPress SMTP Plugin & Email Logs |
Version | 1.1 |
Comparing to | |
See all releases |
Code changes from version 1.0 to 1.1
- lib/add_mail_class_file.php +1 -1
- readme.txt +6 -2
- views/mail_settings.php +3 -2
- wp-mail-bank.php +1 -1
lib/add_mail_class_file.php
CHANGED
@@ -52,7 +52,7 @@ else
|
|
52 |
$email_setup["smtp_keep_alive"] = intval($_REQUEST["ux_rdl_smtp_alive"]);
|
53 |
$email_setup["authentication"] = intval($_REQUEST["ux_rdl_authentication_bank"]);
|
54 |
$email_setup["smtp_username"] = esc_attr($_REQUEST["ux_txt_username"]);
|
55 |
-
$email_setup["smtp_password"] = esc_attr($_REQUEST["
|
56 |
|
57 |
$count_direction = $wpdb->get_var
|
58 |
(
|
52 |
$email_setup["smtp_keep_alive"] = intval($_REQUEST["ux_rdl_smtp_alive"]);
|
53 |
$email_setup["authentication"] = intval($_REQUEST["ux_rdl_authentication_bank"]);
|
54 |
$email_setup["smtp_username"] = esc_attr($_REQUEST["ux_txt_username"]);
|
55 |
+
$email_setup["smtp_password"] = htmlspecialchars_decode(esc_attr($_REQUEST["password"]));
|
56 |
|
57 |
$count_direction = $wpdb->get_var
|
58 |
(
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: contact-banker, Gallery-Bank
|
|
3 |
Tags: admin, ajax, email, gmail, mail, mail smtp, mailer, outgoing mail, phpmailer, plugin, Post, posts, privacy, security, sendmail, smtp, ssl, tls, wordpress smtp, wp smtp, wp-phpmailer, wp_mail, wp mail
|
4 |
Requires at least: 2.7
|
5 |
Tested up to: 3.9.2
|
6 |
-
Stable tag: 1.
|
7 |
|
8 |
WP Mail Bank reconfigures the PHPMailer and make it more enhanced with advanced smtp settings options.
|
9 |
|
@@ -17,7 +17,7 @@ The Plugin has options to choose between your custom smtp server or the inbuilt
|
|
17 |
|
18 |
###IMPORTANT: If you think you found a bug in WP Mail Bank or have any problem or question concerning WP Mail Bank, do not hesitate to contact us at [support@tech-banker.com](mailto:support@tech-banker.com).
|
19 |
|
20 |
-
***August
|
21 |
|
22 |
###Key Features :
|
23 |
|
@@ -223,6 +223,10 @@ If any problem occurs, please contact us at [support@tech-banker.com](mailto:sup
|
|
223 |
4. Debugging Output Console Log
|
224 |
== Changelog ==
|
225 |
|
|
|
|
|
|
|
|
|
226 |
= 1.0 =
|
227 |
|
228 |
* Initial Release
|
3 |
Tags: admin, ajax, email, gmail, mail, mail smtp, mailer, outgoing mail, phpmailer, plugin, Post, posts, privacy, security, sendmail, smtp, ssl, tls, wordpress smtp, wp smtp, wp-phpmailer, wp_mail, wp mail
|
4 |
Requires at least: 2.7
|
5 |
Tested up to: 3.9.2
|
6 |
+
Stable tag: 1.1
|
7 |
|
8 |
WP Mail Bank reconfigures the PHPMailer and make it more enhanced with advanced smtp settings options.
|
9 |
|
17 |
|
18 |
###IMPORTANT: If you think you found a bug in WP Mail Bank or have any problem or question concerning WP Mail Bank, do not hesitate to contact us at [support@tech-banker.com](mailto:support@tech-banker.com).
|
19 |
|
20 |
+
***August 23, 2014: We're happy to announce that WP Mail Bank reached 2400+ plugin downloads in only 3 weeks. We frequently receive positive feedback from people using our WP Mail Bank Plugin for WordPress. Thanks so much for your support!***
|
21 |
|
22 |
###Key Features :
|
23 |
|
223 |
4. Debugging Output Console Log
|
224 |
== Changelog ==
|
225 |
|
226 |
+
= 1.1 =
|
227 |
+
|
228 |
+
* SMTP Password Saving Bug Fixed
|
229 |
+
|
230 |
= 1.0 =
|
231 |
|
232 |
* Initial Release
|
views/mail_settings.php
CHANGED
@@ -196,7 +196,7 @@ else
|
|
196 |
<div class="layout-control-group">
|
197 |
<label class="layout-control-label"><?php _e("SMTP Password", mail_bank); ?> : <span class="error">*</span></label>
|
198 |
<div class="layout-controls">
|
199 |
-
<input type="password" id="ux_txt_password" placeholder="Please enter Password" name="ux_txt_password" style="margin-left: -26px;" class="layout-span12" value="<?php echo isset($email_data->smtp_password) ? $email_data->smtp_password : "" ;?>">
|
200 |
</div>
|
201 |
</div>
|
202 |
</div>
|
@@ -313,8 +313,9 @@ jQuery("#ux_frm_email").validate
|
|
313 |
},
|
314 |
submitHandler: function(form)
|
315 |
{
|
|
|
316 |
jQuery("#form_success_message").css("display","block");
|
317 |
-
jQuery.post(ajaxurl, jQuery(form).serialize() +"¶m=add_mail_detail&action=add_mail_library", function(data)
|
318 |
{
|
319 |
window.location.reload();
|
320 |
});
|
196 |
<div class="layout-control-group">
|
197 |
<label class="layout-control-label"><?php _e("SMTP Password", mail_bank); ?> : <span class="error">*</span></label>
|
198 |
<div class="layout-controls">
|
199 |
+
<input type="password" id="ux_txt_password" placeholder="Please enter Password" name="ux_txt_password" style="margin-left: -26px;" class="layout-span12" value="<?php echo isset($email_data->smtp_password) ? stripcslashes(htmlspecialchars_decode($email_data->smtp_password)) : "" ;?>">
|
200 |
</div>
|
201 |
</div>
|
202 |
</div>
|
313 |
},
|
314 |
submitHandler: function(form)
|
315 |
{
|
316 |
+
var password= encodeURIComponent(jQuery("#ux_txt_password").val());
|
317 |
jQuery("#form_success_message").css("display","block");
|
318 |
+
jQuery.post(ajaxurl, jQuery(form).serialize() +"&password="+password+"¶m=add_mail_detail&action=add_mail_library", function(data)
|
319 |
{
|
320 |
window.location.reload();
|
321 |
});
|
wp-mail-bank.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Wp Mail Bank
|
|
4 |
Plugin URI: http://tech-banker.com
|
5 |
Description: WP Mail Bank reconfigures the wp_mail() function and make it more enhanced.
|
6 |
Author: Tech Banker
|
7 |
-
Version: 1.
|
8 |
Author URI: http://tech-banker.com
|
9 |
*/
|
10 |
|
4 |
Plugin URI: http://tech-banker.com
|
5 |
Description: WP Mail Bank reconfigures the wp_mail() function and make it more enhanced.
|
6 |
Author: Tech Banker
|
7 |
+
Version: 1.1
|
8 |
Author URI: http://tech-banker.com
|
9 |
*/
|
10 |
|