deeveedee
Forum Replies Created
-
Thanks for the quick reply! No apology necessary – it happens. I appreciate your work and your plugin. I was only proposing a naming convention similar to that used by other plugins and WordPress (e.g. wordpress-4.8.zip). We’re paranoid about security, so we don’t allow updates (auto or manual) through the Dashboard, requiring all updates to be applied manually after downloading the associated zip file.
Thanks for the tip about retrieving old update packages and thanks again for a great plugin.
Forum: Plugins
In reply to: [Download Manager] How to fix file size 0.00 KBI manually edited each download item to change its displayed file size from 0.00 KB to the correct file size. This has “fixed” the problem until it happens again. If you have any suggestions for what I might have done to cause this so I can avoid it in the future, please let me know. Thank you.
We’re still optimistic about this plugin. 1.8.3 worked perfectly for us and there have been a lot of changes since then. The new version should probably have been numbered version 1.9 to reflect the changes (maybe even 2.0).
Regardless, 1.8.7 is working well for us with the exception of including the password in the failed login notification e-mails. We configured the Sucuri 1.8.7 alerts to ignore “Postman Sent Mail” (Postman SMTP plugin) and “Shop Order” (WooCommerce plugin) posts (not sure why these posts are monitored by Sucuri). As soon as the failed login notification is fixed, we’ll be happy again with Sucuri.
@yorman – thanks again for your quick reply and great support. And thank you for this outstanding plugin!
@yorman – thank you for your quick response. The solution that I proposed (above) is working well for me and addresses the issue without affecting delivery of the other important e-mail alerts.
Until you come up with your “better solution,” is there a reason that we should install your alpha version instead of installing 1.8.7 and disabling alerts on Postman_sent_mail post?
In your next version, would it be possible for you to simply disable postman_sent_mail alerts by default?
Forum: Plugins
In reply to: [Postman SMTP Mailer/Email Log] Using Postman SMTP with Sucuri Security 1.8.7@jasonhendriks – I don’t believe it’s intentional. This started happening after I upgraded Sucuri Security from 1.8.3 to 1.8.7. Version 1.8.3 did not do this. I have posted in the Sucuri support forum. Until it’s fixed, disabling Sucuri monitoring of the Postman_sent_mail post works.
- This reply was modified 8 years, 10 months ago by deeveedee.
I have confirmed that the Postman_sent_mail status change alerts were the problem. To resolve the problem, you must disable the Postman_sent_mail post alerts (in Sucuri Alert Settings) after updating to Sucuri 1.8.7 and BEFORE exiting the WordPress Dashboard.
Sucuri authors – I do not believe that this should be the default behavior of Sucuri Security. In my opinion, the default setting of Sucuri Security should disable monitoring of the Postman_sent_mail post.
- This reply was modified 8 years, 10 months ago by deeveedee.
I believe I know why I was unable to login to my Dashboard. I have the Postman SMTP Version 1.7.2 plugin installed on my website. When Sucuri detects a Dashboard login, it generates an alert via e-mail. Postman SMTP sends the Sucuri alert and Sucuri 1.8.7 (different from 1.8.3) generates an alert on the detected Postman_sent_mail status change. Sucuri is stuck in a loop detecting Postman_sent_mail status changes that are caused by Sucuri’s own e-mail notifications.
I think that the default behavior of Sucuri 1.8.7 needs to be changed so that it is not detecting and generating e-mail alerts on Postman_sent_mail status change.
Forum: Plugins
In reply to: [The Events Calendar] Excessive plugin update frequencyThanks for the quick reply. This is good to know. Thank you for the great plugin and great support!
Forum: Plugins
In reply to: [Postman SMTP Mailer/Email Log] Encoded e-mail has duplicate periods (‘.’)After observing this again, I have determined that this is a repeatable behavior that occurs whenever the encoded e-mail wraps to a new line. Is this a bug in Postman SMTP? Is it normal to expect a ‘.’ to be encoded as ‘..’ when the line is wrapped (as in the example below)? Any help would be appreciated. Thank you.
Sent e-mail viewer:
@hotmail.comSession Transcript:
@hotmail= ..com=0A=0AForum: Plugins
In reply to: [WooCommerce] How to remove the Reply-to in new order email?Not sure this is what you’re looking for, but as of WooCommerce 3.0.6, if the
billing_emailis empty -OR-billing_first_nameis empty -OR-billing_last_nameis empty , WooCommerce will not add “Reply-to” to the admin e-mail headers.To simplify checkout, I don’t require the shopper to enter their billing_first_name, billing_last name or billing_email, so I have something similar to the following in my functions.php:
function override_checkout_fields( $fields ) { unset($fields['billing']['billing_first_name']); unset($fields['billing']['billing_last_name']); unset($fields['billing']['billing_email']); return $fields; } add_filter( 'woocommerce_checkout_fields' , 'override_checkout_fields' );There are multiple billing fields that I “unset” to simplify checkout, but I’m only providing the three above for this example.
The shopper will not be asked to enter these fields at checkout and with the empty fields, WooCommerce will not insert Reply-to in the header.
Forum: Plugins
In reply to: [Postman SMTP Mailer/Email Log] Encoded e-mail has duplicate periods (‘.’)Just saw this same error again during testing after updating to WordPress 4.8. The problem occurs much more frequently after updating from WooCommerce 2.6.14 to 3.0.8.
Forum: Plugins
In reply to: [Postman SMTP Mailer/Email Log] Encoded e-mail has duplicate periods (‘.’)Just encounted the same error with a different string.
In the sent e-mail viewer:
$1.00In the session transcript:
$1= ..00Again, the duplicate periods occur when the period/decimal (‘.’) is wrapped to the next line in the encoded e-mail message.
- This reply was modified 8 years, 11 months ago by deeveedee.
@cryogene – when you revert to a fully-working version of your website (where the orders auto-complete), what version of WooCommerce is in your working site? Are you using any plugins or custom code to auto-complete orders?
Forum: Plugins
In reply to: [WooCommerce Autocomplete Orders] Deprecated CallsEarlier in this thread, I introduced what I thought might be a topic related to the deprecated calls, but turned out to be an issue with the new Reply-to field introduced by WooCommerce 3.0.0. The Reply-to issue does not appear to be related to the deprecated calls and is documented in the link below. Sorry for the confusion.