Versions:
WordPress: 6.6.1
WordPress MS: No
PHP: 8.3.6
WP Mail SMTP: 4.1.1
Params:
Mailer: smtp
Constants: No
ErrorInfo: SMTP Error: Could not authenticate.
Host: smtp.mail.me.com
Port: 587
SMTPSecure:tls
SMTPAutoTLS:bool(true)
SMTPAuth:bool(true)
Server:
OpenSSL: OpenSSL 1.1.1w 11 Sep 2023
Apache.mod_security: No
Debug:
Email Source: WP Mail SMTP Mailer: Other SMTP SMTP Error: Could not authenticate.
SMTP Debug:
2024-08-21 17:28:38 Connection: opening to smtp.mail.me.com:587, timeout=30, options=array()
2024-08-21 17:28:38 Connection: opened
2024-08-21 17:28:39 SERVER -> CLIENT: 220 iCloud SMTP - st43p00im-zteg10063401.me.com 3.8.5 (2423BSE4-266592301aa0)
2024-08-21 17:28:39 CLIENT -> SERVER: EHLO rotanya.com
2024-08-21 17:28:39 SERVER -> CLIENT: 250-st43p00im-zteg10063401.me.com250-PIPELINING250-SIZE 28319744250-ETRN250-STARTTLS250-ENHANCEDSTATUSCODES250-8BITMIME250-DSN250-SMTPUTF8250 CHUNKING
2024-08-21 17:28:39 CLIENT -> SERVER: STARTTLS
2024-08-21 17:28:39 SERVER -> CLIENT: 220 2.0.0 Ready to start TLS
2024-08-21 17:28:39 CLIENT -> SERVER: EHLO rotanya.com
2024-08-21 17:28:39 SERVER -> CLIENT: 250-st43p00im-zteg10063401.me.com250-PIPELINING250-SIZE 28319744250-ETRN250-AUTH LOGIN PLAIN ATOKEN ATOKEN2 WSTOKEN WETOKEN250-ENHANCEDSTATUSCODES250-8BITMIME250-DSN250-SMTPUTF8250 CHUNKING
2024-08-21 17:28:39 CLIENT -> SERVER: AUTH LOGIN
2024-08-21 17:28:39 SERVER -> CLIENT: 334 VXNlcm5hbWU6
2024-08-21 17:28:39 CLIENT -> SERVER: [credentials hidden]
2024-08-21 17:28:39 SERVER -> CLIENT: 334 UGFzc3dvcmQ6
2024-08-21 17:28:39 CLIENT -> SERVER: [credentials hidden]
2024-08-21 17:28:39 SERVER -> CLIENT: 535 5.7.8 Error: authentication failed
2024-08-21 17:28:39 SMTP ERROR: Password command failed: 535 5.7.8 Error: authentication failed
SMTP Error: Could not authenticate.
2024-08-21 17:28:39 CLIENT -> SERVER: QUIT
2024-08-21 17:28:39 SERVER -> CLIENT: 221 2.0.0 Bye
2024-08-21 17:28:39 Connection: closed
SMTP Error: Could not authenticate.
]]>SMTP error from remote mail server after end of data: 554 5.7.1 [CS01] Message rejected due to local policy. Please visit https://support.apple.com/en-us/HT204137
This is seen as bulk mail.
Should I report this as bug or is there a workaround for this?
]]>My active Wordfence plugin seems to block all users with an activated iCloud Private Relay setting. I am looking for a solution to that problem. Is there any possibility for those users to still be able to use my site and not be automatically blocked?
Thank you.
]]>I wrote a simple proof-of-concept by adding a method called get_totp_link_ref to the WizardSteps class.
**
* Get TOTP link reference (preview)
*
* Returns a TOTP link reference. For use with the iCloud Keychain and
* other compatible password managers.
*
*
* @return String
*/
public static function get_totp_link_ref() {
// Get URL encoded site name and domain
$site_name = urlencode( get_bloginfo( 'name', 'display' ) );
$site_url = get_site_url();
$site_domain = parse_url( $site_url )['host'];
// Get user's username and secrect
$user_username = wp_get_current_user()->user_login;
$user_secret = self::getUser()->get_totp_decrypted();
// Create TOTP link target
$totp_link = 'otpauth://totp/' . '$site_name' . ':' . $user_username . '?secret=' . $user_secret . '&digits=6&time=30&issuer=' . $site_domain;
// Return escaped URL
return esc_url( $totp_link, array( 'otpauth' ) );
}
The method returns a string that can be as a reference for a dedicated link or a clickable version of the QR code.
<div class="qr-code-wrapper">
<a href="<?php echo esc_html( self::get_totp_link_ref() ); ?>">
<?php echo $qrCode; ?>
</a>
<div>
]]>Since switching iCloud News Publisher from ‘RSS feed’ to ‘Connect CMS’ (not realising this was irreversible or would cause issues), articles have refused to populate from our WordPress/Publish to Apple News set-up across to our iCloud News Publisher, which previously was working with the RSS feed.
The channel name, ID, api and secret are all in the plugin .papi. The settings are all set as they should be in Publish to Apple News and in iCloud News Publisher. But the list of articles in the plugin, which updates when new ones appear, does not send article statuses beyond Pending, mostly staying at Not Published. AS they don’t publish, in News Publisher’s drafts window there are no articles to select.
Alternate errors connected to this appear in WordPress; one says ‘unable to find list of sections’, and alternates with ‘There has been an error with the Apple News API: API_KEY_NOT_FOUND’. And yet it is there in the .papi.
Both suggest reaching out for support here, so here I am. Might anyone be able to help? Wits’ end reached.
Michael
]]>Anyone has the same issue and is there a way to solve this?
]]>Thanks for any info.
Tod
]]>